/* ==========================================================================
   beyzasevindik.com.tr — Fzt. Beyza Sevindik
   v2 "Kendi Rengi" — palette, shapes and voice taken from Beyza's own
   Instagram identity: forest-green headings, pastel circles, warm white room.
   Karşıyaka / Mavişehir — İzmir
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colour — sampled directly from @fztbeyzasevindik's own graphics */
  --ink:         #26401C;  /* her headline green — text, headings, dark grounds */
  --ink-soft:    #3B5A2E;
  --stone:       #5E564B;  /* warm secondary text — 6.3:1 on paper             */
  --paper:       #FBFAF7;  /* warm white, the light in her room                */
  --surface:     #FFFFFF;
  --hair:        #E7E1D6;
  --hair-on-ink: rgba(251,250,247,.20);

  /* Her pastel circles — used as service discs, tints and section grounds */
  --sage:      #9DC195;
  --mint:      #87C1AB;
  --teal:      #A9CDD5;
  --lavender:  #B1A9D8;
  --blush:     #E4A9C7;
  --apricot:   #FFCB80;
  --coral:     #EEA7A5;

  /* Text-safe versions of the pastels (AA on paper) */
  --sage-deep:  #4E7343;
  --blush-deep: #A6547D;

  --cream:     #F3EFE6;   /* soft band ground                                  */
  --sage-wash: #EDF3EA;   /* softest sage ground                               */

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --logo:    "Playfair Display", Georgia, "Times New Roman", serif;  /* logoya en yakin kesim */
  --body:    "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(2.35rem, 5.1vw, 4.15rem);
  --fs-h2:      clamp(1.85rem, 3.2vw, 2.85rem);
  --fs-h3:      clamp(1.15rem, 1.5vw, 1.32rem);
  --fs-lead:    clamp(1.06rem, 1.35vw, 1.22rem);
  --fs-body:    1.0625rem;
  --fs-micro:   0.875rem;

  /* Layout */
  --wrap:   1160px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --sec-y:  clamp(4.25rem, 8.5vw, 7.5rem);

  /* Shape — round and soft, never boxy */
  --r-pill: 999px;
  --r-card: 22px;
  --r-img:  26px;
  --r-in:   14px;

  --header-h: clamp(72px, 8vw, 88px);

  --shadow-soft: 0 18px 44px -26px rgba(38, 64, 28, .34);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 70, "WONK" 1;   /* the warm, softened cut */
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.012em;
}
h3, h4 { font-weight: 500; line-height: 1.3; }

p + p { margin-top: 0.85em; }
strong { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 5px rgba(255, 203, 128, .6);
}
.on-ink :focus-visible { outline-color: var(--paper); }

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.35rem; border-radius: var(--r-pill);
  font-size: var(--fs-micro); font-weight: 600;
  transition: top .18s var(--ease);
}
.skip:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   3. UTILITIES
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 4.75rem); }

/* Eyebrow — a soft pastel dot, not an engineering rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--fs-micro); font-weight: 600; letter-spacing: .01em;
  color: var(--stone);
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--sage); flex: none;
}
.eyebrow--blush::before   { background: var(--blush); }
.eyebrow--apricot::before { background: var(--apricot); }
.eyebrow--lav::before     { background: var(--lavender); }

.lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--stone); max-width: 56ch; }
.micro { font-size: var(--fs-micro); line-height: 1.55; color: var(--stone); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.section-head { display: grid; gap: 1rem; max-width: 60ch; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.section-head h2 { font-size: var(--fs-h2); }

/* Buttons — pills, because a pill feels like an invitation */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .97rem; font-weight: 600; letter-spacing: -0.005em;
  padding: .92rem 1.7rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--apricot); color: var(--ink); }   /* 8.4:1 */
