/* ============================================================
   Uzman Klinik Psikolog Aslı Helvacıoğlu
   "Zihnin ipuçları" — woven-mind concept
   Design system: warm ink / clay / sand / sage
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #1F1B1A;
  --ink-soft:   #2E2725;
  --ink-line:   #3A302D;
  --clay:       #C05B45;
  --clay-deep:  #9C4632;
  --clay-soft:  #D98872;
  --sand:       #F3EBE0;
  --sand-2:     #EADFCF;
  --sand-3:     #E1D3BE;
  --sage:       #77826B;
  --sage-deep:  #5C6653;
  --sage-soft:  #A7AE9C;
  --blush:      #E7C7BA;
  --paper:      #FBF7F0;

  --txt:        #241E1C;
  --txt-soft:   #5B524D;
  --txt-inv:    #F3EBE0;
  --txt-inv-soft:#C4B6A6;

  --wa:         #25D366;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gut: clamp(1.25rem, 4vw, 4rem);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow-sm: 0 2px 10px rgba(31,27,26,.06);
  --shadow-md: 0 18px 46px -22px rgba(31,27,26,.35);
  --shadow-lg: 0 40px 90px -40px rgba(31,27,26,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--txt);
  background: var(--sand);
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.015em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1rem; }
::selection { background: var(--clay); color: var(--sand); }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.dark .eyebrow { color: var(--clay-soft); }

.display {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: .98;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: var(--txt-soft);
  line-height: 1.6;
  max-width: 56ch;
}
.dark .lead { color: var(--txt-inv-soft); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* thread hairline divider */
.thread {
  display: block; width: 100%; height: 26px;
  color: var(--sage-soft);
  overflow: visible;
}
.dark .thread { color: var(--ink-line); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--clay);
  --fg: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .01em;
  padding: .92rem 1.6rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bg);
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost {
  --bg: transparent;
  --fg: var(--txt);
  border-color: rgba(36,30,28,.28);
}
.btn--ghost:hover { border-color: var(--clay); color: var(--clay-deep); }
.dark .btn--ghost { --fg: var(--sand); border-color: rgba(243,235,224,.32); }
.dark .btn--ghost:hover { color: var(--clay-soft); border-color: var(--clay-soft); }
.btn--sage { --bg: var(--sage-deep); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; color: var(--clay-deep);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { gap: .85rem; border-color: var(--clay); }
.dark .link-arrow { color: var(--clay-soft); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--sand) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: rgba(36,30,28,.1);
  background: color-mix(in srgb, var(--sand) 94%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.brand { display: flex; align-items: center; gap: .8rem; line-height: 1; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--clay-soft);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; letter-spacing: -.02em; }
.brand__role {
  display: block;
  font-family: var(--sans); font-weight: 800;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--clay-deep); margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 700; font-size: .95rem;
  padding: .5rem .85rem; border-radius: 100px;
  color: var(--txt-soft);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__links a:hover { color: var(--txt); background: rgba(192,91,69,.09); }
.nav__links a[aria-current="page"] { color: var(--clay-deep); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__panel { display: none; }
.nav__toggle {
  display: none; width: 46px; height: 46px;
  border: 1px solid rgba(36,30,28,.16); border-radius: 12px;
  background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--txt);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { transform: rotate(45deg); }
.nav.open .nav__toggle span::after { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links, .nav .nav__cta--desktop { display: none; }
  .nav__panel {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(36,30,28,.12);
    padding: 1rem var(--gut) 1.75rem;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav__panel { display: block; }
  .nav__panel .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__panel .nav__links a { padding: .85rem .5rem; font-size: 1.08rem; border-bottom: 1px solid rgba(36,30,28,.07); border-radius: 0; }
  .nav__panel .nav__cta { display: flex; margin-top: 1.1rem; gap: .6rem; }
  .nav__panel .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); overflow-x: clip; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__text { min-width: 0; }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { color: var(--clay); font-style: italic; }
.hero__lead { margin-bottom: 2.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.hero__meta {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(36,30,28,.14);
}
.hero__meta div { line-height: 1.15; }
.hero__meta b { font-family: var(--serif); font-size: 1.75rem; font-weight: 600; display: block; }
.hero__meta span { font-size: .82rem; color: var(--txt-soft); font-weight: 700; letter-spacing: .02em; }
.stars { color: var(--clay); letter-spacing: 2px; font-size: 1.1rem; }

/* hero visual: portrait joined to mind artwork by threads */
.hero__visual { position: relative; }
.hero__portrait {
  position: relative; z-index: 2;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--sand-3);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero__mind {
  position: absolute; z-index: 1;
  width: 46%; aspect-ratio: 4/5;
  right: -6%; bottom: -8%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--sand);
  background: var(--clay);
}
.hero__mind img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; z-index: 3; top: 6%; left: -7%;
  background: var(--ink); color: var(--sand);
  border-radius: 100px; padding: .7rem 1.15rem;
  display: flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: .8rem; letter-spacing: .02em;
  box-shadow: var(--shadow-md);
}
.hero__badge svg { width: 16px; height: 16px; color: var(--clay-soft); }
.hero__threads { position: absolute; inset: -6% -8%; z-index: 0; color: var(--sage); pointer-events: none; opacity: .55; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: minmax(0,1fr); }
  .hero__visual { max-width: 480px; margin-inline: auto; order: -1; }
  .hero__badge { left: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip {
  background: var(--ink);
  color: var(--txt-inv);
}
.strip__row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 2rem;
  align-items: center;
}
.strip__item { display: flex; align-items: center; gap: .8rem; font-weight: 700; }
.strip__item svg { width: 26px; height: 26px; color: var(--clay-soft); flex: none; }
.strip__item span { font-size: .96rem; }
.strip__item b { color: var(--sand); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.sec-head .eyebrow { margin-bottom: 1.2rem; }
.sec-head h2 { margin-bottom: 1.1rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ============================================================
   APPROACH CARDS (threaded)
   ============================================================ */
.approach { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; position: relative; }
.approach::before {
  content: ""; position: absolute; top: 46px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--sage-soft) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.card-approach {
  position: relative; z-index: 1;
  background: var(--paper);
  border: 1px solid rgba(36,30,28,.08);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card-approach:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-approach__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sand-2); color: var(--clay-deep);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(192,91,69,.25);
}
.card-approach h3 { margin-bottom: .6rem; font-size: 1.3rem; }
.card-approach p { color: var(--txt-soft); margin: 0; font-size: .98rem; }

@media (max-width: 820px){
  .approach { grid-template-columns: 1fr; }
  .approach::before { display: none; }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.svc {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(36,30,28,.08);
  border-radius: var(--r-lg);
  padding: 2rem 1.9rem 2.2rem;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--clay); transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc:hover::after { transform: scaleY(1); }
.svc__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--sand-2); color: var(--clay-deep);
  display: grid; place-items: center; margin-bottom: 1.4rem;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.svc__icon svg { width: 28px; height: 28px; }
.svc:hover .svc__icon { background: var(--clay); color: var(--sand); }
.svc h3 { font-size: 1.32rem; margin-bottom: .55rem; }
.svc p { color: var(--txt-soft); font-size: .96rem; margin: 0 0 1.2rem; }
.svc__tag {
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage-deep);
}

@media (max-width: 900px){ .services { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .services { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURE / QUOTE (dark, artwork)
   ============================================================ */
.feature {
  background: var(--ink);
  color: var(--txt-inv);
  position: relative; overflow: hidden;
}
.feature__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.feature__art {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4; background: #000;
}
.feature__art img { width: 100%; height: 100%; object-fit: cover; }
.feature__quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem); line-height: 1.22;
  color: var(--sand); margin: 0 0 1.6rem;
}
.feature__quote span { color: var(--clay-soft); }
.feature__cite { font-weight: 800; letter-spacing: .04em; color: var(--txt-inv-soft); font-size: .9rem; }
@media (max-width: 820px){ .feature__grid { grid-template-columns: 1fr; } .feature__art { order: -1; } }

/* ============================================================
   PROCESS (numbered timeline — real sequence)
   ============================================================ */
.process { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: clamp(1rem,3vw,2.5rem);
  padding: 2rem 0; position: relative;
  border-top: 1px solid rgba(36,30,28,.13);
}
.step:last-child { border-bottom: 1px solid rgba(36,30,28,.13); }
.step__n {
  font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 500; color: var(--clay); line-height: 1;
}
.step__body h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.step__body p { color: var(--txt-soft); margin: 0; max-width: 60ch; }
.step:hover .step__n { color: var(--clay-deep); }
@media (max-width: 620px){ .step { grid-template-columns: 56px 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.quote-card {
  background: var(--paper);
  border: 1px solid rgba(36,30,28,.08);
  border-radius: var(--r-lg);
  padding: 2.3rem 2.1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card__mark { font-family: var(--serif); font-size: 3.5rem; line-height: .5; color: var(--clay-soft); height: 28px; display: block; }
.quote-card p { font-size: 1.08rem; color: var(--txt); margin: 0 0 1.4rem; }
.quote-card__by { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.quote-card__by b { font-weight: 800; }
.quote-card__by .stars { font-size: .95rem; }
@media (max-width: 700px){ .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT TEASER / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split--rev { grid-template-columns: 1.1fr .9fr; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split__media--framed { padding: 0; }
.split__tagpill {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--sand); color: var(--txt);
  padding: .7rem 1.1rem; border-radius: 100px; font-weight: 800; font-size: .85rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: .5rem;
}
.split__tagpill svg { width: 16px; height: 16px; color: var(--clay); }
.split__body h2 { margin-bottom: 1.2rem; }
.split__body p { color: var(--txt-soft); }
.split__body .btn { margin-top: 1rem; }
.checklist { list-style: none; margin: 1.4rem 0 1.6rem; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; }
.checklist svg { width: 22px; height: 22px; color: var(--clay); flex: none; margin-top: 2px; }
@media (max-width: 820px){ .split, .split--rev { grid-template-columns: 1fr; } .split__media { order: -1; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--clay);
  color: var(--sand);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem,6vw,4.5rem);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--sand); margin-bottom: 1rem; font-size: clamp(2rem,4vw,3.2rem); }
.cta-band p { color: rgba(243,235,224,.9); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn--ghost { --fg: var(--sand); border-color: rgba(243,235,224,.55); }
.cta-band .btn--ghost:hover { background: rgba(243,235,224,.12); color: var(--sand); border-color: var(--sand); }
.cta-band .btn:not(.btn--ghost) { --bg: var(--ink); --fg: var(--sand); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { background: var(--ink); color: var(--txt-inv); padding-block: clamp(3.5rem,7vw,6rem); position: relative; overflow: hidden; }
.page-hero__inner { max-width: 62ch; position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 1.3rem; color: var(--clay-soft); }
.page-hero h1 { font-size: clamp(2.4rem,5.5vw,4.4rem); margin-bottom: 1.2rem; }
.page-hero h1 em { color: var(--clay-soft); font-style: italic; }
.page-hero p { color: var(--txt-inv-soft); font-size: 1.15rem; max-width: 54ch; }
.page-hero__art {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: 40%; max-width: 460px; opacity: .5; z-index: 1;
  mask-image: linear-gradient(to left, #000 40%, transparent);
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent);
}
@media (max-width: 820px){ .page-hero__art { display: none; } }
.crumbs { font-size: .85rem; font-weight: 700; color: var(--txt-inv-soft); margin-bottom: 1.5rem; letter-spacing: .02em; }
.crumbs a:hover { color: var(--clay-soft); }
.crumbs span { opacity: .5; margin-inline: .5rem; }

/* ============================================================
   PROSE (about / long text)
   ============================================================ */
.prose { max-width: 68ch; }
.prose p { font-size: 1.08rem; color: var(--txt); margin-bottom: 1.3rem; }
.prose h2 { margin: 2.6rem 0 1rem; font-size: clamp(1.7rem,3vw,2.4rem); }
.prose h3 { margin: 2rem 0 .8rem; font-size: 1.35rem; }
.prose .lead { color: var(--txt); font-size: 1.3rem; margin-bottom: 1.8rem; }

/* credentials / facts list */
.facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 2rem 0; }
.fact {
  background: var(--paper); border: 1px solid rgba(36,30,28,.08);
  border-radius: var(--r-md); padding: 1.3rem 1.4rem;
}
.fact b { font-family: var(--serif); font-size: 1.05rem; display: block; margin-bottom: .2rem; }
.fact span { color: var(--txt-soft); font-size: .92rem; }
@media (max-width: 560px){ .facts { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(36,30,28,.13); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.4rem); font-weight: 500;
  color: var(--txt); padding: 1.5rem 3rem 1.5rem 0; position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__q::after {
  content: "+"; font-family: var(--sans); font-weight: 400; font-size: 1.8rem;
  color: var(--clay); transition: transform .35s var(--ease); line-height: 1;
}
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq__a p { color: var(--txt-soft); padding: 0 0 1.6rem; margin: 0; max-width: 65ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); }
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--paper); border: 1px solid rgba(36,30,28,.08);
  border-radius: var(--r-lg); padding: 1.6rem 1.7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card__icon {
  width: 50px; height: 50px; flex: none; border-radius: 14px;
  background: var(--sand-2); color: var(--clay-deep);
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.contact-card p, .contact-card a { color: var(--txt-soft); margin: 0; font-size: .98rem; }
.contact-card a:hover { color: var(--clay-deep); }

.map-frame {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(36,30,28,.1);
  box-shadow: var(--shadow-sm); min-height: 340px; height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.15) contrast(.98); }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed rgba(36,30,28,.15); font-size: .96rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list b { font-weight: 800; }
.hours-list .closed { color: var(--clay-deep); }

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.floating {
  position: fixed; right: clamp(.9rem, 2vw, 1.6rem); bottom: clamp(.9rem, 2vw, 1.6rem);
  z-index: 80; display: flex; flex-direction: column; gap: .7rem; align-items: flex-end;
}
.fab {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.15rem; border-radius: 100px;
  font-family: var(--sans); font-weight: 800; font-size: .9rem;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.fab svg { width: 22px; height: 22px; flex: none; }
.fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.fab--wa { background: var(--wa); }
.fab--wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.6s infinite; z-index: -1;
}
.fab--wa { position: relative; }
.fab--rdv { background: var(--clay); }
.fab__label { white-space: nowrap; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }
@media (prefers-reduced-motion: reduce){ .fab--wa::before { animation: none; } }
@media (max-width: 520px){
  .fab__label { display: none; }
  .fab { padding: .85rem; width: 52px; height: 52px; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--txt-inv); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand .brand__name { color: var(--sand); }
.footer__brand p { color: var(--txt-inv-soft); margin: 1rem 0 1.4rem; max-width: 34ch; font-size: .96rem; }
.footer h4 { font-family: var(--sans); font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-soft); margin-bottom: 1.2rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer ul a, .footer__contact li { color: var(--txt-inv-soft); font-size: .95rem; }
.footer ul a:hover { color: var(--sand); }
.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--clay-soft); flex: none; margin-top: 3px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid var(--ink-line);
  color: var(--txt-inv-soft); font-size: .85rem;
}
.footer__socials { display: flex; gap: .6rem; }
.footer__socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--ink-line); display: grid; place-items: center; color: var(--txt-inv-soft); transition: all .3s var(--ease); }
.footer__socials a:hover { background: var(--clay); color: var(--sand); border-color: var(--clay); }
.footer__socials svg { width: 18px; height: 18px; }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.bg-sand2 { background: var(--sand-2); }
.dark { background: var(--ink); color: var(--txt-inv); }
