/* ============================================================
   Dt. Kubilay Çiçek — Estetik Diş Hekimliği
   Editorial / clinical. Inspired by the Carrazone layout:
   full-bleed grayscale photography, serif headlines with
   italic green accents, cream + warm-black alternating bands,
   numbered patient journey, green pill buttons. Bilingual.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 72px);
  --radius: 6px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 0.72, 0.2, 1);
  --body-font: 'Manrope', system-ui, sans-serif;
  --head-font: 'Cormorant Garamond', Georgia, serif;

  /* warm-black (default / dark bands) */
  --bg: #14160F;
  --bg-2: #191C13;
  --surface: #1F2218;
  --surface-2: #262A1D;
  --border-soft: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.12);
  --fg-1: #F0EFE7;
  --fg-2: #ABAE9B;
  --fg-3: #777A68;
  --accent: #C4C8C5;      /* light grey */
  --accent-2: #DCDFDC;    /* lighter hover */
  --accent-deep: #6E726F;
  --accent-soft: rgba(196,200,197,.15);
  --on-accent: #1A1D17;
  --shadow: 0 4px 16px rgba(0,0,0,.3), 0 22px 50px rgba(0,0,0,.4);
}

/* cream band */
.band--cream {
  --bg: #F4F1E8;
  --bg-2: #ECE7DA;
  --surface: #FFFFFF;
  --surface-2: #FBF9F2;
  --border-soft: rgba(20,22,15,.10);
  --line: rgba(20,22,15,.14);
  --fg-1: #1B1E14;
  --fg-2: #55584A;
  --fg-3: #868978;
  --accent: #7C817E;      /* mid grey reads on cream */
  --accent-2: #9AA09C;
  --accent-soft: rgba(124,129,126,.12);
  --on-accent: #FFFFFF;
  --shadow: 0 4px 16px rgba(20,22,15,.05), 0 16px 40px rgba(20,22,15,.07);
  background: var(--bg);
  color: var(--fg-1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--on-accent); }

/* serif display */
.serif { font-family: var(--head-font); font-weight: 600; line-height: 1.04; letter-spacing: -0.005em; }
.serif em { font-style: italic; color: var(--accent); font-weight: 600; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(72px, 10vw, 130px); position: relative; }

/* kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body-font); font-size: 11.5px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--accent);
}
.kicker.line::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .7; }

/* buttons — green pill */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 28px; border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .14s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
  white-space: nowrap;
}
.btn .dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; flex: none; }
.btn .dot::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--fg-1); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.wa-ic { width: 17px; height: 17px; }

/* photo treatment — the core signature */
.ph { position: relative; overflow: hidden; background: var(--surface); }
.ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04) brightness(1.02); transition: filter .6s var(--ease), transform 1.2s var(--ease); }
.ph.tint::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(150deg, rgba(40,44,36,.46), rgba(20,22,15,.18) 60%, transparent);
  mix-blend-mode: multiply; opacity: .9; transition: opacity .5s var(--ease);
}
.ph.hoverable:hover img { filter: grayscale(0) contrast(1.02); transform: scale(1.03); }
.ph.hoverable:hover::after { opacity: 0; }

/* ============================================================ NAV */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 22px; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 13px; font-weight: 600; letter-spacing: .03em; color: rgba(255,255,255,.82); position: relative; padding-block: 6px; transition: color .2s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent); transition: width .22s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-social { display: flex; gap: 8px; }
.nav-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; color: rgba(255,255,255,.85); transition: all .2s var(--ease); }
.nav-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,.04); }
.nav-social svg { width: 17px; height: 17px; }