.btn--primary:hover { background: #FFD79C; box-shadow: 0 10px 26px -14px rgba(38,64,28,.5); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-soft); }

.btn--ghost { background: transparent; color: var(--ink); border-color: #D9D2C4; }
.btn--ghost:hover { border-color: var(--ink); background: rgba(38,64,28,.045); }

.btn--wa { background: var(--sage); color: var(--ink); }            /* 6.6:1 */
.btn--wa:hover { background: #ADCDA5; }

.btn--outline-ink { background: transparent; color: var(--paper); border-color: var(--hair-on-ink); }
.btn--outline-ink:hover { border-color: var(--paper); background: rgba(251,250,247,.1); }

.btn--block { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
  .btn:hover .btn__arrow { transform: none; }
}

/* --------------------------------------------------------------------------
   4. HEADER
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,247,.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.header[data-stuck="true"] { border-bottom-color: var(--hair); }
.header__inner { display: flex; align-items: center; gap: clamp(.75rem, 3vw, 1.25rem); min-height: var(--header-h); }

/* Logo — orijinal dosya kullanilir. Dosya yoksa yazi kilidi gorunur;
   hicbir durumda kirik gorsel ikonu cikmaz.
   index.html'de baslangic durumu data-logo="text"; main.js gorsel basariyla
   yuklendiginde data-logo="img" yapar. Dosya kesinlestiginde HTML'deki
   baslangic degerini "img" yapip JS bagimliligini kaldirabilirsiniz. */
.logo {
  display: inline-flex; align-items: center; text-decoration: none;
  margin-right: auto; flex: none; padding-block: .4rem;
}
.logo picture { display: block; }
.logo__img { display: block; width: auto; height: clamp(40px, 8.5vw, 54px); }
.logo--footer .logo__img { height: clamp(46px, 9vw, 60px); }
/* Yazi kilidi yalnizca gorsel yuklenemezse (main.js data-logo="text" yapar) */
.logo__fallback { display: none; }
.logo[data-logo="text"] picture { display: none; }
.logo[data-logo="text"] .logo__fallback { display: grid; gap: 3px; justify-items: start; }

.logo__name {
  font-family: var(--logo); font-weight: 500;
  font-size: clamp(.8rem, 2.7vw, .98rem);
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink); line-height: 1.05; white-space: nowrap;
}
.logo__role {
  font-family: var(--logo); font-weight: 400;
  font-size: clamp(.5rem, 1.5vw, .58rem);
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--stone); line-height: 1.05; white-space: nowrap;
  margin-right: -.3em;
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.7rem); list-style: none; padding: 0; }
.nav__link {
  font-size: .93rem; font-weight: 500; text-decoration: none;
  color: var(--ink); padding: .4rem 0; position: relative; isolation: isolate;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .15rem; height: 7px;
  border-radius: 4px; background: var(--apricot); opacity: .8; z-index: -1;
  transition: right .28s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="true"]::after { right: -3px; }

.header__actions { display: flex; align-items: center; gap: .5rem; flex: none; }
.header .btn { padding: .68rem 1.2rem; font-size: .89rem; white-space: nowrap; flex: none; }
.header__wa { display: none; }

@media (min-width: 1000px) {
  .nav { display: block; margin-right: 1.25rem; }
  .header__wa { display: inline-flex; }
}

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; flex: none;
  background: transparent; border: 1.5px solid #D9D2C4; border-radius: var(--r-pill);
  cursor: pointer;
}
.burger span { display: block; height: 1.8px; border-radius: 2px; background: var(--ink);
               transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }
@media (min-width: 1000px) { .burger { display: none; } }

/* Closed menu is display:none so a viewport-wide fixed panel can't add
   horizontal scroll on narrow screens; the open state animates in. */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0; z-index: 55;
  background: var(--paper);
  padding: 1.75rem var(--gutter) 3rem;
  display: none; align-content: start; gap: .2rem;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { display: grid; animation: menuIn .22s var(--ease) both; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .mobile-menu[data-open="true"] { animation: none; } }
.mobile-menu a:not(.btn) {
  font-family: var(--display); font-size: 1.42rem; font-weight: 400;
  font-variation-settings: "SOFT" 70, "WONK" 1;
  text-decoration: none; padding: .8rem 0; border-bottom: 1px solid var(--hair);
}
.mobile-menu .btn { margin-top: 1.5rem; }
@media (min-width: 1000px) { .mobile-menu { display: none; } }

.progress { position: absolute; left: 0; bottom: -1px; height: 3px; width: 0%; background: var(--apricot); }

