/* ============================================================
   IRYNA Extensions — single-page stylesheet
   Aesthetic: chocolate / cream, script + serif + sans, minimal
   ============================================================ */

:root {
  --bg:           #1f1816;
  --bg-2:         #261d1a;
  --bg-3:         #2c2220;
  --line:         #3a2d28;
  --line-strong:  #c9b6a2;
  --text:         #f5efe7;
  --text-muted:   #b9a896;
  --text-dim:     #8b7a6c;
  --white:        #ffffff;
  --accent:       #c9b6a2;

  --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --maxw:         1140px;
  --section-pad:  clamp(56px, 8vw, 100px);
  --gutter:       clamp(20px, 4vw, 48px);

  --transition:   220ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- typography ---------- */
.serif         { font-family: var(--font-serif); font-weight: 400; letter-spacing: .005em; }
.script        { font-family: var(--font-sans); font-style: normal; font-weight: 300; }

h1, h2, h3, h4 { margin: 0 0 .35em; line-height: 1.15; color: var(--white); font-weight: 400; }
h2.serif {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .005em;
}
h3.serif { font-size: clamp(22px, 2vw, 26px); letter-spacing: .01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.lede {
  color: var(--text-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  max-width: 540px;
  line-height: 1.7;
}

.section-lede {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 14px auto 0;
}

.muted { color: var(--text-muted); }

/* ---------- layout primitives ---------- */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-head {
  margin-bottom: clamp(32px, 4.5vw, 56px);
}
.section-head.centered { text-align: center; }
.section-head.centered .section-lede { margin-left: auto; margin-right: auto; }

.hairline {
  height: 1px;
  background: var(--line-strong);
  opacity: .55;
  margin: 36px auto 0;
  max-width: 100%;
}
.hairline.thin {
  opacity: .25;
  margin: 18px 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { background: var(--white); border-color: var(--white); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--line-strong); color: var(--bg); }
.btn-block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(31, 24, 22, 0);
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(31, 24, 22, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(201, 182, 162, .12);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--white);
}
.brand-mark {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .38em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .42em;
  color: var(--text-muted);
  margin-top: 4px;
}

.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.primary-nav a {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition), left var(--transition);
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--white);
}
.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
  left: 0;
}
.primary-nav a.nav-cta {
  color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 18px;
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,24,22,.55) 0%, rgba(31,24,22,.85) 70%, var(--bg) 100%),
    url('assets/hero.jpg') center/cover no-repeat,
    radial-gradient(ellipse at 30% 20%, #3a2a24, var(--bg) 70%);
  z-index: -1;
}
.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero h1.display {
  margin: 0 0 24px;
  color: var(--white);
}
.hero h1 .script {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(52px, 7vw, 88px);
  display: block;
  line-height: 1.05;
  letter-spacing: .005em;
}
.hero h1 .block {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(32px, 4.3vw, 52px);
  display: block;
  letter-spacing: .005em;
  margin-top: 0;
}
.hero .lede {
  margin: 0 auto 36px;
  text-align: center;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--text-muted);
  border-radius: 14px;
  opacity: .7;
}
.scroll-cue span {
  display: block;
  width: 2px; height: 6px;
  background: var(--text);
  margin: 6px auto;
  border-radius: 2px;
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-portrait { margin: 0; }
.image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, #2a201d 0%, #1f1816 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.image-frame::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-copy p { color: var(--text-muted); font-size: 16px; line-height: 1.85; }
.about-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.about-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
}
.about-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .8em;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.section-experience { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); max-width: none; padding-left: var(--gutter); padding-right: var(--gutter); }
.section-experience > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 182, 162, .25);
  border-bottom: 1px solid rgba(201, 182, 162, .25);
}
.step {
  padding: 40px 28px;
  border-right: 1px solid rgba(201, 182, 162, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.step:last-child { border-right: 0; }
.step-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .25em;
}
.step h3 { margin: 0; }
.step p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   SERVICES (catalogue style)
   ============================================================ */
.section-services .section-lede { max-width: 640px; margin: 14px auto 0; }

.service-group {
  max-width: 980px;
  margin: 0 auto 56px;
}
.service-group:last-of-type { margin-bottom: 32px; }

.service-group-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201, 182, 162, .22);
}
.service-group-head .kicker { margin-bottom: 10px; }
.service-group-head h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .005em;
  margin: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.service-cards.single { grid-template-columns: 1fr; }

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.service-card-head h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: .005em;
  line-height: 1.2;
}
.service-weight {
  color: var(--text-muted);
  font-size: .82em;
  font-style: italic;
}
.service-price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: .01em;
}
.service-price sup {
  font-size: .55em;
  vertical-align: super;
  opacity: .8;
  margin-left: 1px;
}
.service-unit {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-left: 4px;
  font-weight: 400;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}
