:root {
  --cream:        #f3ecde;
  --sand:         #e6d8c0;
  --nude:         #e5d5cd;
  --blush:        #dcd2c2;
  --taupe:        #c9bfae;
  --stone:        #aaa79a;
  --olive:        #8a8775;
  --ink:          #3a352c;
  --ink-soft:     #6b6354;
  --line:         rgba(58,53,44,0.14);

  --accent:       var(--stone);

  --f-head: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --f-body: "Inter", "Manrope", system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23  0 0 0 0 0.21  0 0 0 0 0.17  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body.no-grain::before { display: none; }

h1,h2,h3,h4 {
  font-family: var(--f-head);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background .4s ease, backdrop-filter .4s, padding .3s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(243, 236, 222, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--f-head);
  font-size: 26px;
  letter-spacing: 0.02em;
  font-style: italic;
  color: var(--ink);
}
.brand span { font-style: normal; opacity: 0.55; font-size: 0.55em; letter-spacing: 0.32em; text-transform: uppercase; display: block; line-height: 1; margin-top: 2px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent);
  transition: width .35s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .nav-links, .nav-cta { display: none; }

  .nav.open {
    background: var(--cream);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
  }
  .nav.open .nav-row {
    flex-wrap: wrap;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    padding: 24px 0 12px;
    border-top: 1px solid var(--line);
    margin-top: 14px;
    align-items: stretch;
  }
  .nav.open .nav-links a {
    font-size: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.18em;
  }
  .nav.open .nav-links a:last-of-type { border-bottom: 0; }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .nav-cta {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    margin-top: 8px;
    width: 100%;
    order: 4;
  }

  body.nav-open { overflow: hidden; }
}

/* ============ HERO ============ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; display: block; width: 36px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(54px, 8.5vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin-bottom: 32px;
}
.hero h1 .it { font-style: italic; font-weight: 300; color: var(--olive); }
.hero h1 .br { display: block; }

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  max-width: 480px;
  color: var(--ink-soft);
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  transition: transform .35s ease, background .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary svg { transition: transform .35s; }
.btn-primary:hover { background: var(--olive); }
.btn-primary:hover svg { transform: translateX(6px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: 4px;
}
.btn-ghost::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); transform-origin: left;
  transition: transform .35s ease;
}
.btn-ghost:hover::after { transform: scaleX(0); transform-origin: right; }

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-portrait .frame {
  position: absolute; inset: 0;
  border-radius: 280px 280px 12px 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(58,53,44,0.35);
}
.hero-portrait .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-portrait:hover .frame img { transform: scale(1.08); }

.hero-portrait .deco-circle {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid var(--line);
  top: -30px; left: -50px;
  display: grid; place-items: center;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(243, 236, 222, 0.6);
  backdrop-filter: blur(4px);
}
.hero-portrait .deco-circle .rotate {
  position: absolute; inset: 0;
  animation: spin 28s linear infinite;
}
.hero-portrait .deco-circle .rotate svg { width: 100%; height: 100%; }
.hero-portrait .deco-circle .center { font-family: var(--f-head); font-style: italic; font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--ink); }

.hero-tag {
  position: absolute;
  bottom: 40px; left: -80px;
  background: var(--cream);
  padding: 18px 26px;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 30px -16px rgba(58,53,44,0.22);
  font-size: 13px;
  max-width: 240px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); flex: none; box-shadow: 0 0 0 4px rgba(138,135,117,0.18); animation: pulse 2.4s infinite; }
.hero-tag span { font-family: var(--f-head); font-style: italic; font-size: 16px; color: var(--ink); line-height: 1.3; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(138,135,117,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(138,135,117,0.05); }
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-portrait { margin: 0 auto; max-width: 380px; }
  .hero-tag { left: -10px; bottom: 20px; }
  .hero { padding: 130px 0 60px; }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative; z-index: 2;
  background: var(--cream);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--f-head);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
}
.marquee .star {
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
  display: inline-block;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ Section base ============ */
