/* =============================================================
   PETALS DERMATOLOGY CENTRE & MEDICAL SPA
   Design system + site styles  —  hand-built, no framework
   -------------------------------------------------------------
   Palette tuned to the gold logo. Fine-tune the hex values in
   :root if you have exact brand codes; everything cascades from
   these tokens. (--rose / --plum kept as variable names so the
   rest of the CSS is untouched — they now hold gold / charcoal.)
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
  /* --- Brand palette (matched to the gold "Petals" logo) --- */
  --cream:      #FCF8F1;   /* page background — warm ivory     */
  --cream-2:    #F5ECDA;   /* alt section background           */
  --blush:      #E9D9B7;   /* soft gold panels / borders       */
  --rose:       #A97E27;   /* PRIMARY ACCENT — brand gold      */
  --rose-deep:  #856019;   /* accent hover / emphasis          */
  --plum:       #33302A;   /* dark surfaces / footer — charcoal*/
  --ink:        #2B2721;   /* body text                        */
  --ink-soft:   #6E6353;   /* muted text                       */
  --gold:       #C9A24A;   /* bright decorative gold           */
  --sage:       #9AA88D;   /* botanical secondary accent       */
  --white:      #FFFFFF;

  /* --- Semantic --- */
  --bg:            var(--cream);
  --bg-alt:        var(--cream-2);
  --surface:       var(--white);
  --text:          var(--ink);
  --text-muted:    var(--ink-soft);
  --accent:        var(--rose);
  --accent-hover:  var(--rose-deep);
  --border:        #EADEC4;
  --shadow-color:  51 48 42;   /* rgb of --plum, for rgba() */

  /* --- Typography --- */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(1.95rem, 1.6rem + 1.8vw, 3rem);
  --step-4:  clamp(2.5rem, 1.9rem + 3vw, 4.2rem);
  --step-5:  clamp(3rem, 2rem + 5vw, 5.75rem);

  /* --- Spacing / layout --- */
  --container: 1200px;
  --container-narrow: 780px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius-sm: 10px;
  --radius:    20px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(var(--shadow-color) / 0.06);
  --shadow-md: 0 18px 40px -18px rgba(var(--shadow-color) / 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(var(--shadow-color) / 0.38);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul[class] { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }

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

::selection { background: var(--rose); color: #fff; }

/* -------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--plum);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.is-centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 350;
}

.display {
  font-size: var(--step-5);
  line-height: 1.02;
}

.script-accent { color: var(--accent); font-style: italic; }

/* -------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.bg-alt { background: var(--bg-alt); }
.bg-plum { background: var(--plum); color: #F1E8D8; }
.bg-plum h1, .bg-plum h2, .bg-plum h3, .bg-plum h4 { color: #fff; }
.bg-blush { background: var(--blush); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; color: var(--text-muted); font-size: var(--step-1); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split.is-reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.is-reverse > :first-child { order: 0; }
}

.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 2.5rem; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* -------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--radius-pill);
  border: 1px solid var(--btn-bg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--accent-hover); border-color: var(--accent-hover); }
.btn:active { transform: translateY(-1px); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--plum);
  border-color: currentColor;
}
.btn-outline:hover { --btn-bg: var(--plum); --btn-fg: #fff; border-color: var(--plum); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { --btn-bg: #fff; --btn-fg: var(--plum); border-color:#fff; }

.btn-lg { padding: 1.15em 2.4em; font-size: var(--step-0); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* -------------------------------------------------------------
   6. HEADER / NAV
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-stuck {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 96px;
  padding-block: 0.75rem;
}
.site-header.is-stuck .header-inner { min-height: 76px; }

.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; flex: none; color: var(--accent); }

/* Real logo image (swapped in for the placeholder wordmark) */
.brand-logo { height: 74px; width: auto; display: block; transition: height 0.3s var(--ease); }
.site-header.is-stuck .brand-logo { height: 58px; }
@media (max-width: 520px) { .brand-logo { height: 54px; } }
/* Footer sits on a dark ground — render the logo in white.
   If you have a light/gold version of the logo, point the footer
   <img src> at that file instead and delete this filter. */
.site-footer .brand-logo { height: 76px; filter: brightness(0) invert(1); opacity: 0.9; }

/* Photos that replaced placeholder wrappers — keep the wrapper's shape */
img.hero-visual, img.figure-organic, img.fs-back, img.media, img.portrait {
  width: 100%;
  object-fit: cover;
  display: block;
}
.t-card img.media { transition: transform 0.7s var(--ease); }
.t-card:hover img.media { transform: scale(1.05); }
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--plum);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 600;
}

.main-nav > ul { display: flex; align-items: center; gap: 0.35rem; }
.main-nav a {
  display: block;
  padding: 0.6rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--plum);
  border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s;
}
.main-nav a:hover,
.main-nav .is-current > a { background: var(--blush); color: var(--rose-deep); }