/* language toggle */
.lang { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-pill); padding: 3px; }
.lang button { border: none; background: transparent; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 800; letter-spacing: .05em; padding: 6px 11px; border-radius: var(--radius-pill); transition: all .2s var(--ease); }
.lang button.active { background: var(--accent); color: var(--on-accent); }
.lang button:not(.active):hover { color: #fff; }

.nav-toggle { display: none; background: none; border: none; color: #fff; padding: 4px; }
.mobile-menu { position: absolute; top: 92px; left: var(--pad-x); right: var(--pad-x); z-index: 49; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow); display: grid; gap: 2px; }
.mobile-menu a { padding: 13px 16px; border-radius: var(--radius); color: var(--fg-1); font-weight: 600; font-size: 16px; }
.mobile-menu a:hover { background: var(--accent-soft); color: var(--accent); }
@media (min-width: 1001px) { .mobile-menu { display: none !important; } }
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================ HERO (photo → black fade) */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  background: var(--bg);
}
.hero-media { position: absolute; left: 0; top: 0; bottom: 0; width: 68%; z-index: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 42% 32%;
  filter: grayscale(1) contrast(1.05) brightness(.95);
}
/* professional dissolve: photo melts into the solid black field on the right */
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(20,22,15,0) 0%,
      rgba(20,22,15,0) 48%,
      rgba(20,22,15,.42) 68%,
      rgba(20,22,15,.90) 84%,
      var(--bg) 97%),
    linear-gradient(180deg, rgba(8,10,6,.30) 0%, transparent 24%, transparent 72%, rgba(8,10,6,.40) 100%);
}
/* subtle green ambience over the black field */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(46% 56% at 84% 32%, rgba(220,223,220,.10), transparent 62%);
}
.hero-content {
  position: relative; z-index: 3; min-height: 100svh;
  display: flex; align-items: center; justify-content: flex-end;
  padding-top: 120px; padding-bottom: clamp(56px, 8vh, 96px);
}
.hero-copy { width: min(40%, 520px); text-align: right; margin-right: clamp(4px, 1.4vw, 26px); }
.hero-eyebrow { color: var(--accent-2); margin-bottom: 22px; }
.hero-eyebrow.kicker.line { flex-direction: row-reverse; justify-content: flex-end; }
.hero h1 { color: #fff; font-size: clamp(34px, 3.4vw, 56px); line-height: 1.07; margin-left: auto; }
.hero h1 em { font-style: italic; color: var(--accent-2); }
.hero-sub { margin-top: 22px; margin-left: auto; color: rgba(255,255,255,.78); font-size: clamp(15px, 1.4vw, 18px); max-width: 38ch; line-height: 1.62; }
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.32); }
.hero-cta .btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }
@media (max-width: 1000px) {
  .hero-media { width: 60%; }
  .hero-copy { width: min(48%, 440px); }
}
@media (max-width: 820px) {
  .hero { min-height: 0; }
  .hero-media { position: relative; width: 100%; height: 44svh; min-height: 300px; }
  .hero::before { display: none; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(8,10,6,.32) 0%, transparent 30%, transparent 58%, rgba(20,22,15,.85) 90%, var(--bg) 100%);
  }
  .hero-content { min-height: 0; display: block; padding: 36px var(--pad-x) 56px; background: var(--bg); }
  .hero-copy { width: 100%; text-align: left; }
  .hero-eyebrow.kicker.line { flex-direction: row; justify-content: flex-start; }
  .hero h1, .hero-sub { margin-left: 0; }
  .hero-cta { justify-content: flex-start; }
}