section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.eyebrow::before { content: ""; display: block; width: 30px; height: 1px; background: var(--accent); }
.section-title {
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300;
  max-width: 14ch;
  margin-bottom: 28px;
}
.section-title .it { font-style: italic; color: var(--olive); }

/* ============ ABOUT ============ */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-questions {
  font-family: var(--f-head);
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin: 50px 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-questions p { margin: 0; padding: 6px 0; }
.about p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 56ch;
}
.about p strong, .about p em.h { color: var(--ink); font-style: normal; font-weight: 500; }
.about-pull {
  font-family: var(--f-head);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  color: var(--ink);
  margin: 50px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-style: italic;
}

.about-side {
  position: sticky;
  top: 120px;
}
.about-side-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: var(--blush);
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.about-side-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58,53,44,0.18));
}
.about-side-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(0.96) saturate(0.92); }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--f-head);
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  font-weight: 300;
}
.stat .num em { font-style: italic; color: var(--olive); font-size: 0.7em; }
.stat .lbl { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
}

/* ============ APPROACH ============ */
.approach {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.approach .eyebrow { color: rgba(243,236,222,0.6); }
.approach .eyebrow::before { background: var(--blush); }
.approach .section-title { color: var(--cream); }
.approach .section-title .it { color: var(--blush); }

.approach-intro {
  font-family: var(--f-head);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.5;
  font-style: italic;
  max-width: 26ch;
  color: rgba(243,236,222,0.85);
  margin-bottom: 80px;
}

.three-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(243,236,222,0.18);
  margin-bottom: 100px;
}
.pillar {
  padding: 36px 32px 36px 0;
  border-right: 1px solid rgba(243,236,222,0.18);
  position: relative;
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 32px; }
.pillar .num {
  font-family: var(--f-head);
  font-style: italic;
  color: var(--blush);
  opacity: 0.7;
  font-size: 15px;
  margin-bottom: 18px;
  display: block;
}
.pillar h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--cream);
}
.pillar p {
  font-size: 15px;
  color: rgba(243,236,222,0.7);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 760px) {
  .three-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid rgba(243,236,222,0.18); padding: 28px 0; }
  .pillar:not(:first-child) { padding-left: 0; }
}

.expertise {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.expertise h3 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.15;
}
.expertise h3 .it { font-style: italic; color: var(--blush); }
.expertise-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.expertise-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(243,236,222,0.15);
  font-size: 15px;
  color: rgba(243,236,222,0.85);
  display: flex; align-items: center; gap: 16px;
  transition: color .3s, padding-left .3s;
}
.expertise-list li:hover { color: var(--cream); padding-left: 6px; }
.expertise-list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush);
  flex: none;
}
@media (max-width: 760px) {
  .expertise { grid-template-columns: 1fr; gap: 30px; }
  .expertise-list { grid-template-columns: 1fr; }
}

/* ============ SERVICES ============ */
.services { background: var(--cream); }
.services-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-bottom: 80px; align-items: end;
}
.services-head p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  max-width: 44ch; margin: 0;
}
@media (max-width: 760px) {
  .services-head { grid-template-columns: 1fr; }
}

.service-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 100px;
  gap: 40px;
  align-items: center;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .35s, padding .35s;
  position: relative;
}
.service:hover {
  background: rgba(220, 210, 194, 0.35);
  padding-left: 24px;
}
.service .idx {
  font-family: var(--f-head);
  font-style: italic;
  color: var(--olive);
  font-size: 18px;
}
.service h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.service h3 .it { font-style: italic; color: var(--olive); }
.service p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}
.service .arrow {
  width: 56px; height: 56px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  justify-self: end;
  transition: background .3s, color .3s, transform .35s;
}
.service:hover .arrow {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-45deg);
}
.service .arrow svg { width: 18px; height: 18px; }