.has-sub { position: relative; }
.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 0.5em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s;
}
.subnav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 260px;
  padding: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.subnav::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto 0;
  height: 14px;
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-sub:hover > a::after { transform: translateY(-2px) rotate(-135deg); }
.subnav a { padding: 0.7rem 0.9rem; font-size: 0.9rem; border-radius: var(--radius-sm); }
.subnav a:hover { background: var(--cream-2); }

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 1.5px;
  background: var(--plum);
  translate: -50% -50%;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 7px); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 1080px) {
  /* backdrop-filter would make the sticky header the containing block for the
     position:fixed nav panel — kill it on mobile so the drawer fills the screen */
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-cta { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 2;
    width: min(88vw, 420px);
    height: 100%;
    max-height: 100dvh;
    padding: 6.5rem 1.75rem 2.5rem;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .main-nav { transform: translateX(0); }
  .header-inner { min-height: 76px; gap: 1rem; }
  .site-header.is-stuck .header-inner { min-height: 68px; }
  .brand-logo { height: 56px; }
  .site-header.is-stuck .brand-logo { height: 50px; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .main-nav a { padding: 0.9rem 1rem; font-size: 1.05rem; }
  .has-sub > a::after { float: right; }
  .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--cream);
    min-width: 0;
    margin: 0.25rem 0 0.5rem;
    display: none;
  }
  .has-sub.is-expanded .subnav { display: block; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(59, 42, 49, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s;
    z-index: 99;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* -------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 9vw, 8rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { margin-block: 1.4rem 1.6rem; }
.hero .lead { max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta div { max-width: 15ch; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--plum);
}
.hero-meta span { font-size: var(--step--1); color: var(--text-muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 46% 46% 42% 42% / 20% 20% 8% 8%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 240px;
}
.hero-badge .dot {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  color: var(--accent);
}
.hero-badge p { font-size: 0.82rem; line-height: 1.4; color: var(--text-muted); }
.hero-badge strong { color: var(--plum); display: block; font-family: var(--font-display); font-size: 1rem; }
@media (max-width: 940px) {
  .hero-badge { left: auto; right: 1rem; }
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.blob-1 { width: 460px; height: 460px; background: var(--blush); top: -140px; right: -120px; }
.blob-2 { width: 380px; height: 380px; background: #EADFC6; bottom: -160px; left: -140px; }

/* -------------------------------------------------------------
   8. CARDS
   ------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.card .card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream-2);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.card h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.98rem; }
.card .link-arrow { margin-top: 1.4rem; }

/* Treatment card with image */
.t-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.t-card .media { aspect-ratio: 3 / 2; overflow: hidden; }
.t-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.t-card:hover .media img { transform: scale(1.05); }
.t-card .body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.t-card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.t-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.t-card .link-arrow { margin-top: 1.3rem; }

/* -------------------------------------------------------------
   9. MEDIA / FIGURES
   ------------------------------------------------------------- */
.figure-organic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 6;
}
.figure-organic img { width: 100%; height: 100%; object-fit: cover; }
.figure-stack { position: relative; }
.figure-stack .fs-back {
  position: absolute;
  inset: auto -8% -10% auto;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  aspect-ratio: 1;
}
.figure-stack .fs-back img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder look for images that have no photo yet */
.ph {
  position: relative;
  background:
    radial-gradient(120% 120% at 20% 10%, var(--cream-2), transparent 60%),
    linear-gradient(140deg, var(--blush), #D8C299);
  display: grid;
  place-items: center;
  color: var(--rose-deep);
}
.ph::after {
  content: attr(data-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.72;
  text-align: center;
  padding: 0.5em 1em;
}
.ph svg { position: absolute; width: 46%; opacity: 0.28; }

/* -------------------------------------------------------------
   10. LISTS / FEATURES
   ------------------------------------------------------------- */
.check-list { display: grid; gap: 0.9rem; }
.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 1rem;
}
.check-list li::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B76E75' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-row .num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--accent);
  line-height: 1;
}
.stat-row .lbl { font-size: var(--step--1); color: var(--text-muted); margin-top: 0.5rem; letter-spacing: 0.06em; text-transform: uppercase; }

.step-list { counter-reset: step; display: grid; gap: 1.5rem; }
.step-list li {
  position: relative;
  padding-left: 4.2rem;
  min-height: 3rem;
}
.step-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -0.15rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.step-list h4 { margin-bottom: 0.3rem; }
.step-list p { color: var(--text-muted); font-size: 0.97rem; }

/* -------------------------------------------------------------
   11. TESTIMONIALS
   ------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  height: 100%;
}
.quote-card .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; }
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--plum);
}
.quote-card .who { margin-top: 1.4rem; font-size: 0.9rem; color: var(--text-muted); }
.quote-card .who strong { color: var(--plum); display: block; font-family: var(--font-body); }

/* -------------------------------------------------------------
   12. CTA BAND
   ------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--plum), #59404A);
  color: #F5E9E4;
  padding: clamp(2.75rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .petal-watermark {
  position: absolute;
  right: -40px; bottom: -60px;
  width: 260px;
  opacity: 0.12;
  color: #fff;
}

/* -------------------------------------------------------------
   13. FAQ / ACCORDION
   ------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--border); }
.accordion details {
  border-bottom: 1px solid var(--border);
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--plum);
  list-style: none;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .ico {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.accordion summary .ico::before,
.accordion summary .ico::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--plum);
  translate: -50% -50%;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.accordion summary .ico::before { width: 12px; height: 1.5px; }
.accordion summary .ico::after { width: 1.5px; height: 12px; }
.accordion details[open] summary .ico { background: var(--accent); border-color: var(--accent); }
.accordion details[open] summary .ico::before,
.accordion details[open] summary .ico::after { background: #fff; }
.accordion details[open] summary .ico::after { transform: translate(-50%, -50%) scaleY(0); }
.accordion .acc-body { padding-bottom: 1.6rem; color: var(--text-muted); max-width: 68ch; }
.accordion .acc-body > * + * { margin-top: 0.8rem; }

/* -------------------------------------------------------------
   14. PAGE HERO (interior pages)
   ------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 56ch; margin-top: 1.2rem; color: var(--text-muted); font-size: var(--step-1); }

/* -------------------------------------------------------------
   15. GALLERY
   ------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.gallery-filters button {
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plum);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.gallery-filters button:hover { border-color: var(--accent); }
.gallery-filters button.is-active { background: var(--plum); color: #fff; border-color: var(--plum); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .tag {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  background: rgba(255,255,255,0.92);
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
}
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 25, 0.9);
  display: grid;
  place-items: center;
  padding: 2rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 900px); max-height: 84vh; border-radius: var(--radius); }
.lightbox button {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.5rem;
}

/* -------------------------------------------------------------
   16. PRICING
   ------------------------------------------------------------- */
.price-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table h3 {
  padding: 1.4rem 1.8rem;
  background: var(--cream-2);
  font-size: var(--step-1);
  border-bottom: 1px solid var(--border);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem 1.8rem;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-weight: 500; color: var(--plum); }
.price-row .name small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.85rem; margin-top: 0.2rem; }
.price-row .amt {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--accent);
  white-space: nowrap;
}
.price-note { font-size: 0.9rem; color: var(--text-muted); margin-top: 1.5rem; }

/* -------------------------------------------------------------
   17. TEAM
   ------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.team-card .portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .portrait img { transform: scale(1.04); }
.team-card h3 { font-size: var(--step-1); }
.team-card .role { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }
.team-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.8rem; }

/* -------------------------------------------------------------
   18. FORMS
   ------------------------------------------------------------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.9rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-ok { background: #E8F0E7; color: #3C5A3A; }
.form-status.is-err { background: #F6E3E3; color: #8A4040; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -------------------------------------------------------------
   19. CONTACT / INFO
   ------------------------------------------------------------- */
.info-list { display: grid; gap: 1.6rem; }
.info-list li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; }
.info-list .ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cream-2);
  display: grid; place-items: center;
  color: var(--accent);
}
.info-list h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--plum); margin-bottom: 0.2rem; }
.info-list p, .info-list a { color: var(--text-muted); font-size: 0.95rem; }
.info-list a:hover { color: var(--accent); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.booking-embed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  min-height: 640px;
}
.booking-embed iframe { width: 100%; min-height: 600px; border: 0; border-radius: var(--radius); }