.service-meta {
  list-style: none;
  margin: auto 0 0;
  padding: 14px 0 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.service-meta li {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.services-cta {
  text-align: center;
  margin-top: 24px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.section-reviews { max-width: none; padding-left: 0; padding-right: 0; }
.section-reviews > .section-head {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}

.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.reviews-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.reviews-stars .star.filled { color: var(--accent); }
.reviews-stars .star.empty  { color: var(--text-dim); opacity: .55; }

.reviews-carousel {
  position: relative;
  padding: 0 clamp(60px, 7vw, 96px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 20px;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: start;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
}
.review-stars {
  display: flex;
  gap: 3px;
  font-size: 16px;
  line-height: 1;
}
.review-stars .star.filled { color: var(--accent); }
.review-stars .star.empty  { color: var(--text-dim); opacity: .45; }

.review-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.review-quote::before { content: '“'; margin-right: 2px; color: var(--accent); }
.review-quote::after  { content: '”'; margin-left: 2px; color: var(--accent); }

.review-name {
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}
.reviews-arrow:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.reviews-arrow:disabled { opacity: .25; cursor: not-allowed; }
.reviews-prev { left: 12px; }
.reviews-next { right: 12px; }

.reviews-loading {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

/* ============================================================
   IG CTA LOGO (under gallery feed)
   ============================================================ */
.ig-cta-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--text);
  transition: color var(--transition);
}
.ig-cta-logo:hover { color: var(--accent); }
.ig-cta-handle {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.section-map {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 380px;
  border-top: 1px solid var(--line);
}
.map-frame {
  position: relative;
  background: var(--bg-3);
  overflow: hidden;
  min-height: 380px;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.35) contrast(1.05);
}
.map-info {
  background: var(--bg-2);
  padding: 48px clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.map-info .kicker { margin-bottom: 2px; }
.map-info h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
}
.map-address {
  font-style: normal;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.map-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 4px 0 6px;
}
.map-info .btn { align-self: flex-start; margin-top: 6px; }

@media (max-width: 720px) {
  .section-map { grid-template-columns: 1fr; min-height: 0; }
  .map-frame { min-height: 280px; }
  .map-info { padding: 36px var(--gutter); }
}

/* ============================================================
   FOOTER SOCIALS
   ============================================================ */
.footer-socials {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-slider {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  user-select: none;
  --pos: 50%;
}
.ba-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
}
.ba-after {
  filter: none;
}
.ba-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
/* placeholder text when bg image missing */
.ba-img[data-placeholder]::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255,255,255,.85);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(0,0,0,.45);
}
.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}
.ba-handle::before {
  left: 10px;
  border-right: 6px solid var(--bg);
}
.ba-handle::after {
  right: 10px;
  border-left: 6px solid var(--bg);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 10px;
  background: rgba(31, 24, 22, .55);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }

/* ============================================================
   INSTAGRAM GALLERY (Elfsight feed)
   ============================================================ */
.section-gallery { max-width: none; padding-left: 0; padding-right: 0; }
.section-gallery > .section-head { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }

/* Elfsight Instagram feed wrapper — constrain to content width */
.ig-feed { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.ig-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============================================================
   AFTERCARE JOURNAL
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.journal-card,
.policy-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color var(--transition);
}
.journal-card[open],
.policy-item[open] { border-color: var(--accent); }

