/* =========================================================================
   SashaStaar BHW — Natural Hair Specialist, West Palm Beach FL
   Design system & styles
   Brand: Deep Sage Green #6F8A7A · Warm Cream #F8F3EC ·
          Soft Gold #C7A46C · Espresso Brown #3B2F2A · Light Taupe #EFE7DE
   ========================================================================= */

:root {
  --sage: #6f8a7a;
  --sage-dark: #56705f;
  --sage-deep: #3f5648;
  --cream: #f8f3ec;
  --gold: #c7a46c;
  --gold-dark: #ad8a52;
  --espresso: #3b2f2a;
  --espresso-soft: #5b4d45;
  --taupe: #efe7de;
  --white: #ffffff;

  --ink: var(--espresso);
  --muted: var(--espresso-soft);

  --font-head: "Playfair Display", "Cormorant Garamond", "Libre Baskerville",
    Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Lato", "Open Sans", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 20px rgba(59, 47, 42, 0.07);
  --shadow-md: 0 18px 48px rgba(59, 47, 42, 0.12);
  --shadow-gold: 0 14px 40px rgba(199, 164, 108, 0.28);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 76px;
}

/* ----------------------------- Reset ----------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold-dark);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--espresso);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0.2px;
}

p {
  color: var(--muted);
}

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

::selection {
  background: var(--sage);
  color: var(--cream);
}

/* --------------------------- Utilities --------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.75rem, 8vw, 6.75rem);
  position: relative;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--taupe { background: var(--taupe); }
.section--sage {
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--cream);
}
.section--sage h2,
.section--sage h3 { color: var(--cream); }
.section--sage p { color: rgba(248, 243, 236, 0.86); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section--sage .eyebrow { color: var(--gold); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow::before {
  display: none;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.05rem);
}
h2 {
  font-size: clamp(1.95rem, 4.4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}
.lead {
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  color: var(--muted);
  margin-top: 1rem;
}

/* ----------------------------- Buttons --------------------------------- */
.btn {
  --btn-bg: var(--sage);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition),
    border-color var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--btn-fg);
}
.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--espresso);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn--outline {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(59, 47, 42, 0.28);
}
.btn--outline:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 243, 236, 0.5);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}
.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.btn-row.center {
  justify-content: center;
}

/* ----------------------------- Header ---------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(248, 243, 236, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(248, 243, 236, 0.96);
  border-bottom-color: rgba(199, 164, 108, 0.3);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand svg {
  height: 42px;
  width: auto;
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--espresso);
}
.brand-text span {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}
.nav-list a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
  padding-block: 0.4rem;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--sage-dark);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  margin-inline: auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--espresso);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 10px 10px;
  z-index: 2000;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 0;
  color: var(--cream);
}

/* ------------------------------ Hero ----------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
  background: linear-gradient(160deg, #fbf8f2 0%, var(--cream) 40%, var(--taupe) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/botanical.svg");
  background-repeat: no-repeat;
  background-position: right -90px top -40px;
  background-size: min(620px, 70%);
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 164, 108, 0.18), transparent 70%);
  bottom: -180px;
  left: -120px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy h1 {
  margin-bottom: 0.4rem;
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--sage-dark);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--muted);
  max-width: 44ch;
  margin: 1.25rem 0 2rem;
}
.hero .btn-row {
  margin-bottom: 2.25rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(59, 47, 42, 0.14);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--espresso);
}
.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199, 164, 108, 0.25);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 164, 108, 0.35);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}
.hero-card .monogram {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
}
.hero-card .logo-mark {
  width: 92px;
  height: auto;
  margin-bottom: 1rem;
}
.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.hero-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.hero-card .meta {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}
.hero-card .meta div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--espresso);
}
.hero-card .meta svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-card .meta a {
  color: var(--espresso);
  font-weight: 600;
}
.hero-card .meta a:hover {
  color: var(--gold-dark);
}

/* --------------------------- Marquee / strip --------------------------- */
.strip {
  background: var(--espresso);
  color: var(--cream);
  padding-block: 1rem;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.strip-track span {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  color: rgba(248, 243, 236, 0.92);
}
.strip-track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.8rem;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* ------------------------------ About ---------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 100%);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-portrait svg {
  width: 70%;
  opacity: 0.96;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-portrait .tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(248, 243, 236, 0.95);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.about-portrait .tag svg {
  width: 30px;
  height: 30px;
  color: var(--sage-dark);
}
.about-portrait .tag strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--espresso);
}
.about-portrait .tag span {
  font-size: 0.78rem;
  color: var(--muted);
}
.about-copy p + p {
  margin-top: 1.1rem;
}
.signature-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.75rem 0;
}
.signature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--espresso);
}
.signature-list .num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signature-list strong {
  color: var(--espresso);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 47, 42, 0.14);
}
.stat {
  text-align: left;
}
.stat .n {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--sage-dark);
  font-weight: 700;
}
.stat .l {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---------------------------- Services --------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(59, 47, 42, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 164, 108, 0.4);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(199, 164, 108, 0.3);
}
.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--sage-dark);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}
.service-card p {
  font-size: 0.93rem;
  flex-grow: 1;
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.service-card .more svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}
.service-card:hover .more svg {
  transform: translateX(4px);
}