@media (max-width: 760px) {
  .service { grid-template-columns: 50px 1fr 56px; gap: 18px; padding: 24px 0; }
  .service .desc { grid-column: 1 / -1; padding-top: 0; }
  .service h3 { font-size: 22px; }
}

/* ============ CERTIFICATIONS ============ */
.certs { background: var(--sand); }
.certs-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
  align-items: start;
}
.certs-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.certs-list li {
  padding: 20px 16px 20px 0;
  font-family: var(--f-head);
  font-size: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 14px;
  transition: padding .3s;
}
.certs-list li:hover { padding-left: 8px; }
.certs-list li .dash {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.2em;
  flex: none;
  width: 28px;
  display: inline-block;
}
.certs-list li:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; padding-left: 0; }
.certs-list li:nth-child(even) { padding-left: 24px; }

@media (max-width: 760px) {
  .certs-grid { grid-template-columns: 1fr; gap: 30px; }
  .certs-list { grid-template-columns: 1fr; }
  .certs-list li { padding-left: 0 !important; padding-right: 0 !important; border-right: 0 !important; }
}

/* ============ FAQ (Soru-Cevap) ============ */
.faq { background: var(--nude); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.faq-item:hover { background: rgba(243, 236, 222, 0.4); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 8px;
  font-family: var(--f-head);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: padding .3s;
}
.faq-q:hover { padding-left: 20px; }
.faq-q .icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: transform .35s, background .3s, color .3s;
  font-family: var(--f-body);
  font-size: 16px;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--cream);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1);
}
.faq-a-inner {
  padding: 0 60px 28px 8px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-form {
  background: var(--cream);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.faq-form h3 {
  font-family: var(--f-head);
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-form p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.6;
}
.faq-form .field { margin-bottom: 18px; }
.faq-form label {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.faq-form input, .faq-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 6px 0 12px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.faq-form textarea { resize: vertical; min-height: 90px; }
.faq-form input:focus, .faq-form textarea:focus { border-color: var(--olive); }
.faq-form .msg {
  margin-top: 14px;
  font-size: 13px;
  color: var(--olive);
  min-height: 18px;
}
.faq-form .msg.error { color: #b04040; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-form { padding: 24px; }
}

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(180deg, var(--sand), var(--blush));
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(58,53,44,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  border: 1px solid rgba(58,53,44,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-inner {
  text-align: center;
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.contact .eyebrow { justify-content: center; margin-bottom: 28px; }
.contact .eyebrow::before, .contact .eyebrow::after {
  content: ""; display: block; width: 30px; height: 1px; background: var(--accent);
}
.contact h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.contact h2 .it { font-style: italic; color: var(--olive); }
.contact p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 auto 50px;
  max-width: 50ch;
  line-height: 1.6;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: left;
}
.contact-form label {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0 14px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--olive); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--taupe); }

.contact-actions {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-top: 24px;
}
.contact-meta {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-meta a:hover { color: var(--ink); }
.form-status {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: var(--olive);
  min-height: 20px;
}
.form-status.error { color: #b04040; }

@media (max-width: 760px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer {
  padding: 60px 0 40px;
  background: var(--ink);
  color: rgba(243,236,222,0.7);
  position: relative;
  z-index: 2;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.footer-brand {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
  letter-spacing: 0;
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity .9s ease, transform .9s ease;
}
.words.in .word { opacity: 1; transform: none; }

/* ============ Scroll progress ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--accent); z-index: 100;
  width: 0%;
  transition: width .1s linear;
}

/* ============ Section number / label ============ */
.section-label {
  position: absolute;
  top: clamp(80px, 10vw, 140px);
  right: var(--gutter);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--f-body);
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
}
.approach .section-label { color: rgba(243,236,222,0.6); }
.section-label::before {
  content: ""; display: block; width: 30px; height: 1px; background: currentColor; opacity: 0.5;
}
@media (max-width: 760px) { .section-label { display: none; } }

/* ============ Mobil sadeleştirme ============ */
@media (max-width: 760px) {
  body { font-size: 16px; line-height: 1.6; }
  body::before { display: none; }

  section { padding: 64px 0; }

  .section-title {
    font-size: clamp(34px, 8vw, 48px);
    margin-bottom: 20px;
  }
  .eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: 0.28em; }

  /* Hero — dekoratif öğeleri gizle */
  .hero { padding: 110px 0 40px; }
  .hero-grid { gap: 36px; }
  .hero h1 {
    font-size: clamp(46px, 12vw, 64px);
    line-height: 1;
    margin-bottom: 20px;
  }
  .hero-sub { margin-bottom: 28px; max-width: none; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-actions { gap: 18px; }
  .btn-primary { padding: 14px 24px; font-size: 12px; }

  .hero-portrait {
    max-width: 280px;
    aspect-ratio: 4/5;
  }
  .hero-portrait .frame { border-radius: 160px 160px 8px 8px; }
  .hero-portrait .deco-circle { display: none; }
  .hero-portrait .frame img { transition: none; }
  .hero-tag {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 18px;
    font-size: 12px;
    max-width: 220px;
  }
  .hero-tag .dot { animation: none; }
  .hero-tag span { font-size: 13px; }

  /* Marquee — daha hızlı ve daha küçük */
  .marquee { padding: 14px 0; }
  .marquee span { font-size: 16px; }
  .marquee-track { animation-duration: 28s; gap: 32px; }

  /* About — sticky kapalı, görseli küçült, başlık+stats sade */
  .about-grid { gap: 32px; }
  .about-side { display: none; }
  .about-questions { margin: 28px 0; padding: 22px 0; font-size: 20px; }
  .about-pull { margin-top: 28px; padding-left: 16px; font-size: 22px; }
  .about p { font-size: 15px; line-height: 1.65; margin-bottom: 16px; }

  /* Approach — ink section'da kontur ve fazla boşluk azalt */
  .approach-intro { margin-bottom: 40px; font-size: 18px; }
  .three-pillars { margin-bottom: 50px; }
  .pillar h3 { font-size: 24px; }
  .pillar p { font-size: 14px; }

  /* Services — okları küçült, hover'ı kaldır */
  .services-head { margin-bottom: 40px; gap: 20px; }
  .service { padding: 20px 0; gap: 14px; grid-template-columns: 40px 1fr 44px; }
  .service:hover { background: transparent; padding-left: 0; }
  .service .desc { font-size: 13px; line-height: 1.55; }
  .service .arrow { width: 44px; height: 44px; }
  .service .idx { font-size: 14px; }

  /* Certs — sade liste */
  .certs-list li { font-size: 17px; padding: 14px 0; }

  /* FAQ — sade */
  .faq-q { padding: 20px 0; font-size: 18px; gap: 14px; }
  .faq-q:hover { padding-left: 0; }
  .faq-q .icon { width: 28px; height: 28px; font-size: 14px; }
  .faq-a-inner { padding: 0 0 22px 0; font-size: 15px; }

  /* Contact — dev daireler ve fazla boşluk yok */
  .contact { padding: 70px 0; }
  .contact::before, .contact::after { display: none; }
  .contact h2 { font-size: clamp(40px, 10vw, 56px); margin-bottom: 18px; }
  .contact p { font-size: 16px; margin-bottom: 32px; }
  .contact-meta { margin-top: 40px; padding-top: 28px; gap: 18px 24px; font-size: 12px; }
  .contact-meta { flex-direction: column; }

  /* Footer */
  footer { padding: 40px 0 28px; }
  .footer-row { flex-direction: column; gap: 14px; text-align: center; }

  /* Reveal animasyon hareket azaltma */
  .reveal { transform: translateY(14px); transition-duration: .7s; }

  /* Scroll progress bar daha ince */
  .scroll-progress { height: 1px; }
}

/* prefers-reduced-motion: tüm animasyonları durdur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