.journal-card summary,
.policy-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.journal-card summary::-webkit-details-marker,
.policy-item summary::-webkit-details-marker { display: none; }

.journal-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .25em;
}
.journal-title {
  font-size: 20px;
  flex: 1;
}
.journal-chevron,
.policy-chevron {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--accent);
  transition: transform var(--transition);
  line-height: 1;
}
.journal-card[open] .journal-chevron,
.policy-item[open] .policy-chevron { transform: rotate(45deg); }

.journal-body,
.policy-body {
  padding: 0 32px 28px 32px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ============================================================
   APPOINTMENTS
   ============================================================ */
.appt-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.appt-copy p { color: var(--text-muted); font-size: 16px; line-height: 1.85; }
.appt-address {
  color: var(--text);
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.appt-address strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .02em;
  display: inline-block;
  margin-bottom: 8px;
  color: var(--white);
}
.appt-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.appt-side {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.appt-side h3 { color: var(--white); margin-bottom: 22px; font-size: 22px; }
.appt-facts {
  list-style: none;
  margin: 0; padding: 0;
}
.appt-facts li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.appt-facts li:first-child { border-top: 0; padding-top: 0; }
.appt-facts li > span:first-child {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
}
.appt-facts li > span:last-child { color: var(--text); text-align: right; }

/* ============================================================
   POLICIES
   ============================================================ */
.policy-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.policy-title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--white);
  flex: 1;
  letter-spacing: .01em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

.contact-form { display: grid; gap: 22px; }
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--text-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: .01em;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
                    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.contact-form select option { background: var(--bg-2); color: var(--text); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); letter-spacing: 0; text-transform: none; font-size: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.hp-field { position: absolute; left: -9999px; }

.form-status {
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .15em;
  text-align: center;
}
.form-status.is-error {
  border-color: #c9736b;
  color: #d98a82;
}

.contact-side {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.contact-side h3 { color: var(--white); font-size: 22px; margin-bottom: 24px; }
.contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 22px;
}
.contact-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-list a { color: var(--text); font-size: 15px; }
.contact-list a:hover { color: var(--accent); }
.contact-hours {
  margin-top: 26px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: #181210;
  padding: 60px var(--gutter) 40px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.footer-brand { display: inline-flex; flex-direction: column; line-height: 1; align-items: center; }
.footer-brand .brand-sub { padding-left: 0; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--white); }
.footer-meta {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.8;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35), 0 4px 12px rgba(0,0,0,.4);
  z-index: 40;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 36px rgba(37, 211, 102, .45), 0 6px 16px rgba(0,0,0,.5);
  color: #ffffff;
}

/* ============================================================
   FADE-IN ON SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid rgba(201, 182, 162, .15); }

  .about-grid,
  .appt-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .journal-grid { grid-template-columns: 1fr; }

  .ba-grid { grid-template-columns: 1fr 1fr; }

  .reviews-track { grid-auto-columns: calc((100% - 24px) / 2); }

  .service-cards { grid-template-columns: 1fr; }
  .service-group { max-width: 720px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 0;
    background: rgba(31, 24, 22, .98);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.4, 0, .2, 1);
    z-index: 55;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    gap: 28px;
  }
  .primary-nav a {
    font-size: 14px;
    letter-spacing: .35em;
  }

  .hero { padding-top: 120px; min-height: 92vh; }
  .hero-actions .btn { padding: 14px 22px; font-size: 11px; }

  .about-bullets { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid rgba(201, 182, 162, .15); padding: 36px 0; }
  .step:last-child { border-bottom: 0; }

  .ba-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .reviews-track { grid-auto-columns: 88%; }
  .reviews-carousel { padding: 0 var(--gutter); }
  .reviews-arrow { width: 40px; height: 40px; }
  .reviews-prev { left: 4px; }
  .reviews-next { right: 4px; }

  .service-card { padding: 24px 22px; }
  .service-card-head { flex-wrap: wrap; }
  .service-meta { gap: 12px; }

  .whatsapp-fab { width: 52px; height: 52px; right: 18px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