/* green tagline strip */
.tagline-strip { background: var(--accent-deep); color: #EAF1E4; }
.tagline-strip .wrap { padding-block: 17px; text-align: center; }
.tagline-strip p { font-size: clamp(13px, 1.5vw, 15.5px); font-weight: 500; letter-spacing: .01em; }
.tagline-strip em { font-family: var(--head-font); font-style: italic; font-size: 1.18em; font-weight: 600; color: #fff; }

/* ============================================================ INTRO / COLLAGE */
.intro-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.collage { display: grid; grid-template-columns: 1fr 1.15fr; grid-template-rows: repeat(2, auto); gap: 14px; }
.intro-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.intro-photo img { transition: filter .5s var(--ease), transform 1.2s var(--ease); }
.intro-photo:hover img { filter: grayscale(0) saturate(1.3) contrast(1.03) brightness(1.04); transform: scale(1.03); }
.collage .ph { border-radius: var(--radius); }
.collage .c1 { aspect-ratio: 4/5; }
.collage .c2 { grid-row: 1 / 3; aspect-ratio: 3/5; }
.collage .c3 { aspect-ratio: 4/3; }
.intro-text .kicker { margin-bottom: 20px; }
.intro-text h2 { font-size: clamp(32px, 4.6vw, 52px); }
.intro-text p { color: var(--fg-2); font-size: 16.5px; margin-top: 20px; max-width: 50ch; line-height: 1.7; }
.intro-text .btn { margin-top: 34px; }
@media (max-width: 880px) {
  .intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .collage { max-width: 460px; }
  .intro-photo { max-width: 460px; aspect-ratio: 4/3; }
}

/* ============================================================ TREATMENTS (tall cards) */
.treat-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: end; margin-bottom: 48px; }
.treat-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 18px; }
.treat-head .aside { color: var(--fg-2); font-size: 15.5px; line-height: 1.6; padding-bottom: 6px; }
.treat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.tcard .ph { aspect-ratio: 3/4.4; }
.tcard .ph::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(12,14,8,.5) 70%, rgba(12,14,8,.92) 100%);
}
.tcard-body { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 26px 24px; }
.tcard-num { font-family: var(--head-font); font-size: 16px; color: var(--accent-2); font-weight: 600; opacity: .9; }
.tcard h3 { color: #fff; font-family: var(--body-font); font-size: 18px; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; margin: 8px 0 0; }
.tcard p { color: rgba(255,255,255,.72); font-size: 13.5px; line-height: 1.5; margin-top: 10px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .4s var(--ease), margin .4s var(--ease); }
.tcard .more { display: inline-flex; align-items: center; gap: 7px; color: var(--accent-2); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 14px; padding: 7px 0; border-radius: var(--radius-pill); transition: background .25s var(--ease), color .25s var(--ease), padding .25s var(--ease); }
.tcard .more svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.tcard:hover p { max-height: 120px; opacity: 1; margin-top: 12px; }
.tcard:hover .more { background: var(--accent); color: var(--on-accent); padding: 9px 16px; }
.tcard:hover .more svg { transform: translateX(4px); }
/* treatment photos: natural grayscale by default, original colours on hover */
.tcard .ph img { filter: grayscale(1); transition: filter .5s var(--ease), transform 1.2s var(--ease); }
.tcard:hover .ph img { filter: none; transform: scale(1.03); }
@media (max-width: 820px) {
  .treat-head { grid-template-columns: 1fr; gap: 14px; }
  .treat-row { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .tcard p { max-height: 120px; opacity: 1; margin-top: 12px; }
}

/* ============================================================ ABOUT (dark, portrait stack) */
.about-inner { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-text .kicker { margin-bottom: 20px; }
.about-text h2 { font-size: clamp(32px, 4.6vw, 54px); }
.about-text p { color: var(--fg-2); font-size: 16.5px; margin-top: 20px; max-width: 52ch; line-height: 1.7; }
.about-cta { margin-top: 32px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.about-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stack .ph { border-radius: var(--radius); }
.about-stack .a1 { aspect-ratio: 3/4.6; margin-top: 30px; }
.about-stack .a2 { aspect-ratio: 3/4.6; }
@media (max-width: 820px) { .about-inner { grid-template-columns: 1fr; } .about-stack { max-width: 440px; } }

/* ============================================================ JOURNEY (numbered) */
.journey-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.journey-head h2 { font-size: clamp(28px, 4.2vw, 50px); margin-top: 18px; }
.journey-list { max-width: 940px; margin: 0 auto; }
.jrow { display: grid; grid-template-columns: 64px 1fr 1.3fr; gap: 24px; align-items: baseline; padding: 26px 0; border-top: 1px solid var(--line); transition: background .3s var(--ease); }
.jrow:last-child { border-bottom: 1px solid var(--line); }
.jrow:hover { background: rgba(255,255,255,.02); }
.jrow .jn { font-family: var(--head-font); font-size: 26px; font-weight: 500; color: var(--accent); font-style: italic; }
.jrow h4 { font-family: var(--body-font); font-size: 17px; font-weight: 700; color: var(--fg-1); letter-spacing: -.01em; }
.jrow p { color: var(--fg-2); font-size: 15px; line-height: 1.55; }
.journey-foot { text-align: center; margin-top: 46px; font-family: var(--head-font); font-style: italic; font-size: clamp(18px, 2.4vw, 24px); color: var(--accent); max-width: 30ch; margin-inline: auto; line-height: 1.3; }
@media (max-width: 720px) {
  .jrow { grid-template-columns: 44px 1fr; gap: 8px 16px; }
  .jrow p { grid-column: 2 / 3; }
}

/* ============================================================ EDUCATOR / COURSES */
.edu-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.edu-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/2; }
.edu-text .kicker { margin-bottom: 20px; }
.edu-text h2 { font-size: clamp(30px, 4.2vw, 48px); }
.edu-text p { color: var(--fg-2); font-size: 16.5px; margin-top: 20px; max-width: 48ch; line-height: 1.7; }
.edu-points { margin-top: 26px; display: grid; gap: 14px; }
.edu-point { display: flex; gap: 13px; align-items: flex-start; color: var(--fg-1); font-size: 15.5px; }
.edu-point svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 3px; }
.edu-text .btn { margin-top: 32px; }
@media (max-width: 860px) { .edu-inner { grid-template-columns: 1fr; gap: 30px; } .edu-media { order: -1; } }

/* ============================================================ RESULTS GALLERY */
.results-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.results-head h2 { font-size: clamp(30px, 4.2vw, 50px); margin-top: 18px; }
.results-head p { color: var(--fg-2); font-size: 16.5px; margin-top: 18px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 14px; }
.results-grid .ph { border-radius: var(--radius); aspect-ratio: 1; }
.results-grid .feat { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.results-cap { text-align: center; margin-top: 36px; color: var(--fg-3); font-size: 14px; }
.results-cap a { color: var(--accent); font-weight: 700; }
@media (max-width: 760px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid .feat { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; }
}

/* ============================================================ CONTACT */
.contact-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-info .kicker { margin-bottom: 20px; }
.contact-info h2 { font-size: clamp(32px, 4.4vw, 52px); }
.contact-info > p { color: var(--fg-2); font-size: 17px; margin-top: 20px; max-width: 42ch; line-height: 1.7; }
.contact-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.contact-list { margin-top: 38px; display: grid; gap: 2px; }
.ci-row { display: flex; gap: 16px; align-items: center; padding: 17px 0; border-top: 1px solid var(--line); }
.ci-row:last-child { border-bottom: 1px solid var(--line); }
.ci-row .ic { width: 42px; height: 42px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); }
.ci-row .ic svg { width: 19px; height: 19px; }
.ci-row b { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); font-weight: 700; }
.ci-row span { font-size: 16px; color: var(--fg-1); font-weight: 600; }
.form-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.form-card h3 { font-family: var(--head-font); font-weight: 600; font-size: 27px; }
.form-card .sub { color: var(--fg-3); font-size: 14.5px; margin: 6px 0 24px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--fg-2); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: var(--bg-2); color: var(--fg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 15px; font-family: inherit; font-size: 15px; font-weight: 500; transition: border-color .2s var(--ease); }
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { margin-top: 15px; font-size: 12px; color: var(--fg-3); text-align: center; line-height: 1.5; }
@media (max-width: 820px) { .contact-inner { grid-template-columns: 1fr; } }

/* ============================================================ FOOTER */
.footer { background: #0F110A; border-top: 1px solid rgba(255,255,255,.08); padding-block: 66px 36px; color: var(--fg-2); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: var(--fg-3); font-size: 14.5px; max-width: 300px; line-height: 1.6; }
.footer-col h5 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--fg-2); font-size: 14.5px; padding: 5px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--fg-3); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--fg-2); transition: all .2s var(--ease); }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* (floating whatsapp removed — booking is via the "Randevu Al" WhatsApp CTAs) */