/* --------------------------------------------------------------------------
   5. HERO — her face first
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2.75rem, 5vw, 4rem); position: relative; }
.hero__grid { display: grid; gap: clamp(3rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); } }

.hero h1 { font-size: var(--fs-display); font-weight: 300; margin-block: 1.1rem 1.3rem;
           text-wrap: balance; }
.hero h1 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(transparent 60%, var(--apricot) 60%, var(--apricot) 93%, transparent 93%);
}
.hero__sub {
  font-size: clamp(1rem, 1.35vw, 1.14rem); font-weight: 600;
  color: var(--sage-deep); margin-bottom: 1.3rem; max-width: 46ch; line-height: 1.5;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.85rem; }

/* Soft facts — pastel pills, not a hairline table */
.facts { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin-top: 2.1rem; }
.facts li {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1.05rem .5rem .75rem;
  border-radius: var(--r-pill); background: var(--surface);
  border: 1px solid var(--hair);
  font-size: var(--fs-micro); font-weight: 500;
}
.facts i { width: 10px; height: 10px; border-radius: 50%; flex: none; font-style: normal; }

/* Portrait — her real room, softly framed */
.hero__photo { position: relative; isolation: isolate; margin-inline: auto; max-width: 460px; width: 100%; }
.hero__photo img { width: 100%; border-radius: var(--r-img); box-shadow: var(--shadow-soft); }
.hero__photo::before {
  content: ""; position: absolute; inset: -6% 0 12% 24%;
  border-radius: 50%; background: var(--sage-wash); z-index: -1;
}
/* the blob only bleeds past the photo once there is gutter to spare */
@media (min-width: 980px) { .hero__photo::before { inset: -8% -7% 14% 26%; } }
.photo-note {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -1.2rem; white-space: nowrap; max-width: 92%;
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-pill); padding: .55rem 1.15rem;
  font-size: .8rem; font-weight: 500; color: var(--stone);
  box-shadow: 0 10px 26px -18px rgba(38,64,28,.6);
}
.photo-note b { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   6. SERVICES — her pastel circles, translated to the web
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: 1.15rem; }
@media (min-width: 620px)  { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  padding: 1.75rem 1.6rem 1.55rem;
  display: flex; flex-direction: column; gap: .8rem;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover, .card:focus-within {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
@media (prefers-reduced-motion: reduce) { .card:hover, .card:focus-within { transform: none; } }

/* the disc: the exact device she uses on her own posts */
.card__disc {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  transition: transform .35s var(--ease);
}
.card:hover .card__disc { transform: scale(1.07) rotate(-5deg); }
@media (prefers-reduced-motion: reduce) { .card:hover .card__disc { transform: none; } }
.card__disc svg { width: 32px; height: 32px; }
.card__disc .ln { fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.disc--sage     { background: var(--sage); }
.disc--teal     { background: var(--teal); }
.disc--lavender { background: var(--lavender); }
.disc--mint     { background: var(--mint); }
.disc--apricot  { background: var(--apricot); }
.disc--blush    { background: var(--blush); }

.card h3 { font-size: var(--fs-h3); }
.card h3 a { text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-card); }
.card p { color: var(--stone); font-size: .97rem; line-height: 1.65; }
.card__who {
  margin-top: auto; padding-top: .95rem; border-top: 1px solid var(--hair);
  font-size: .84rem; color: var(--stone); line-height: 1.5;
}
.card__who b { display: block; font-weight: 600; color: var(--ink); margin-bottom: .1rem; }

/* --------------------------------------------------------------------------
   7. ABOUT — first person
   -------------------------------------------------------------------------- */
.about { background: var(--sage-wash); }
.about__grid { display: grid; gap: clamp(2.25rem, 4.5vw, 4rem); align-items: center; }
@media (min-width: 920px) { .about__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .84fr); } }

.about h2 { font-size: var(--fs-h2); margin-block: .9rem 1.2rem; }
.about p { color: var(--stone); }
.about p:first-of-type { color: var(--ink); font-size: var(--fs-lead); line-height: 1.65; }

