/* Hair Co. Care (v2) design tokens — baby-blue edition. The CMS Theme tab
   maps onto these custom properties. */
:root {
  --color-primary: #2380bf;        /* darker sky blue accent */
  --color-primary-dark: #17618f;   /* header band / hovers */
  --color-primary-soft: #9fcde9;
  --color-secondary: #0f2f47;      /* deep sky-blue ink */
  --color-default: #3a4c5a;
  --color-surface: #cde4f4;        /* sky blue band */
  --color-surface-2: #e8f3fb;      /* whisper blue */
  --color-muted: #74899a;
  --font-default: 'Jost', sans-serif;
  --font-primary: 'Jost', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --radius: 6px;
  --oval: 999px; /* capsule frame, matching the hero portrait */
  --arch: 999px 999px 8px 8px;
  --section-max-width: 1200px;
  --section-pad-y: 96px;
  --base-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: var(--base-size); scroll-behavior: smooth; }
body { font-family: var(--font-default); color: var(--color-default); line-height: 1.75; background: #fdfefe; font-weight: 300; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.14; color: var(--color-secondary); font-weight: 500; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }

.container { max-width: var(--section-max-width); margin: 0 auto; padding: 0 28px; }
section { padding: var(--section-pad-y) 0; }
section.tinted { background: var(--color-surface-2); }

.btn {
  display: inline-block; background: var(--color-secondary); color: #fff; font-family: var(--font-default);
  font-weight: 500; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 1.05rem 2.2rem; border-radius: var(--radius);
  border: 1px solid var(--color-secondary); cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-secondary); }