/* clickable address (Google Maps) */
.ci-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); transition: color .2s var(--ease), text-decoration-color .2s var(--ease); }
.ci-link:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* contact-form status message */
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; text-align: center; border-radius: var(--radius); padding: 12px 14px; line-height: 1.5; }
.form-status.ok  { color: #86cfa1; background: rgba(86,180,120,.12); border: 1px solid rgba(86,180,120,.30); }
.form-status.err { color: #e8938c; background: rgba(220,110,100,.12); border: 1px solid rgba(220,110,100,.30); }

/* reveal — transform only, never hides content */
.reveal { animation: rise .8s var(--ease) both; }
@keyframes rise { from { transform: translateY(16px); opacity: .55; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* ============================================================ FAQ (accordion) */
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.faq-head .kicker { justify-content: center; margin-bottom: 18px; }
.faq-head h2 { font-size: clamp(28px, 4.2vw, 48px); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 4px; font-family: var(--body-font); font-size: 17px; font-weight: 700; color: var(--fg-1); letter-spacing: -.01em; transition: color .2s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-chev { width: 20px; height: 20px; flex: none; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a { padding: 0 4px 24px; }
.faq-a p { color: var(--fg-2); font-size: 16px; line-height: 1.7; max-width: 70ch; }
.faq-more { text-align: center; margin-top: 36px; }
.faq-more-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding: 10px 4px; transition: gap .2s var(--ease); }
.faq-more-link svg { width: 16px; height: 16px; }
.faq-more-link:hover { gap: 14px; }

[hidden] { display: none !important; }