/* ------------------------- Why / integrity ----------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: rgba(248, 243, 236, 0.08);
  border: 1px solid rgba(248, 243, 236, 0.18);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(2px);
}
.feature svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.feature p {
  font-size: 0.92rem;
  color: rgba(248, 243, 236, 0.82);
}

/* ----------------------------- Gallery --------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage);
  isolation: isolate;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  color: var(--cream);
  background: linear-gradient(155deg, var(--sage) 0%, var(--sage-deep) 100%);
}
.gallery-item:nth-child(3n) .gallery-ph {
  background: linear-gradient(155deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--espresso);
}
.gallery-item:nth-child(3n + 2) .gallery-ph {
  background: linear-gradient(155deg, var(--espresso) 0%, #2b231f 100%);
}
.gallery-ph svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.gallery-ph strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
}
.gallery-ph span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.78;
}
.gallery-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* --------------------------- Testimonials ------------------------------ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  border: 1px solid rgba(59, 47, 42, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.testi .stars svg {
  width: 18px;
  height: 18px;
}
.testi blockquote {
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--espresso);
  font-style: italic;
  flex-grow: 1;
}
.testi figcaption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testi .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--sage), var(--sage-deep));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}
.testi figcaption strong {
  display: block;
  font-size: 0.95rem;
  color: var(--espresso);
}
.testi figcaption span {
  font-size: 0.8rem;
  color: var(--muted);
}
.review-note {
  margin-top: 2.25rem;
  text-align: center;
  font-size: 0.92rem;
}

/* ------------------------------- FAQ ----------------------------------- */
.faq-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid rgba(59, 47, 42, 0.14);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.5rem 0;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--espresso);
  text-align: left;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--transition);
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-q .icon::before {
  width: 12px;
  height: 2px;
}
.faq-q .icon::after {
  width: 2px;
  height: 12px;
}
.faq-item.open .faq-q .icon {
  background: var(--gold);
}
.faq-item.open .faq-q .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition);
}
.faq-a div {
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ------------------------------ Booking -------------------------------- */
.book-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199, 164, 108, 0.25);
}
.book-card .monogram {
  width: 56px;
  margin-bottom: 1.25rem;
}
.book-card .logo-mark {
  width: 78px;
  height: auto;
  margin-bottom: 1rem;
}
.book-steps {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.book-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.book-step .dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.book-step strong {
  display: block;
  color: var(--espresso);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.book-step p {
  font-size: 0.9rem;
  margin: 0;
}

/* ------------------------------ Forms ---------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--espresso);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid rgba(59, 47, 42, 0.16);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(111, 138, 122, 0.16);
}
.form-note {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 0.9rem;
}
.form-note--error {
  color: #b3402f;
  font-weight: 600;
}
.form-note--error a {
  color: #b3402f;
  text-decoration: underline;
}

/* Honeypot — hidden from humans, catches bots (Web3Forms botcheck) */
.hp {
  display: none !important;
}

/* Inline success state (replaces the form after submit) */
.form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
  animation: fadeUp 0.5s ease both;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--sage-dark);
  margin: 0 auto 1rem;
  background: var(--cream);
  border-radius: 50%;
  padding: 10px;
  border: 1px solid rgba(199, 164, 108, 0.4);
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36ch;
  margin-inline: auto;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ------------------------------ Contact -------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.contact-list {
  display: grid;
  gap: 1.4rem;
  margin: 1.75rem 0;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-list .ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid rgba(199, 164, 108, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list .ico svg {
  width: 22px;
  height: 22px;
  color: var(--sage-dark);
}
.contact-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 0.15rem;
}
.contact-list a,
.contact-list span {
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-list a:hover {
  color: var(--gold-dark);
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 47, 42, 0.1);
  min-height: 340px;
  height: 100%;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* ------------------------------ CTA band ------------------------------- */
.cta-band {
  text-align: center;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/botanical.svg");
  background-repeat: no-repeat;
  background-position: left -80px bottom -120px;
  background-size: 460px;
  opacity: 0.16;
}
.cta-band .container {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  color: var(--cream);
  max-width: 16ch;
  margin-inline: auto;
}
.cta-band p {
  color: rgba(248, 243, 236, 0.88);
  max-width: 52ch;
  margin: 1rem auto 2rem;
}

/* ------------------------------ Footer --------------------------------- */
.site-footer {
  background: var(--espresso);
  color: rgba(248, 243, 236, 0.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(248, 243, 236, 0.14);
}
.footer-brand svg {
  height: 46px;
  margin-bottom: 1rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  color: rgba(248, 243, 236, 0.66);
  font-size: 0.9rem;
  max-width: 32ch;
}
.site-footer h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-links {
  display: grid;
  gap: 0.7rem;
}
.footer-links a {
  color: rgba(248, 243, 236, 0.74);
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a,
.footer-contact span {
  color: rgba(248, 243, 236, 0.74);
}
.footer-contact a:hover {
  color: var(--gold);
}
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(248, 243, 236, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition),
    transform var(--transition);
}
.social-row a svg {
  width: 18px;
  height: 18px;
  display: block;
  color: rgba(248, 243, 236, 0.82);
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.social-row a:hover svg {
  color: var(--espresso);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  color: rgba(248, 243, 236, 0.55);
}
.footer-bottom a {
  color: rgba(248, 243, 236, 0.7);
}

/* ------------------------- Mobile sticky bar --------------------------- */
.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(59, 47, 42, 0.12);
  box-shadow: 0 -6px 24px rgba(59, 47, 42, 0.16);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.mobile-bar .call {
  background: var(--cream);
  color: var(--espresso);
}
.mobile-bar .book {
  background: var(--sage);
  color: var(--cream);
}
.mobile-bar svg {
  width: 17px;
  height: 17px;
}

/* ----------------------- Reveal-on-scroll ------------------------------ */
/* Progressive enhancement: only hide pre-animation when JS is active, so
   content stays visible without JS and for crawlers / no-JS users. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* --------------------------- Sub-page hero ----------------------------- */
.subhero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(160deg, #fbf8f2 0%, var(--cream) 50%, var(--taupe) 100%);
  position: relative;
  overflow: hidden;
}
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/botanical.svg");
  background-repeat: no-repeat;
  background-position: right -120px center;
  background-size: 480px;
  opacity: 0.4;
}
.subhero .container {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--sage-dark);
  font-weight: 600;
}
.breadcrumb span {
  color: var(--gold-dark);
}
.prose {
  max-width: 760px;
}
.prose h2 {
  margin: 2.5rem 0 1rem;
}
.prose h3 {
  margin: 1.9rem 0 0.75rem;
}
.prose p {
  margin-bottom: 1.1rem;
}
.prose ul {
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.prose ul li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.prose strong {
  color: var(--espresso);
}

/* ------------------------------ Responsive ----------------------------- */
@media (max-width: 960px) {
  .hero .container,
  .about-grid,
  .book-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    max-width: 420px;
    margin-inline: auto;
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 66px;
  }
  .nav-toggle {
    display: flex;
  }
  .brand-logo {
    height: 38px;
  }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(199, 164, 108, 0.3);
    padding: 1rem var(--gutter) 1.75rem;
    transform: translateY(-130%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
    align-items: stretch;
  }
  .nav.open {
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-list li {
    border-bottom: 1px solid rgba(59, 47, 42, 0.1);
  }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
  }
  .nav-list a::after {
    display: none;
  }
  .nav-cta {
    margin-top: 1.25rem;
  }
  .nav-cta .btn {
    width: 100%;
  }
  .mobile-bar {
    display: grid;
  }
  body {
    padding-bottom: 56px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    text-align: center;
  }
  .stat {
    text-align: center;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    padding: 1.9rem 1.5rem;
  }
  .btn {
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
  }
  .hero-trust {
    gap: 0.5rem 1rem;
  }
}

/* ----------------------- Service price pill ---------------------------- */
.svc-price {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--cream);
  border: 1px solid rgba(199, 164, 108, 0.4);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

/* ---------------------------- Notice banner ---------------------------- */
.notice {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(199, 164, 108, 0.14);
  border: 1px solid rgba(199, 164, 108, 0.4);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  color: var(--espresso);
}
.notice svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.notice strong { color: var(--espresso); }
.notice a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ====================== Booking menu (booking.html) ===================== */
.menu-collection { margin-bottom: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: calc(var(--header-h) + 24px); }
.menu-collection:last-child { margin-bottom: 0; }
.menu-collection-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(199, 164, 108, 0.35);
}
.menu-collection-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin: 0;
}
.menu-collection-head .count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.menu-collection-head p {
  flex-basis: 100%;
  margin: 0.35rem 0 0;
  font-size: 0.97rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}
.menu-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(59, 47, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 164, 108, 0.45);
}
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.menu-item h3 {
  font-size: 1.3rem;
  line-height: 1.25;
}
.menu-item .amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sage-dark);
  white-space: nowrap;
}
.menu-item .desc {
  font-size: 0.94rem;
  color: var(--muted);
  flex-grow: 1;
}
.menu-item .dur {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--espresso-soft);
  margin: 1rem 0 1.3rem;
}
.menu-item .dur svg { width: 16px; height: 16px; color: var(--sage); }
.menu-item .btn { width: 100%; margin-top: auto; }
.menu-item.feature {
  background: linear-gradient(150deg, var(--sage), var(--sage-deep));
  border: 0;
  color: var(--cream);
}
.menu-item.feature h3 { color: var(--cream); }
.menu-item.feature .amount { color: var(--gold); }
.menu-item.feature .desc { color: rgba(248, 243, 236, 0.88); }
.menu-item.feature .dur { color: rgba(248, 243, 236, 0.82); }
.menu-item.feature .dur svg { color: var(--gold); }

.collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.collection-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid rgba(59, 47, 42, 0.16);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition);
}
.collection-nav a:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