.btn.ghost { background: #fff; color: var(--color-secondary); border-color: #fff; }
.btn.ghost:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

.eyebrow { color: var(--color-primary); font-weight: 600; text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; }
.section-head { max-width: 660px; margin-bottom: 54px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 2.9rem; margin: .5rem 0 .8rem; }
.section-head p { color: var(--color-muted); }

/* ── Header: floats transparent over the hero, dark sky blue elsewhere/on scroll ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--color-primary-dark); color: #fff;
  transition: box-shadow .35s ease, background .35s ease;
}
.site-header:has(+ .hero):not(.scrolled) { background: transparent; }
.site-header.scrolled { background: var(--color-primary-dark); box-shadow: 0 12px 34px rgba(15, 47, 71, .25); }
/* content after the header needs an offset — except the hero, which slides underneath */
.site-header + :not(.hero) { margin-top: 86px; }
.site-header .logo, .site-header .logo b, .site-header .nav a { color: #fff; }
.site-header .nav a::after { background: #fff; }
.site-header .nav a:hover { color: #fff; }
.site-header .nav a.router-link-exact-active { color: #fff; }
.site-header .nav .cart .count { background: #fff; color: var(--color-primary-dark); }
.site-header .menu-btn { background: transparent; border-color: rgba(255, 255, 255, .55); }
.site-header .menu-btn span { background: #fff; }
.site-header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; height: 86px; transition: height .35s ease; }
.site-header.scrolled .container { height: 70px; }
.logo-slot { text-align: center; }
.logo { font-family: var(--font-heading); font-weight: 600; font-size: 1.6rem; color: var(--color-secondary); letter-spacing: .01em; }
.logo b { color: var(--color-primary); }
.nav { display: flex; gap: 2.2rem; font-size: .95rem; font-weight: 400; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; align-items: center; }
.nav .cart { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-size: 1.05rem; padding: .3rem 0; }
.nav .cart .count {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-secondary); color: #fff; font-family: var(--font-default); font-size: .72rem; font-weight: 500;
}
.nav a { position: relative; padding: .3rem 0; font-family: var(--font-heading); font-size: 1.05rem; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-secondary); transition: width .3s ease; }
.nav a:hover { color: var(--color-secondary); }
.nav a:hover::after { width: 100%; }
.nav a.router-link-exact-active { color: var(--color-secondary); font-weight: 500; }
.nav a.router-link-exact-active::after { width: 100%; }
.site-header .btn { padding: .85rem 1.7rem; font-size: .72rem; background: #fff; color: var(--color-secondary); border-color: #fff; }
.site-header .btn:hover { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

/* Mobile menu */
.menu-btn { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid rgba(20,36,46,.18); border-radius: var(--radius); background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--color-secondary); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.site-header.open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.open .menu-btn span:nth-child(2) { opacity: 0; }
.site-header.open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-panel { display: none; border-top: 1px solid rgba(255,255,255,.14); background: var(--color-primary-dark); padding: 1.2rem 28px 1.6rem; box-shadow: 0 20px 40px rgba(15, 47, 71, .3); }
.mobile-nav { display: grid; gap: .35rem; margin-bottom: 1.1rem; }
.mobile-nav a { padding: .7rem .95rem; border-radius: var(--radius); font-weight: 400; color: #fff; font-family: var(--font-heading); font-size: 1.1rem; }
.mobile-nav a:hover { background: rgba(255,255,255,.08); }
.mobile-nav a.router-link-exact-active { background: rgba(255,255,255,.14); color: #fff; font-weight: 500; }
.mobile-panel .btn { background: #fff; color: var(--color-primary-dark); border-color: #fff; }
.drop-enter-active, .drop-leave-active { transition: opacity .25s ease, transform .25s ease; }
.drop-enter-from, .drop-leave-to { opacity: 0; transform: translateY(-8px); }
@media (max-width: 900px) {
  .nav { display: none; }
  .site-header .container { grid-template-columns: auto 1fr auto; }
  .logo-slot { text-align: left; }
  .menu-btn { display: flex; }
  .mobile-panel { display: block; }
}

/* ── Hero: full-screen silver studio — center oval portrait, side cards ── */
.hero {
  --hero-ink: #10131c;
  padding: 86px 0 0; overflow: hidden; position: relative;
  min-height: 100vh;
  display: flex; align-items: stretch;
  background: #bfc3c8;
  color: #fff;
}
/* blurred salon photo drifting behind everything */
.hero::before {
  content: ''; position: absolute; inset: -12%; z-index: 0;
  background: url('/assets/images/hero.jpg') center / cover no-repeat;
  filter: blur(40px) saturate(1.15);
  animation: hero-bg-pan 32s ease-in-out infinite alternate;
}
/* silver overlay + faint dot pattern on top of the blur */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1.5px) 0 0 / 26px 26px,
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(255, 255, 255, .22), transparent 70%),
    linear-gradient(150deg, rgba(3, 34, 75, 0.85) 0%, rgba(179, 183, 189, 0.062) 55%, rgba(2, 28, 63, 0.85) 100%);
}
.hero-inner {
  width: min(120rem, 100%); margin: 0 auto;
  display: grid; position: relative; z-index: 1;
  grid-template-columns: 1.1fr minmax(320px, 1fr) 1.1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: 'left portrait right' 'tags portrait display';
  column-gap: 3vw; align-items: center;
  padding: 4vh 5vw 5vh;
}

/* left: tall thin headline + learn-more */
.hero .left { grid-area: left; align-self: center; animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both .15s; }
.hero h1 {
  font-family: var(--font-heading); font-weight: 400; color: #fff;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem); line-height: 1.08; letter-spacing: .01em;
  max-width: 10ch; margin-bottom: 2.2rem;
  text-shadow: 0 2px 24px rgba(16, 19, 28, .12);
}
.hero .learn-more {
  display: inline-block; color: #fff; font-size: .8rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: .45rem; border-bottom: 1px solid rgba(255, 255, 255, .85);
  transition: color .3s ease, border-color .3s ease, letter-spacing .3s ease;
}
.hero .learn-more:hover { color: var(--hero-ink); border-color: var(--hero-ink); letter-spacing: .3em; }

/* center: oval portrait with stat chip + book badge */
.hero .portrait { grid-area: portrait; position: relative; justify-self: center; align-self: center; width: 100%; max-width: 470px; padding-bottom: 3rem; }
.hero .portrait .oval {
  position: relative; width: 100%; aspect-ratio: 3 / 4.35; border-radius: 999px;
  overflow: hidden; background: #8d9197;
  outline: 1px solid rgba(255, 255, 255, .75); outline-offset: 14px;
  animation: hero-rise 1s cubic-bezier(.22, 1, .36, 1) both;
}
.hero .portrait .oval img { width: 100%; height: 100%; object-fit: cover; animation: hero-zoom 16s ease-in-out infinite alternate; }
.hero .portrait .chip {
  position: absolute; top: 14%; left: 12%; color: #fff;
  animation: hero-rise .8s cubic-bezier(.22, 1, .36, 1) both .7s;
}
.hero .portrait .chip b { display: block; font-family: var(--font-heading); font-weight: 500; font-size: 1.9rem; line-height: 1.1; }
.hero .portrait .chip span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.hero .shop-badge {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 112px; height: 112px; border-radius: 50%;
  background: var(--hero-ink); color: #fff;
  display: grid; place-content: center; text-align: center;
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 500;
  padding: 0 1.1rem; line-height: 1.7; z-index: 3;
  transition: transform .3s ease, background .3s ease, color .3s ease;
  animation: hero-pop .7s cubic-bezier(.22, 1, .36, 1) both .85s;
}
.hero .shop-badge:hover { transform: translateX(-50%) scale(1.1) rotate(-6deg); background: #fff; color: var(--hero-ink); }

/* right: blurb + white oval product card */
.hero .right { grid-area: right; justify-self: end; align-self: center; display: grid; justify-items: center; gap: 2.2rem; width: min(100%, 300px); }
.hero .blurb {
  text-align: center; font-size: .92rem; line-height: 1.7; color: #fff; max-width: 26ch;
  animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both .35s;
}
.hero .product-card {
  width: 100%; aspect-ratio: 1 / 1.45; border-radius: 50% / 42%;
  background: #f6f6f5; color: var(--hero-ink);
  display: grid; place-content: center; justify-items: center; gap: 1rem;
  text-align: center; padding: 2rem;
  box-shadow: 0 30px 60px rgba(16, 19, 28, .18);
  animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both .5s, hero-float 8s ease-in-out infinite alternate 1.6s;
}
.hero .product-card .card-eyebrow { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; }
.hero .product-card img { width: 96px; height: 96px; object-fit: cover; border-radius: 50%; }
.hero .product-card .card-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; line-height: 1.35; max-width: 14ch; }
.hero .product-card .spark { font-size: .85rem; }

/* bottom-left pill tags */
.hero .tags {
  grid-area: tags; align-self: end; display: flex; flex-wrap: wrap; gap: .6rem; align-items: center;
  animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both .6s;
}
.hero .tags .tag-lead {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--hero-ink);
  display: grid; place-items: center; font-size: .8rem;
}
.hero .tags .tag {
  padding: .55rem 1.15rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55); color: #fff; font-size: .82rem;
  backdrop-filter: blur(2px);
  transition: background .3s ease, color .3s ease;
}
.hero .tags .tag i { font-style: normal; }
.hero .tags .tag:hover { background: #fff; color: var(--hero-ink); }

/* bottom-right display headline, cropped by the fold */
.hero .display {
  grid-area: display; justify-self: end; align-self: end; text-align: right;
  font-family: var(--font-heading); font-weight: 400; color: #fff;
  font-size: clamp(2.4rem, 4.4vw, 4rem); line-height: 1.02; max-width: 12ch;
  margin-bottom: -1.2rem;
  animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both .75s;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-pop {
  from { opacity: 0; transform: translateX(-50%) scale(.5); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}
@keyframes hero-float {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
@keyframes hero-bg-pan {
  from { transform: translate(-2%, -2%) scale(1); }
  to { transform: translate(2%, 2%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .left, .hero .portrait .oval, .hero .portrait .oval img, .hero .portrait .chip,
  .hero .shop-badge, .hero .blurb, .hero .product-card, .hero .tags, .hero .display, .hero::before { animation: none; }
}
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr minmax(300px, .9fr) 1fr; }
  .hero .product-card { aspect-ratio: 1 / 1.3; }
}
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-inner {
    grid-template-columns: 1fr; grid-template-areas: 'left' 'portrait' 'right' 'tags';
    row-gap: 2.6rem; padding: 3rem 24px 4rem; text-align: center;
  }
  .hero h1 { max-width: none; margin-bottom: 1.6rem; }
  .hero .portrait { max-width: 320px; }
  .hero .right { justify-self: center; }
  .hero .tags { justify-content: center; }
  .hero .display { display: none; }
}

/* ── Services: divider rows + big circular photo with rotating badge ── */
.services .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center; }
.services .section-head { margin-bottom: 2.2rem; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; }
.service-card {
  background: transparent; border: 0; border-top: 1px solid rgba(20, 36, 46, .14);
  border-radius: 0; padding: 1.7rem .2rem; display: grid; grid-template-columns: 64px 1fr;
  gap: 1.1rem; align-items: start; transition: none; position: relative; overflow: visible;
}
.services-grid .service-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(20, 36, 46, .14); }
.service-card::after { display: none; }
.service-card:hover { transform: none; box-shadow: none; border-color: rgba(20, 36, 46, .14); }
.service-card .icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--color-surface);
  color: var(--color-secondary); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0; transition: background .35s ease;
}
.service-card:hover .icon { background: var(--color-primary); color: #fff; }
.service-card h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.service-card p { font-size: .92rem; color: var(--color-muted); }
.services .photo-wrap { position: relative; justify-self: center; }
.services .photo-wrap img {
  width: min(400px, 100%); aspect-ratio: 3 / 3.9; object-fit: cover; border-radius: var(--oval);
}

/* capsule frames get the hero's offset outline ring */
.services .photo-wrap img, .about .visual img, .member .photo, .stats .visuals img, .hours .visual img {
  outline: 1px solid rgba(20, 36, 46, .25); outline-offset: 12px;
}
.badge-spin {
  position: absolute; top: -46px; left: -46px; width: 130px; height: 130px; border-radius: 50%;
  background: var(--color-surface); display: grid; place-items: center; z-index: 2;
}
.badge-spin svg { position: absolute; inset: 0; animation: spin 14s linear infinite; }
.badge-spin svg text { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; fill: var(--color-secondary); font-family: var(--font-default); }
.badge-spin .play { width: 44px; height: 44px; border-radius: 50%; background: var(--color-secondary); color: #fff; display: grid; place-items: center; font-size: .8rem; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 980px) { .services .container { grid-template-columns: 1fr; } .services-grid { grid-template-columns: 1fr; } .services-grid .service-card:nth-last-child(-n+2) { border-bottom: 0; } .services-grid .service-card:last-child { border-bottom: 1px solid rgba(20,36,46,.14); } }

/* ── About: serif headline, 2-col icon features, overlapping ovals ── */
.about .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.8rem; align-items: center; }
.about .visual { position: relative; min-height: 480px; }
.about .visual::after { display: none; }
.about .visual img {
  position: absolute; width: 62%; aspect-ratio: 3 / 4.1; object-fit: cover;
  border-radius: var(--oval); box-shadow: none;
}
.about .visual img:first-child { left: 0; top: 6%; z-index: 1; }
.about .visual img.secondary { right: 0; bottom: 0; border: 8px solid #fff; z-index: 2; }
.about h2 { font-size: 2.9rem; margin: .5rem 0 1rem; }
.about p { color: var(--color-muted); margin-bottom: 1rem; max-width: 460px; }
.about ul { list-style: none; margin: 1.6rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2rem; }
.about li { padding-left: 2.4rem; position: relative; font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-secondary); }
.about li::before {
  content: '✦'; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--color-surface);
  color: var(--color-secondary); display: grid; place-items: center; font-size: .8rem;
}
@media (max-width: 900px) { .about .container { grid-template-columns: 1fr; } .about ul { grid-template-columns: 1fr; } }

/* ── Team: tall oval portraits ── */

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.member { text-align: center; }
.member .photo {
  width: 100%; aspect-ratio: 3 / 4.4; border-radius: var(--oval);
  overflow: hidden; margin-bottom: 1.2rem; background: var(--color-surface);
}
.member .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.member:hover .photo img { transform: scale(1.06); }
.member h3 { font-size: 1.3rem; }
.member p { font-size: .78rem; color: var(--color-muted); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ── Stats: overlapping ovals + rounded stat cards ── */
.stats { background: var(--color-surface-2); }
.stats .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3.6rem; align-items: center; }
.stats .visuals { position: relative; min-height: 520px; }
.stats .visuals img { position: absolute; width: 58%; aspect-ratio: 3 / 4.4; object-fit: cover; border-radius: var(--oval); }
.stats .visuals img:first-child { left: 0; top: 0; }
.stats .visuals img.secondary { right: 4%; bottom: 0; border: 8px solid var(--color-surface-2); z-index: 2; }
.stats .section-head { margin-bottom: 1.4rem; }
.stats .section-head h2 { color: var(--color-secondary); }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.stat {
  background: #fff; border-radius: 14px; padding: 1.6rem 2rem; display: flex; align-items: baseline; gap: 1.4rem;
  box-shadow: 0 14px 30px rgba(20, 36, 46, .06);
}
.stat b { font-family: var(--font-heading); font-weight: 500; font-size: 2.6rem; color: var(--color-secondary); }
.stat h3 { display: contents; }
.stat p { color: var(--color-default); font-size: 1.02rem; }
@media (max-width: 900px) { .stats .container { grid-template-columns: 1fr; } .stats .visuals { min-height: 380px; } }

/* ── Hours + appointments split with full-bleed photo ── */
.hours { padding: 0; background: #fff; }
.hours .container { max-width: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.hours .info { padding: 6rem 6vw 6rem max(28px, calc((100vw - var(--section-max-width)) / 2 + 28px)); }
.hours h2 { font-size: 2.7rem; margin-bottom: 2rem; }
.hours ul { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 3rem; max-width: 480px; }
.hours li { display: flex; align-items: baseline; gap: .8rem; font-size: .95rem; color: var(--color-default); }
.hours li .dots { flex: 1; border-bottom: 1px dashed rgba(20, 36, 46, .25); transform: translateY(-4px); }
.hours .reach { display: grid; gap: .5rem; margin-bottom: 2rem; color: var(--color-muted); }
.hours .reach b { font-weight: 400; color: var(--color-secondary); }
.hours .visual { display: flex; padding: 3rem; }
.hours .visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--oval); }
@media (max-width: 900px) { .hours .container { grid-template-columns: 1fr; } .hours .visual { height: 400px; padding: 2rem 28px; } .hours .info { padding: 3.4rem 28px; } }

/* ── Pricing ── */
.price-list { max-width: 780px; margin: 0 auto; }
.price-row { display: flex; align-items: baseline; gap: 1.2rem; padding: 1.35rem .2rem; border-bottom: 1px solid rgba(20, 36, 46, .12); }
.price-item h3 { font-size: 1.3rem; }
.price-item p { color: var(--color-muted); font-size: .9rem; }
.price-row .dots { flex: 1; border-bottom: 1px dashed rgba(20, 36, 46, .3); transform: translateY(-6px); }
.price-row .price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-secondary); }

/* ── Testimonials ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review { background: #fff; border: 1px solid rgba(20, 36, 46, .08); border-radius: 14px; padding: 2.2rem 1.9rem; box-shadow: 0 18px 40px rgba(20, 36, 46, .05); }
.review .stars { color: var(--color-primary); letter-spacing: .2em; margin-bottom: 1rem; }
.review blockquote { font-family: var(--font-heading); font-size: 1.12rem; color: var(--color-secondary); margin-bottom: 1.4rem; line-height: 1.5; }
.review .who { display: flex; flex-direction: column; }
.review .who span:first-child { font-weight: 500; color: var(--color-secondary); }
.review .who span:last-child { font-size: .8rem; color: var(--color-muted); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── CTA band ── */
.cta-band {
  background:
    linear-gradient(100deg, rgba(20, 36, 46, .93) 0%, rgba(20, 36, 46, .8) 50%, rgba(121, 184, 221, .5) 130%),
    url('/assets/images/cta.jpg') center 40% / cover no-repeat;
  border-radius: 18px; padding: 4.2rem 3.2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: 2.3rem; max-width: 560px; font-weight: 500; }
.cta-band p { color: rgba(255, 255, 255, .68); }
.cta-band .btn { margin-left: auto; background: var(--color-primary); color: var(--color-secondary); border-color: var(--color-primary); }
.cta-band .btn:hover { background: #fff; border-color: #fff; }
@media (max-width: 700px) { .cta-band .btn { margin-left: 0; } }

/* ── Blog: 3 journal cards with arch covers + category chips ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.blog-card { text-align: center; }
.blog-card .cover {
  position: relative; aspect-ratio: 3 / 3.6; border-radius: var(--arch);
  overflow: hidden; margin-bottom: 1.4rem;
  outline: 1px solid rgba(15, 47, 71, .25); outline-offset: 12px;
}
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .cover img { transform: scale(1.06); }
.blog-card .category {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  background: #fff; color: var(--color-secondary);
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem 1.05rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 47, 71, .16);
}
.blog-card h3 { font-size: 1.35rem; line-height: 1.35; max-width: 30ch; margin: 0 auto; transition: color .3s ease; }
.blog-card:hover h3 { color: var(--color-primary); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ── Footer ── */
.site-footer { background: var(--color-secondary); color: rgba(255, 255, 255, .72); padding: 72px 0 30px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.6rem; margin-bottom: 2.8rem; }
.site-footer .logo { color: #fff; margin-bottom: .8rem; display: inline-block; }
.site-footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 1.1rem; font-weight: 500; }
.site-footer ul { list-style: none; display: grid; gap: .55rem; font-size: .95rem; }
.site-footer a:hover { color: var(--color-primary); }
.site-footer .base { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; flex-wrap: wrap; }
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }

/* ── Appointment / forms (booking wizard + contact) ── */
.appointment .container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.6rem; align-items: start; }
.hours-card { background: var(--color-secondary); color: #fff; border-radius: 22px; padding: 2.6rem; position: sticky; top: 100px; }
.hours-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 1.4rem; }
.hours-card ul { list-style: none; display: grid; gap: .8rem; }
.hours-card li { display: flex; justify-content: space-between; gap: 1rem; font-size: .93rem; color: rgba(255, 255, 255, .78); border-bottom: 1px solid rgba(255, 255, 255, .1); padding-bottom: .8rem; }
.hours-card li b { color: #fff; font-weight: 400; }
.hours-card .reach { margin-top: 1.7rem; font-size: .93rem; color: rgba(255, 255, 255, .78); }
.hours-card .reach b, .hours-card .reach a { display: block; color: var(--color-primary-soft); font-size: 1.05rem; margin-top: .2rem; font-weight: 400; }
/* live summary */
.hours-card .summary { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .14); }
.hours-card .summary-title { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--color-primary-soft); font-weight: 600; margin-bottom: .8rem; }
.hours-card .summary ul { gap: .55rem; }
.hours-card .summary li { border: 0; padding: 0; font-size: .9rem; align-items: baseline; }
.hours-card .summary li span { color: rgba(255, 255, 255, .55); }
.hours-card .summary li b { color: rgba(255, 255, 255, .5); transition: color .3s ease; }
.hours-card .summary li.set b { color: #fff; }

.appt-form { background: #fff; border: 1px solid rgba(15, 47, 71, .1); border-radius: 22px; padding: 2.6rem; box-shadow: 0 30px 60px -40px rgba(15, 47, 71, .35); }
.appt-form h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.appt-form .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.appt-form label { display: block; font-size: .74rem; font-weight: 500; color: var(--color-secondary); margin-bottom: .4rem; letter-spacing: .12em; text-transform: uppercase; }
.appt-form label i { font-style: normal; color: var(--color-primary); margin-left: .2rem; }
.appt-form input, .appt-form select, .appt-form textarea {
  width: 100%; font: inherit; font-weight: 300; padding: .85rem 1rem; border: 1px solid rgba(15, 47, 71, .16);
  border-radius: 10px; background: #fdfefe; color: var(--color-default);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.appt-form input:focus, .appt-form select:focus, .appt-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(35, 128, 191, .16); }
.appt-form .full { grid-column: 1 / -1; }
.appt-form .ok { margin-top: 1rem; color: #2e7d32; font-weight: 400; }
.appt-form .err { margin-top: 1.2rem; padding: .7rem 1rem; border-radius: 10px; background: #fdecea; color: #b3261e; font-weight: 400; font-size: .92rem; }
.appt-form .slot-note { font-size: .9rem; color: var(--color-muted); }
.appt-form .field-err { margin-top: .35rem; font-size: .8rem; color: #b3261e; }
.appt-form button.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Stepper */
.stepper { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0 0 2.2rem; counter-reset: step; }
.stepper li { position: relative; display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center; cursor: default; }
.stepper li:not(:last-child)::after {
  content: ''; position: absolute; top: 18px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px;
  background: rgba(15, 47, 71, .12); transition: background .4s ease;
}
.stepper li.done:not(:last-child)::after { background: var(--color-primary); }
.stepper .dot {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-size: .85rem; font-weight: 600; background: #fff; color: var(--color-muted);
  border: 2px solid rgba(15, 47, 71, .16); transition: all .35s ease; position: relative; z-index: 1;
}
.stepper .lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-muted); font-weight: 500; transition: color .3s ease; }
.stepper li.active .dot { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; box-shadow: 0 0 0 5px rgba(35, 128, 191, .18); transform: scale(1.08); }
.stepper li.active .lbl { color: var(--color-secondary); }
.stepper li.done { cursor: pointer; }
.stepper li.done .dot { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.stepper li.done .lbl { color: var(--color-primary); }
.stepper li.done:hover .dot { transform: scale(1.08); }

.step-pane { animation: step-in .4s cubic-bezier(.22, 1, .36, 1) both; }
@keyframes step-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.step-title { font-family: var(--font-heading); font-size: 1.35rem; color: var(--color-secondary); margin-bottom: 1.2rem; }

/* Service cards */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-cards button {
  position: relative; text-align: left; font: inherit; cursor: pointer; padding: 1.2rem 1.3rem 1.1rem;
  border: 1.5px solid rgba(15, 47, 71, .14); border-radius: 14px; background: #fff; color: var(--color-default);
  display: grid; gap: .45rem; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-cards button:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: 0 14px 28px -18px rgba(15, 47, 71, .4); }
.service-cards button.active { border-color: var(--color-secondary); background: var(--color-surface-2); box-shadow: 0 0 0 4px rgba(35, 128, 191, .14); }
.service-cards .svc-name { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-secondary); padding-right: 2rem; }
.service-cards .svc-meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--color-muted); }
.service-cards .svc-meta span:last-child { color: var(--color-primary); font-weight: 500; }
.service-cards .svc-check {
  position: absolute; top: .9rem; right: .9rem; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem; font-weight: 700;
  border: 1.5px solid rgba(15, 47, 71, .18); color: transparent; transition: all .25s ease;
}
.service-cards button.active .svc-check { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

/* Calendar + times */
.datetime { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: start; }
.calendar { border: 1px solid rgba(15, 47, 71, .12); border-radius: 16px; padding: 1.1rem 1.1rem 1rem; background: #fdfefe; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.cal-head b { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: var(--color-secondary); }
.cal-head button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(15, 47, 71, .14); background: #fff;
  font-size: 1.2rem; line-height: 1; cursor: pointer; color: var(--color-secondary); transition: background .25s ease;
}
.cal-head button:hover:not(:disabled) { background: var(--color-surface); }
.cal-head button:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .wd { text-align: center; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-muted); padding: .3rem 0 .5rem; }
.cal-day {
  aspect-ratio: 1; border-radius: 50%; border: 0; background: transparent; font: inherit; font-size: .9rem;
  color: rgba(15, 47, 71, .3); cursor: default; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.cal-day.open { color: var(--color-secondary); background: var(--color-surface-2); cursor: pointer; font-weight: 400; }
.cal-day.open:hover { background: var(--color-surface); transform: scale(1.06); }
.cal-day.active { background: var(--color-secondary) !important; color: #fff !important; box-shadow: 0 0 0 4px rgba(35, 128, 191, .18); }
.cal-day.empty { visibility: hidden; }
.cal-legend { display: flex; align-items: center; gap: .5rem; margin-top: .7rem; font-size: .78rem; color: var(--color-muted); }
.cal-legend i { width: 12px; height: 12px; border-radius: 50%; background: var(--color-surface-2); border: 1px solid var(--color-primary-soft); }
.times { border: 1px solid rgba(15, 47, 71, .12); border-radius: 16px; padding: 1.1rem 1.2rem; background: #fdfefe; min-height: 100%; }
.times-title { font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-secondary); margin-bottom: .9rem; }
.slot-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot-chips button {
  font: inherit; font-size: .84rem; font-weight: 400; padding: .5rem .95rem; cursor: pointer;
  border: 1px solid rgba(15, 47, 71, .18); border-radius: 999px; background: #fff; color: var(--color-default);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.slot-chips button:hover { border-color: var(--color-primary); color: var(--color-secondary); }
.slot-chips button.active { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

/* Review */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem; }
.review-item { background: var(--color-surface-2); border-radius: 10px; padding: .8rem 1rem; }
.review-item.full { grid-column: 1 / -1; }
.review-item span { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-muted); margin-bottom: .2rem; }
.review-item b { font-weight: 400; color: var(--color-secondary); overflow-wrap: anywhere; }
.review-grid + .slot-note { margin-top: 1rem; }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(15, 47, 71, .08); }
.wizard-nav .btn.ghost { border-color: rgba(15, 47, 71, .18); }

@media (max-width: 900px) {
  .appointment .container { grid-template-columns: 1fr; }
  .hours-card { position: static; }
  .appt-form { padding: 1.8rem 1.3rem; }
  .appt-form .grid, .service-cards, .datetime, .review-grid { grid-template-columns: 1fr; }
  .stepper .lbl { font-size: .6rem; }
}

/* Confirmation panel */
.confirm-panel { display: grid; gap: 1.4rem; }
.confirm-head { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(20, 36, 46, .1); }
.confirm-head h4 { font-size: 1.5rem; margin-bottom: .2rem; }
.confirm-head .slot-note { margin: 0; }
.confirm-badge {
  flex: none; width: 2.8rem; height: 2.8rem; display: grid; place-items: center;
  background: #e8f3ea; color: #2e7d32; border-radius: 50%; font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 0 0 6px rgba(46, 125, 50, .07);
}
.confirm-ref {
  text-align: center; background: var(--color-surface-2); border: 1px dashed var(--color-primary); border-radius: var(--radius);
  padding: 1rem 1.2rem; font-size: .78rem; color: var(--color-muted); letter-spacing: .08em; text-transform: uppercase;
}
.confirm-ref b { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; letter-spacing: .16em; color: var(--color-secondary); margin-top: .25rem; text-transform: none; }
.confirm-section h5 { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--color-primary); margin-bottom: .8rem; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.4rem; }
.confirm-grid .full { grid-column: 1 / -1; }
.confirm-item { background: var(--color-surface-2); border: 1px solid rgba(20, 36, 46, .06); border-radius: var(--radius); padding: .75rem .95rem; }
.confirm-item span { display: block; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-muted); margin-bottom: .2rem; }
.confirm-item b { font-weight: 400; font-size: .97rem; color: var(--color-secondary); overflow-wrap: anywhere; }
.confirm-note { font-size: .9rem; color: var(--color-muted); line-height: 1.65; border-left: 3px solid var(--color-primary); padding: .35rem 0 .35rem 1rem; }
.confirm-note b, .confirm-note a { color: var(--color-secondary); font-weight: 400; white-space: nowrap; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
@media (max-width: 560px) { .confirm-grid { grid-template-columns: 1fr; } }

/* ── Contact ── */
.contact .container { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-card { background: var(--color-surface-2); border-radius: 14px; padding: 1.5rem 1.4rem; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.contact-card p { font-size: .92rem; color: var(--color-muted); }
@media (max-width: 900px) { .contact .container { grid-template-columns: 1fr; } }