.creds { list-style: none; padding: 0; margin-top: 1.85rem; display: grid; gap: .7rem; }
.creds li {
  display: grid; grid-template-columns: 24px 1fr; gap: .85rem; align-items: start;
  font-size: .97rem; color: var(--stone);
}
.creds i {
  width: 24px; height: 24px; border-radius: 50%; margin-top: .2rem;
  display: grid; place-items: center; font-style: normal; flex: none;
}
.creds li:nth-child(1) i { background: var(--sage); }
.creds li:nth-child(2) i { background: var(--teal); }
.creds li:nth-child(3) i { background: var(--apricot); }
.creds li:nth-child(4) i { background: var(--blush); }
.creds i svg { width: 13px; height: 13px; }
.creds i .ln { fill: none; stroke: var(--ink); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.creds b { color: var(--ink); font-weight: 600; }

/* Softened reformer drawing — an illustration now, not a patent plate */
.drawing { position: relative; isolation: isolate; }
.drawing svg { width: 100%; height: auto; }
.drawing .ln  { fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.drawing .ln--thin { stroke-width: 1.5; opacity: .5; }
.drawing .spring { fill: none; stroke: var(--blush-deep); stroke-width: 2.4; stroke-linecap: round; }
.drawing .carriage-fill { fill: var(--apricot); stroke: var(--ink); stroke-width: 2.2; }
.drawing__blob {
  position: absolute; inset: 4% 0 8%; z-index: -1;
  border-radius: 46% 54% 52% 48% / 58% 44% 56% 42%;
  background: var(--surface);
}
.drawing figcaption { text-align: center; font-size: .84rem; color: var(--stone); margin-top: .35rem; }

.glide-group { animation: glide 8s cubic-bezier(.42,0,.32,1) infinite; }
.spring-group {
  transform-box: view-box; transform-origin: 150px 226px;
  animation: stretch 8s cubic-bezier(.42,0,.32,1) infinite;
}
@keyframes glide  { 0%, 100% { transform: translateX(0); } 45%, 55% { transform: translateX(148px); } }
@keyframes stretch{ 0%, 100% { transform: scaleX(1); }    45%, 55% { transform: scaleX(1.987); } }
@media (prefers-reduced-motion: reduce) { .glide-group, .spring-group { animation: none; } }

/* Studyo galerisi — bento: bir buyuk, iki kare, bir genis */
.gallery { display: grid; gap: 1rem; }
.gallery__item { margin: 0; border-radius: var(--r-card); overflow: hidden; background: var(--sage-wash); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery__item--tall { grid-row: span 2; }
}
/* iki dikey kare + saga istiflenmis iki kare — foto oranlarina gore */
@media (min-width: 1000px) {
  .gallery { grid-template-columns: 1fr 1.35fr 1fr; grid-auto-rows: 210px; }
  .gallery__item--tall { grid-row: span 2; }
}

/* --------------------------------------------------------------------------
   8. COMPLAINTS — her own infographic
   -------------------------------------------------------------------------- */
.complaints__grid { display: grid; gap: clamp(2.25rem, 4.5vw, 3.75rem); align-items: center; }
@media (min-width: 900px) { .complaints__grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); } }

.ig-card {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-img); padding: clamp(.85rem, 1.6vw, 1.1rem);
  box-shadow: var(--shadow-soft); max-width: 480px; margin-inline: auto; width: 100%;
}
.ig-card img { width: 100%; border-radius: 16px; }
.ig-card figcaption {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
  padding: .85rem .4rem .1rem; font-size: .82rem; color: var(--stone);
}
.ig-card figcaption a { font-weight: 600; color: var(--ink); text-underline-offset: 3px; }

.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.7rem; }
.chips li { padding: .5rem 1.05rem; border-radius: var(--r-pill); font-size: .89rem; font-weight: 500; color: var(--ink); }
.chips li:nth-child(7n+1) { background: var(--sage); }
.chips li:nth-child(7n+2) { background: var(--blush); }
.chips li:nth-child(7n+3) { background: var(--teal); }
.chips li:nth-child(7n+4) { background: var(--apricot); }
.chips li:nth-child(7n+5) { background: var(--lavender); }
.chips li:nth-child(7n+6) { background: var(--mint); }
.chips li:nth-child(7n+7) { background: var(--coral); }

/* --------------------------------------------------------------------------
   9. METHOD
   -------------------------------------------------------------------------- */
.steps { list-style: none; padding: 0; display: grid; gap: 1.15rem; }
@media (min-width: 560px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.step {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-card);
  padding: 1.6rem 1.4rem; display: grid; gap: .55rem; align-content: start;
}
.step__n {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: .35rem;
  font-family: var(--display); font-weight: 500; font-size: 1rem; color: var(--ink);
}
.step:nth-child(1) .step__n { background: var(--sage); }
.step:nth-child(2) .step__n { background: var(--teal); }
.step:nth-child(3) .step__n { background: var(--apricot); }
.step:nth-child(4) .step__n { background: var(--blush); }
.step h3 { font-size: 1.12rem; }
.step p { font-size: .94rem; color: var(--stone); line-height: 1.6; }
.step__meta { font-size: .82rem; color: var(--stone); font-weight: 500; }

