
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f9f4ee;
  --bg2: #f2ebe0;
  --bg3: #ede3d4;
  --ink: #1c1410;
  --ink2: #5a4a38;
  --gold: #b8864e;
  --gold2: #d4a96a;
  --green: #2a3d30;
  --white: #fdfaf6;
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── SITE HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(184,134,78,0.18);
}

.header-logo-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:20px 0;
  border-bottom: 1px solid rgba(184,134,78,0.1);
}

.header-logo-top img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: brightness(0.12);
  transition: transform 0.5s ease;
}

.header-logo-top img:hover {
  transform: rotate(-6deg) scale(1.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 48px 6vw;
}

.header-about {
  /* left column */
}

.header-logo-center {
  display: none;
}

.header-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.founder-photo {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  filter: sepia(10%);
  transition: transform 0.4s, filter 0.4s;
  box-shadow: 0 12px 40px rgba(184,134,78,0.25);
}

.founder-photo:hover {
  transform: scale(1.04);
  filter: sepia(0%);
}

.founder-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.founder-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* ─── HERO (repurposed as header-about content) ─── */
.hero-left {
  /* kept for class reuse */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #c8d8c0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  width: fit-content;
  animation: fadeUp 0.8s 0.1s both;
}

.hero-badge::before {
  content: '✦';
  font-size: 9px;
  opacity: 0.7;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink2);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #d4e8cc;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(42,61,48,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(42,61,48,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: 1.5px solid var(--gold);
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

/* hero-right removed */

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--green);
  color: #d0e0c8;
  padding: 80px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: 'W';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 400px;
  right: -80px;
  top: -60px;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}

.about-tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold2);
  opacity: 0.6;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #e8f0e4;
}

.about-heading em {
  font-style: italic;
  color: var(--gold2);
}

.about-text {
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.stat-box {
  padding: 24px;
  border: 1px solid rgba(212,169,106,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, background 0.3s;
}

.stat-box:hover {
  border-color: rgba(212,169,106,0.6);
  background: rgba(255,255,255,0.07);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 300;
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: 90px 6vw;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold2);
  opacity: 0.5;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ─── VIDEO SECTION ─── */
.video-bg {
  background: var(--bg2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vid-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(28,20,16,0.1);
  transition: transform 0.4s cubic-bezier(.2,.8,.4,1), box-shadow 0.4s;
  opacity: 0;
  transform: translateY(40px);
}

.vid-card.in {
  animation: cardUp 0.6s ease forwards;
}

@keyframes cardUp {
  to { opacity:1; transform: translateY(0); }
}

.vid-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(28,20,16,0.2);
}

.vid-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vid-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.65) 0%, transparent 55%);
  transition: opacity 0.4s;
  pointer-events: none;
}

.vid-card.playing .vid-shade,
.vid-card:hover .vid-shade {
  opacity: 0;
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(253,250,246,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.play-circle svg {
  width: 20px; height: 20px;
  fill: var(--green);
  margin-left: 4px;
}

.vid-card.playing .play-circle,
.vid-card:hover .play-circle { opacity: 0; transform: translate(-50%,-50%) scale(0.8); }

.vid-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  font-weight: 300;
}

/* ─── IMAGE SECTION ─── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;

  cursor: zoom-in;
  box-shadow: 0 6px 24px rgba(28,20,16,0.08);
  opacity: 0;
  transform: translateY(40px);
}

.img-card.in {
  animation: cardUp 0.6s ease forwards;
}

.img-card img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  background: #f5f5f5; /* boşluk olursa kötü görünmesin */
  object-position: center center;
  display: block;
  filter: sepia(6%);
  transition: transform 0.6s ease, filter 0.5s;
}

.img-card:hover img {
  transform: scale(1.07);
  filter: sepia(0%);
}

.img-num-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(249,244,238,0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  color: var(--ink2);
  font-style: italic;
  pointer-events: none;
  transition: background 0.3s;
}

.img-card:hover .img-num-badge {
  background: rgba(184,134,78,0.9);
  color: white;
}

/* ─── TEAM / FOOTER ─── */
.team-footer {
  background: var(--ink);
  color: #d0c8be;
  padding: 80px 8vw 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.team-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(184,134,78,0.2);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}

.team-card:hover {
  border-color: rgba(184,134,78,0.5);
  background: rgba(255,255,255,0.06);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid rgba(184,134,78,0.5);
  filter: sepia(15%);
}

.team-role {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 6px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #ede8e2;
  margin-bottom: 16px;
}

.team-contact a {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(208,200,190,0.75);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s;
}

.team-contact a:hover {
  color: var(--gold2);
}

.footer-bottom {
  border-top: 1px solid rgba(184,134,78,0.15);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-legal {
  font-size: 11px;
  font-weight: 300;
  opacity: 0.45;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.fsocial-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,78,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(208,200,190,0.65);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.fsocial-link:hover {
  border-color: var(--gold2);
  color: var(--gold2);
  transform: translateY(-3px);
}

.fsocial-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── LIGHTBOX ─── */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,4,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.lb.open { display: flex; }

.lb img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  animation: lbZoom 0.35s cubic-bezier(.2,.8,.4,1) both;
}

@keyframes lbZoom {
  from { opacity:0; transform: scale(0.88); }
  to { opacity:1; transform: scale(1); }
}

.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 36px;
  color: rgba(253,250,246,0.6);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}

.lb-close:hover { color: white; transform: rotate(90deg); }

/* ─── SOCIAL TOP BAR ─── */
.social-top {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 8vw;
  margin-top: -1px;
}

.stb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink2);
  background: var(--bg2);
  border: 1px solid rgba(184,134,78,0.2);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  flex: 1;
  justify-content: center;
  max-width: 200px;
}

.stb-link:first-child { border-radius: 0 0 0 8px; }
.stb-link:last-child { border-radius: 0 0 8px 0; }

.stb-link:hover {
  background: var(--bg3);
  color: var(--gold);
  border-color: rgba(184,134,78,0.45);
}

.stb-link svg {
  width: 15px; height: 15px;
  fill: currentColor;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to { opacity:1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 36px 6vw;
  }
  .header-about { order: 1; }
  .header-founder { order: 2; }
  .founder-photo { width: 220px; height: 220px; }
  .section { padding: 60px 5vw; }
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { padding: 60px 6vw; }
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-footer { padding: 60px 6vw 32px; }
  .social-top { padding: 0 5vw; }
  .stb-link span { display: none; }
  .stb-link { padding: 12px 16px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { justify-content: center; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .image-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-headline { font-size: 28px; }
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .founder-photo { width: 180px; height: 180px; }
}