/* -------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background: var(--plum);
  color: rgba(245, 231, 225, 0.75);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer .brand-text { color: #fff; }
.site-footer .brand-mark { color: var(--blush); }
.footer-about p { margin-top: 1.2rem; font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact p { font-size: 0.92rem; margin-bottom: 0.8rem; }
.footer-contact a:hover { color: #fff; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* -------------------------------------------------------------
   21. SCROLL REVEAL
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }

/* -------------------------------------------------------------
   22. UTILITIES
   ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--plum);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.25s;
}
.skip-link:focus { top: 1rem; }

.divider-leaf {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  margin-block: 1.5rem;
}
.divider-leaf::before, .divider-leaf::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pill-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--cream-2);
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.note-box {
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.is-hidden { display: none !important; }

/* -------------------------------------------------------------
   23. PROSE (legal / long-form pages)
   ------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.6rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.prose p, .prose li { color: var(--text-muted); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.4rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--plum); }
.prose .updated { font-size: 0.85rem; color: var(--text-muted); }

/* -------------------------------------------------------------
   24. SMALL-SCREEN POLISH
   ------------------------------------------------------------- */
@media (max-width: 600px) {
  .hero-actions .btn,
  .cta-band .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge {
    position: static;
    left: auto; right: auto;
    margin-top: 1.1rem;
    max-width: none;
  }
  .price-row { flex-wrap: wrap; gap: 0.3rem 1rem; }
  .price-row .amt { font-size: var(--step-0); }
  .breadcrumb { font-size: 0.78rem; }
  .figure-stack .fs-back { position: static; width: 55%; margin: 0.9rem 0 0 auto; }
  .cta-band { padding: 2.25rem 1.35rem; }
}

/* Never let anything push the page wider than the screen */
html, body { max-width: 100%; overflow-x: hidden; }
img, iframe, video, table, pre { max-width: 100%; }