/* --------------------------------------------------------------------------
   10. LENFÖDEM / LİPÖDEM
   -------------------------------------------------------------------------- */
.compare { background: var(--cream); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .25rem; }
.compare table {
  width: 100%; border-collapse: separate; border-spacing: 0; min-width: 620px; text-align: left;
  background: var(--surface); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.compare caption { text-align: left; padding-bottom: 1rem; font-size: .92rem; color: var(--stone); }
.compare th, .compare td { padding: 1rem 1.15rem; border-bottom: 1px solid var(--hair); vertical-align: top; font-size: .96rem; }
.compare thead th { font-weight: 600; font-size: .93rem; }
.compare thead th:nth-child(2) { background: var(--teal); }
.compare thead th:nth-child(3) { background: var(--blush); }
.compare tbody th { font-weight: 600; width: 24%; color: var(--ink); }
.compare tbody td { color: var(--stone); }
.compare tbody tr:nth-child(odd) td, .compare tbody tr:nth-child(odd) th { background: rgba(157,193,149,.08); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

.compare__note {
  margin-top: 1.7rem; padding: 1.25rem 1.45rem;
  background: var(--surface); border-radius: var(--r-card);
  font-size: .96rem; color: var(--stone);
  border-left: 5px solid var(--sage);
}
.compare__note strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   11. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quotes { display: grid; gap: 1.15rem; }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.quote {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-card);
  padding: 1.6rem 1.55rem 1.5rem; display: flex; flex-direction: column; gap: .9rem;
}
.quote__mark { font-family: var(--display); font-size: 2.6rem; line-height: .55; color: var(--blush); }
.quote blockquote { font-size: 1rem; line-height: 1.7; color: var(--stone); }
.quote footer { margin-top: auto; padding-top: .95rem; border-top: 1px solid var(--hair);
                font-size: .84rem; color: var(--stone); }
.quote footer b { color: var(--ink); font-weight: 600; }

/* Yorumlar altindaki "Google'da oku" satiri */
.reviews__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.15rem; margin-top: 1.6rem; }

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .7rem; max-width: 860px; }
.faq details {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-card);
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--sage); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--display); font-size: 1.06rem; font-weight: 500;
  font-variation-settings: "SOFT" 70, "WONK" 1;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 26px; height: 26px; margin-left: auto; margin-top: .1rem;
  border-radius: 50%; background-color: var(--sage-wash);
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-size: 11px 1.8px, 1.8px 11px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform .28s var(--ease), background-color .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); background-color: var(--sage); }
.faq summary:hover { color: var(--sage-deep); }
.faq .answer { padding: 0 3.5rem 1.4rem 1.4rem; color: var(--stone); max-width: 72ch; }

/* --------------------------------------------------------------------------
   13. CONTACT
   -------------------------------------------------------------------------- */
.contact { background: var(--sage-wash); }
.contact__grid { display: grid; gap: clamp(2.25rem, 4.5vw, 3.75rem); align-items: start; }
@media (min-width: 940px) { .contact__grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); } }

.nap { list-style: none; padding: 0; display: grid; gap: .9rem; margin-top: 1.7rem; }
.nap li { display: grid; grid-template-columns: 34px 1fr; gap: .9rem; align-items: start; font-size: .98rem; }
.nap i { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-style: normal; flex: none; }
.nap i svg { width: 16px; height: 16px; }
.nap i .ln { fill: none; stroke: var(--ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.nap li:nth-child(1) i { background: var(--sage); }
.nap li:nth-child(2) i { background: var(--teal); }
.nap li:nth-child(3) i { background: var(--mint); }
.nap li:nth-child(4) i { background: var(--apricot); }
.nap li:nth-child(5) i { background: var(--blush); }
.nap b { display: block; font-weight: 600; font-size: .78rem; color: var(--stone); }
.nap a { text-underline-offset: 3px; }

.hours { width: 100%; border-collapse: collapse; margin-top: 1.7rem;
         background: var(--surface); border-radius: var(--r-in); overflow: hidden; }
.hours th, .hours td { padding: .72rem 1rem; border-bottom: 1px solid var(--hair); font-size: .95rem; text-align: left; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 500; }
.hours td { text-align: right; color: var(--stone); }

/* Map — a facade: nothing is requested from Google until the visitor asks */
.map { margin-top: 1.7rem; }
.map__frame {
  position: relative; aspect-ratio: 16 / 10;
  border-radius: var(--r-card); overflow: hidden;
  background: var(--surface); border: 1px solid var(--hair);
}
.map__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__art .st { fill: none; stroke: var(--hair); stroke-width: 9; stroke-linecap: round; }
.map__art .st--thin { stroke-width: 5; }
.map__art .blk { fill: var(--sage-wash); }
.map__art .blk--here { fill: var(--apricot); opacity: .45; }

.map__load {
  position: absolute; inset: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem;
  background: transparent; border: 0; cursor: pointer; padding: 1rem;
  transition: background-color .2s var(--ease);
}
.map__load:hover { background: rgba(38,64,28,.05); }
.map__pin {
  width: 54px; height: 54px; border-radius: 50%; background: var(--apricot);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -12px rgba(38,64,28,.6);
  transition: transform .25s var(--ease);
}
.map__load:hover .map__pin { transform: translateY(-3px); }
.map__pin svg { width: 26px; height: 26px; }
.map__pin .ln { fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.map__label { display: grid; gap: .15rem; text-align: center; }
.map__label b { font-size: .98rem; font-weight: 600; color: var(--ink); }
.map__label span { font-size: .82rem; color: var(--stone); }

.map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.map figcaption {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem;
  margin-top: 1rem;
}
.map figcaption .btn { padding: .78rem 1.4rem; font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
  .map__load:hover .map__pin { transform: none; }
}

.form { background: var(--surface); border-radius: var(--r-img); padding: clamp(1.5rem, 3vw, 2.35rem);
        box-shadow: var(--shadow-soft); }
.form h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.form__intro { font-size: .95rem; color: var(--stone); margin-bottom: 1.55rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field > label { font-size: .87rem; font-weight: 600; }
.field .req { color: var(--blush-deep); }
.field input, .field select, .field textarea {
  background: var(--paper); border: 1.5px solid var(--hair); border-radius: var(--r-in);
  padding: .82rem .95rem; font-size: 1rem; width: 100%;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--sage); }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--surface); }
.field .hint { font-size: .82rem; color: var(--stone); }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .7rem; margin-bottom: 1.5rem; }
.field--check input { width: 24px; height: 24px; margin-top: .1rem; accent-color: var(--ink); }  /* WCAG 2.5.8 */
.field--check label { font-size: .89rem; font-weight: 400; color: var(--stone); line-height: 1.55; }
.form__status { margin-top: .9rem; font-size: .93rem; }
.form__status[data-state="ok"]  { color: var(--sage-deep); }
.form__status[data-state="err"] { color: #A33420; }

/* --------------------------------------------------------------------------
   14. CTA + FOOTER
   -------------------------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; }
.cta-band .eyebrow { color: rgba(251,250,247,.8); justify-content: center; }
.cta-band h2 { font-size: var(--fs-h2); color: var(--paper); max-width: 20ch; margin: .9rem auto 0; }
.cta-band p { color: rgba(251,250,247,.82); max-width: 50ch; margin: 1.1rem auto 0; }
.cta-band .hero__cta { justify-content: center; }

.footer { background: var(--ink); color: rgba(251,250,247,.76); padding-block: clamp(3rem, 6vw, 4.25rem) 2rem;
          border-top: 1px solid var(--hair-on-ink); font-size: .93rem; }
.footer a { color: rgba(251,250,247,.76); text-decoration: none; }
.footer a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.footer__grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer h2 { font-size: 1.02rem; color: var(--paper); margin-bottom: .9rem; font-weight: 500; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .1rem; }
.footer ul a { display: inline-flex; align-items: center; min-height: 44px; }
.footer .logo { margin-right: 0; padding-block: 0; }
.footer .logo__name { color: var(--paper); }
.footer .logo__role { color: rgba(251,250,247,.62); }
.footer__brand p { margin-top: 1rem; max-width: 36ch; }
.footer__bar {
  margin-top: 2.75rem; padding-top: 1.4rem; border-top: 1px solid var(--hair-on-ink);
  display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; align-items: center; font-size: .84rem;
}
.footer__bar p:first-child { margin-right: auto; }

/* --------------------------------------------------------------------------
   15. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-shown="true"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --------------------------------------------------------------------------
   16. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .header__actions, .burger, .mobile-menu, .form, .cta-band { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
