/* ================================================================
   SHIFT WITH SAM — Theme Stylesheet v2
   Single canonical file, no duplicate rules, pixel-perfect to React
   ================================================================ */

/* ── Cormorant Garamond — self-hosted heading font ────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}

:root {
  --color-background:  #FAF8F5;
  --color-white:       #FFFFFF;
  --color-forest:      #3D4F47;
  --color-forest-dark: #2C3A35;
  --color-gold:        #8B7355;
  --color-gold-dark:   #7A6449;
  --color-body:        #7A8B83;
  --color-border:      #E8DED1;
  --color-surface:     #F5F0E8;
  --color-footer-text: #D4C4B0;
  --color-offer:       #C17B4E;
  --color-offer-dark:  #A86B3E;
  --color-offer-light: #F9EFE8;

  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;
  /* Heading font — Poppins via Google Fonts (system stack commented out below) */
  --font-family-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-weight-light:  300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  clamp(2rem, 4.5vw, 3rem);
  --text-5xl:  clamp(2.25rem, 5.5vw, 4rem);

  --space-section-xl: 8rem;
  --space-section-lg: 5rem;
  --space-section:    clamp(3rem, 8vw, 8rem);

  --max-width-wide:    1280px;
  --max-width-content: 896px;

  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-3xl:  1.5rem;
  --radius-pill: 62.5rem;

  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:   0 25px 50px rgba(0,0,0,0.15);
  --shadow-2xl:  0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-forest);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}
/* Push content below fixed 80px header on all non-home pages.
   Targets both our custom is-home class and WordPress native home class. */
body:not(.is-home):not(.home) { margin-top: 30px; }
img,video { max-width:100%; height:auto; display:block; }
a { color:var(--color-gold); text-decoration:none; transition:var(--transition-base); }
a:hover { color:var(--color-gold-dark); }
ul,ol { list-style:none; }
button { cursor:pointer; font-family:var(--font-family); border:none; background:none; }
input,textarea,select { font-family:var(--font-family); }

/* ── Typography ─────────────────────────────────────────────────── */
/* h1,h2,h3,h4,h5,h6 { font-weight:var(--font-weight-light); line-height:1.2; color:var(--color-forest); } */
/* Heading font — currently using Poppins. Revert by uncommenting the line above and removing the line below. */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-family-heading); font-weight:var(--font-weight-light); line-height:1.2; color:var(--color-forest); }
h1 { font-size:var(--text-5xl); line-height:1.1; }
h2 { font-size:var(--text-4xl); }
h3 { font-size:var(--text-2xl); }
h4 { font-size:var(--text-xl); font-weight:var(--font-weight-normal); }
p  { color:var(--color-body); line-height:1.75; }

/* ── Layout ─────────────────────────────────────────────────────── */
.sws-container {
  max-width: var(--max-width-wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width:1024px) { .sws-container { padding-inline:3rem; } }

.sws-container--narrow {
  max-width: var(--max-width-content);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width:1024px) { .sws-container--narrow { padding-inline:3rem; } }

.sws-section       { padding-block:var(--space-section); }
.sws-section--white  { background-color:var(--color-white); }
.sws-section--bg     { background-color:var(--color-background); }
.sws-section--forest { background-color:var(--color-forest); }

/* ── Label ──────────────────────────────────────────────────────── */
.sws-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.sws-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font-family);
  line-height: 1;
}
.sws-btn--primary        { background-color:var(--color-gold);   color:var(--color-white)  !important; }
.sws-btn--primary:hover  { background-color:var(--color-gold-dark); color:var(--color-white) !important; }
.sws-btn--white          { background-color:var(--color-white);  color:var(--color-gold)   !important; }
.sws-btn--white:hover    { background-color:var(--color-background); color:var(--color-gold-dark) !important; }
.sws-btn--white-forest   { background-color:var(--color-white);  color:var(--color-forest) !important; }
.sws-btn--white-forest:hover { background-color:var(--color-background); }
.sws-btn--outline        { background-color:transparent; color:var(--color-gold) !important; border:1.5px solid var(--color-gold); }
.sws-btn--outline:hover  { background-color:var(--color-background); }
.sws-btn svg { width:1rem; height:1rem; flex-shrink:0; }
/* Hero buttons are smaller: px-6 py-3 */
.sws-hero__actions .sws-btn { padding:0.75rem 1.5rem; }

/* ── Text link ──────────────────────────────────────────────────── */
.sws-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
  transition: var(--transition-base);
}
.sws-link:hover { color:var(--color-gold-dark); gap:1rem; }
.sws-link svg   { width:1.25rem; height:1.25rem; flex-shrink:0; }

/* ── Header ─────────────────────────────────────────────────────── */
.sws-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: var(--transition-slow);
}
.sws-header__inner {
  max-width: var(--max-width-wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width:1024px) { .sws-header__inner { padding-inline:3rem; } }

/* Logo */
.sws-logo { flex-shrink:0; display:flex; align-items:center; }
.sws-logo img, .sws-logo .sws-logo__img { height:48px; width:auto; }
.sws-logo__text { display:flex; flex-direction:column; line-height:1; }
.sws-logo__shift {
  font-size: 1.375rem;
  font-weight: var(--font-weight-light);
  letter-spacing: 0.15em;
  color: var(--color-forest);
  text-transform: uppercase;
}
.sws-logo__shift em { font-style:italic; }
.sws-logo__sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
}

/* Desktop nav — hidden below lg */
.sws-nav { display:none; }
@media (min-width:1024px) { .sws-nav { display:flex; align-items:center; } }
.sws-nav__list { display:flex; align-items:center; gap:2.5rem; list-style:none; }
.sws-nav__list li { list-style:none; }

/* Nav links — force styles on WP-generated anchors too */
.sws-nav__link,
.sws-nav__list .menu-item > a {
  font-size: var(--text-xs) !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #5A6B63 !important;
  transition: all 0.5s ease !important;
  position: relative;
  padding-bottom: 2px;
  text-decoration: none !important;
  display: inline-block;
}
.sws-nav__link:hover,
.sws-nav__list .menu-item > a:hover { color:var(--color-gold) !important; }

/* Active underline */
.sws-nav__link::after,
.sws-nav__list .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left:0; right:0;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  display: block;
}
.sws-nav__link[aria-current="page"]::after,
.sws-nav__list .current-menu-item > a::after,
.sws-nav__list .current_page_item > a::after { transform:scaleX(1); }
.sws-nav__link[aria-current="page"],
.sws-nav__list .current-menu-item > a,
.sws-nav__list .current_page_item > a { color:var(--color-forest-dark) !important; }

/* ── Desktop dropdown sub-menu ───────────────────────────────────── */
.sws-nav .menu-item-has-children { position: relative; }

/* Invisible bridge fills the gap so hover stays alive moving into sub-menu */
.sws-nav .menu-item-has-children::after {
  content: '';
  position: absolute;
  left: -8px; right: -8px;
  top: 100%;
  height: 14px;
}
.sws-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  list-style: none;
  padding: 0.5rem;
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.sws-nav .menu-item-has-children:hover > .sub-menu,
.sws-nav .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sws-nav .sub-menu .menu-item > a {
  display: block !important;
  padding: 0.6rem 0.875rem !important;
  border-radius: var(--radius-lg) !important;
  font-size: var(--text-xs) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--color-body) !important;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
.sws-nav .sub-menu .menu-item > a::after { display: none !important; }
.sws-nav .sub-menu .menu-item > a:hover {
  background: var(--color-background) !important;
  color: var(--color-forest) !important;
}
.sws-nav .sub-menu .current-menu-item > a {
  background: var(--color-surface) !important;
  color: var(--color-forest) !important;
  font-weight: 500 !important;
}

/* Chevron toggle button */
.sws-nav-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
  vertical-align: middle;
}
.sws-nav .sws-nav-toggle { margin-left: 3px; color: #5A6B63; }
.sws-nav .menu-item-has-children:hover > .sws-nav-toggle,
.sws-nav .menu-item-has-children.is-open > .sws-nav-toggle {
  transform: rotate(180deg);
  color: var(--color-gold);
}

/* Social icons (desktop) */
.sws-header__social { display:none; align-items:center; gap:1rem; }
@media (min-width:1024px) { .sws-header__social { display:flex; } }
.sws-header__social a { color:var(--color-body); transition:var(--transition-base); display:flex; align-items:center; }
.sws-header__social a:hover { color:var(--color-gold); }
.sws-header__social svg { width:1.25rem; height:1.25rem; }

/* Hamburger */
.sws-header__toggle {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px;
  color:var(--color-forest);
  transition:var(--transition-base);
  background:none; border:none; cursor:pointer; padding:0;
}
.sws-header__toggle:hover { color:var(--color-gold); }
.sws-header__toggle svg  { width:1.5rem; height:1.5rem; }
@media (min-width:1024px) { .sws-header__toggle { display:none; } }

/* ── Mobile menu ─────────────────────────────────────────────────── */
/*
  React mobile menu: full-width below header, NO left/right margin,
  NO rounded corners, white/95 backdrop.
  bg-white/95 backdrop-blur-md rounded-2xl p-6 mb-4
  BUT looking at the React code again: the mobile nav is inside the
  header container with rounded-2xl. The difference from before is
  React uses rounded-2xl on the nav element, not full-bleed.
  Image 1 shows the REACT version: full width within the header inner,
  with rounded corners. The issue was the previous CSS had left:1.5rem
  right:1.5rem which adds to the container's own padding, making it too
  narrow. Fix: position relative to .sws-header not .sws-header__inner.
*/
.sws-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;         /* flush to bottom of header, whatever its height */
  left: 0;
  right: 0;
  background-color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 1.5rem 3rem 1.5rem;
}
@media (min-width:1024px) {
  .sws-mobile-menu { padding-inline:3rem; }
}
.sws-mobile-menu.is-open { display:block; }

.sws-mobile-menu .sws-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

/* Mobile nav links */
.sws-mobile-menu .sws-nav__link,
.sws-mobile-menu .menu-item > a {
  display: block !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-lg) !important;
  color: var(--color-body) !important;
}
.sws-mobile-menu .sws-nav__link::after,
.sws-mobile-menu .menu-item > a::after { display:none; }
.sws-mobile-menu .sws-nav__link:hover,
.sws-mobile-menu .menu-item > a:hover { background-color:var(--color-background) !important; color:var(--color-body) !important; }
.sws-mobile-menu .current-menu-item > a,
.sws-mobile-menu .current_page_item > a { background-color:var(--color-surface) !important; color:var(--color-forest) /*!important; border-left:3px solid var(--color-gold)*/ !important; padding-left:calc(1rem - 3px) !important; font-weight:500 !important; }

/* ── Mobile sub-menu ─────────────────────────────────────────────── */
/* Grid layout: link col 1, chevron col 2, sub-menu spans full width on row 2 */
.sws-mobile-menu .menu-item-has-children {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
}
.sws-mobile-menu .menu-item-has-children > a {
  grid-column: 1;
  grid-row: 1;
}
.sws-mobile-menu .menu-item-has-children > .sws-nav-toggle {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: 0.4rem 0.6rem;
  margin-right: 0.25rem;
  color: var(--color-forest);
  background: var(--color-background);
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-lg);
  opacity: 1;
}
.sws-mobile-menu .menu-item-has-children > .sws-nav-toggle svg {
  width: 18px;
  height: 18px;
}
.sws-mobile-menu .menu-item-has-children.is-open > .sws-nav-toggle {
  transform: rotate(180deg);
  background: var(--color-surface);
  color: var(--color-forest);
  border-color: var(--color-forest) !important;
}
.sws-mobile-menu .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 0.25rem 0.75rem;
  margin: 0;
  grid-column: 1 / -1;
  grid-row: 2;
}
.sws-mobile-menu .menu-item-has-children.is-open > .sub-menu { display: block; }
.sws-mobile-menu .sub-menu .menu-item > a {
  display: block !important;
  padding: 0.6rem 1rem !important;
  border-radius: var(--radius-lg) !important;
  color: var(--color-body) !important;
  font-size: var(--text-xs) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  opacity: 0.8;
}
.sws-mobile-menu .sub-menu .menu-item > a:hover {
  background: var(--color-background) !important;
  opacity: 1;
}
.sws-mobile-menu .sub-menu .current-menu-item > a {
  background: var(--color-surface) !important;
  color: var(--color-forest) !important;
  font-weight: 500 !important;
  opacity: 1;
}

/* Social row inside mobile menu */
.sws-mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 0;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.sws-mobile-menu__social a { color:var(--color-body); display:flex; transition:var(--transition-base); }
.sws-mobile-menu__social a:hover { color:var(--color-gold); }
.sws-mobile-menu__social svg { width:1.25rem; height:1.25rem; }

/* ── Hero ────────────────────────────────────────────────────────── */
.sws-hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background-color: #1a2420;
  /* Isolate the hero from scroll-triggered repaints on mobile */
  isolation: isolate;
}
.sws-hero__bg {
  position:absolute; inset:0; width:100%; height:100%; overflow:hidden;
  /* Promote to its own compositing layer to prevent scroll jump */
  transform: translateZ(0);
}
.sws-hero__bg img {
  width:100%; height:100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  /* Ken Burns animation driven by JS (theme.js) for mobile scroll stability */
  transform: scale(1.05) translate(0, 0);
  transition: none;
}
.sws-hero__overlay {
  position:absolute; inset:0;
  background: linear-gradient(to bottom,rgba(0,0,0,.50) 0%,rgba(0,0,0,.30) 50%,rgba(0,0,0,.50) 100%);
  z-index:1;
}
.sws-hero__content {
  position:relative; z-index:2; height:100%;
  display:flex; align-items:center; justify-content:center;
  padding-top:80px;
}
.sws-hero__inner {
  max-width:var(--max-width-content);
  width:100%;
  margin-inline:auto;
  padding-inline:1.5rem;
  text-align:center;
}
@media (min-width:1024px) { .sws-hero__inner { padding-inline:3rem; } }
.sws-hero__heading {
  font-size:clamp(2.25rem,6vw,4.5rem);
  font-weight:var(--font-weight-light);
  color:#FAF8F5;
  line-height:1.1;
  margin-bottom:1.5rem;
}
.sws-hero__text {
  font-size:clamp(1rem,2vw,1.125rem);
  color:rgba(250,248,245,.90);
  line-height:1.625;
  max-width:42rem;
  margin-inline:auto;
  margin-bottom:2rem;
}
.sws-hero__actions { display:flex; flex-wrap:wrap; gap:0.75rem; justify-content:center; }
.sws-hero__scroll {
  position:absolute; bottom:1.5rem; left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  animation:bounceScroll 2s ease-in-out infinite;
}
.sws-hero__scroll span { font-size:var(--text-xs); letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,.80); }
.sws-hero__scroll-line { width:1px; height:3rem; background:linear-gradient(to bottom,rgba(255,255,255,.60),transparent); }
@keyframes bounceScroll {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%     { transform:translateX(-50%) translateY(8px); }
}

/* ── Hero — sand layout (all screen sizes) ───────────────────────── */
/* Sand background, no photo, no dark overlay */
.sws-hero                { background-color:var(--color-surface); }
.sws-hero__bg            { display:none; }
.sws-hero__overlay       { display:none; }

/* Dark text */
.sws-hero__heading       { color:var(--color-forest); }
.sws-hero__text          { color:var(--color-body); }

/* Buttons inverted for light background */
.sws-hero .sws-btn--white {
  background-color:var(--color-forest);
  color:#fff !important;
  border-color:var(--color-forest);
}
.sws-hero .sws-btn--white-forest {
  background-color:transparent;
  color:var(--color-forest);
  border:1.5px solid var(--color-forest);
}

/* Scroll indicator — dark */
.sws-hero__scroll span       { color:rgba(61,79,71,.65); }
.sws-hero__scroll-line       { background:linear-gradient(to bottom,rgba(61,79,71,.45),transparent); }


/* ── Homepage header — sand background to blend with hero ────────── */
.home .sws-header {
  background-color:var(--color-surface);
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
}
/* Once scrolled past the hero, revert to white */
.home .sws-header.is-scrolled {
  background-color:rgba(255,255,255,0.98);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 1px 3px rgba(0,0,0,0.06);
}
/* Mobile menu open — header bar itself must be white, not sand */
.home .sws-header:has(.sws-mobile-menu.is-open) {
  background-color:#ffffff;
}

/* ── Hero dandelion scene — all screen sizes ─────────────────────── */
.sws-hero-scene {
  display:block;
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:auto;
  pointer-events:none;
  z-index:1;
  overflow:visible;
}
/* Hide scattered static seed paths; keep receptacle + stem */
.sws-hero-scene__svg #Dandelion > path { display:none; }
.sws-hero-scene__svg #Dandelion > path:first-child,
.sws-hero-scene__svg #Dandelion > path:nth-child(2) { display:block; }
/* Hide all three direct <g> children — groups 1&2 are near-stem "already blown"
   seeds; group 3 contains both head seeds and in-flight seeds mixed together */
.sws-hero-scene__svg #Dandelion > g { display:none; }
/* Show only the centre circle (last sub-group of group 3) */
.sws-hero-scene__svg #Dandelion > g:nth-of-type(3) > g:last-child { display:block; }
/* Head overlay */
.sws-head-overlay { position:absolute; inset:0; pointer-events:none; z-index:3; }
.sws-head-seed {
  position:absolute;
  width:28px;
  aspect-ratio:17.5338 / 28.33;
  transform-origin:center bottom;
  transform:rotate(var(--ha,0deg)) translateY(var(--ry,-20px));
  opacity:0.9;
  transition:opacity 0.35s ease;
  overflow:visible;
}
.sws-head-seed > div,
.sws-head-seed svg { overflow:visible; width:100%; height:100%; }
.sws-head-seed.is-blown { opacity:0; }
.sws-hero-scene__svg {
  height:100%;
  width:auto;
  display:block;
}
@media (min-width:1024px) {
  .sws-hero-scene { max-width:56vw; }
}

/* ── Dandelion seed animation ────────────────────────────────────── */
.sws-seeds-overlay {
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  overflow:hidden;
}
/* Outer element: constant horizontal drift + opacity fade */
.sws-seed {
  position:absolute;
  width:clamp(1.75rem, 2.5vw, 2.75rem);
  aspect-ratio:17.5338 / 28.33;
  opacity:0;
  animation:sws-seed-x var(--dur,4.5s) linear forwards;
}
/* Inner element (from sws_dandelion()): vertical arch + spin — decoupled from X */
.sws-seed > div {
  width:100%;
  height:100%;
  animation:
    sws-seed-y   var(--dur,4.5s) linear forwards,
    sws-seed-rot var(--dur,4.5s) linear forwards;
}
@keyframes sws-seed-x {
  0%   { opacity:0; translate:0 0; }
  5%   { opacity:0.9; }
  82%  { opacity:0.9; }
  100% { opacity:0; translate:var(--tx,400px) 0; }
}
@keyframes sws-seed-y {
  /* ease-out up to peak: blown fast, decelerates; ease-in down: gravity accelerates */
  0%   { translate:0 0;                   animation-timing-function:cubic-bezier(0.33,1,0.68,1); }
  38%  { translate:0 var(--ty-pk,-80px);  animation-timing-function:cubic-bezier(0.32,0,0.67,0); }
  100% { translate:0 var(--ty-end,80px); }
}
@keyframes sws-seed-rot {
  from { rotate:var(--r0,0deg); }
  to   { rotate:calc(var(--r0,0deg) + var(--rd,200deg)); }
}

/* Mobile — text anchored to bottom, illustration fills screen above */
@media (max-width:1023px) {
  /* Sand gradient rising from bottom makes text readable over the illustration */
  .sws-hero::after {
    content:'';
    position:absolute;
    bottom:0; left:0; right:0;
    height:55%;
    background:linear-gradient(to bottom, transparent, rgba(245,240,232,0.80) 45%, var(--color-surface) 80%);
    z-index:4;
    pointer-events:none;
  }
  /* Push content to bottom, above the gradient */
  .sws-hero__content {
    align-items:flex-end;
    justify-content:center;
    padding-bottom:3.5rem;
    z-index:5;
  }
  .sws-hero__inner {
    max-width:100%;
    text-align:center;
    margin-inline:auto;
    padding-inline:1.5rem;
  }
  .sws-hero__text  { font-size:0.875rem; margin-inline:auto; }
  .sws-hero__actions { justify-content:center; flex-wrap:wrap; gap:0.625rem; }
  .sws-hero__actions .sws-btn { padding:0.65rem 1.25rem; font-size:0.8125rem; }
  /* Ground the header with a subtle gold line on mobile */
  .sws-header { border-bottom:1px solid rgba(139,115,85,0.25); }
}

/* ── Intro — py-32 bg-white ─────────────────────────────────────── */
.sws-intro { padding-block:var(--space-section-xl); background-color:var(--color-white); text-align:center; }
.sws-intro__heading { font-size:clamp(2rem,5vw,4.5rem); font-weight:var(--font-weight-light); color:var(--color-forest); line-height:1.2; margin-bottom:2rem; }
.sws-intro__text { font-size:var(--text-lg); color:var(--color-body); line-height:1.625; max-width:48rem; margin-inline:auto; }

/* ── Services list — py-20 bg-[#FAF8F5] ────────────────────────── */
.sws-services-list { padding-block:var(--space-section-lg); background-color:var(--color-background); }
.sws-services-list__header { text-align:center; margin-bottom:5rem; }
.sws-services-list__header h2 { font-size:clamp(2rem,4.5vw,3rem); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:1.5rem; }
.sws-services-list__header p { font-size:var(--text-lg); color:var(--color-body); max-width:42rem; margin-inline:auto; margin-top:1.5rem; }

.sws-service-row {
  display:block; padding:2rem;
  border-bottom:1px solid var(--color-border);
  border-radius:var(--radius-3xl);
  transition:all 0.5s ease;
  cursor:pointer; text-decoration:none; color:inherit;
}
.sws-service-row:hover { background-color:var(--color-white); color:inherit; }
.sws-service-row__inner { display:flex; flex-direction:column; gap:1rem; }
@media (min-width:768px) { .sws-service-row__inner { flex-direction:row; align-items:center; justify-content:space-between; } }
.sws-service-row__title { font-size:var(--text-2xl); font-weight:var(--font-weight-light); color:var(--color-forest); transition:color 0.5s ease; margin-bottom:0.5rem; }
.sws-service-row:hover .sws-service-row__title { color:var(--color-gold); }
.sws-service-row__desc { color:var(--color-body); line-height:1.625; }
.sws-service-row__arrow { flex-shrink:0; color:var(--color-gold); width:1.25rem; height:1.25rem; }

/* ── Feature sections — py-32 ──────────────────────────────────── */
.sws-feature { padding-block:var(--space-section-xl); }
.sws-feature__grid { display:grid; grid-template-columns:1fr; gap:4rem; align-items:center; }
@media (min-width:1024px) { .sws-feature__grid { grid-template-columns:1fr 1fr; } }

/* SOMA: image order-2→lg:order-1, content order-1→lg:order-2 */
.sws-feature__image--left  { order:2; }
.sws-feature__content--right { order:1; }
@media (min-width:1024px) {
  .sws-feature__image--left  { order:1; }
  .sws-feature__content--right { order:2; }
}

.sws-feature__image { position:relative; border-radius:var(--radius-3xl); overflow:hidden; box-shadow:var(--shadow-xl); }
.sws-feature__image--portrait { aspect-ratio:3/4; }
.sws-feature__image--tall     { aspect-ratio:4/5; }
.sws-feature__image img { width:100%; height:100%; object-fit:cover; }
.sws-feature__content { display:flex; flex-direction:column; gap:1.5rem; }
.sws-feature__heading { font-size:clamp(2rem,4.5vw,3rem); font-weight:var(--font-weight-light); color:var(--color-forest); line-height:1.2; }
.sws-feature__text { font-size:var(--text-lg); color:var(--color-body); line-height:1.625; }
.sws-feature__list { display:flex; flex-direction:column; gap:1rem; }
.sws-feature__list li { display:flex; align-items:flex-start; gap:1rem; color:var(--color-body); }
.sws-feature__list li::before { content:''; width:0.375rem; height:0.375rem; border-radius:50%; background-color:var(--color-gold); flex-shrink:0; margin-top:0.55rem; }

/* ── Testimonial — py-32 gradient ──────────────────────────────── */
.sws-testimonial {
  padding-block: var(--space-section-xl);
  background: linear-gradient(135deg,#F8F5F0 0%,#F4EFE6 30%,#EFECE2 70%,#F8F5F0 100%);
  position: relative;
  overflow: hidden;
}
.sws-testimonial__header { text-align:center; margin-bottom:4rem; }
.sws-testimonial__header h2 { font-size:clamp(2rem,4.5vw,3rem); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:1.5rem; }
.sws-testimonial__inner { max-width:var(--max-width-content); margin-inline:auto; }
.sws-testimonial__quote { font-size:clamp(1.25rem,3vw,1.875rem); font-weight:var(--font-weight-light); font-style:italic; color:var(--color-forest); line-height:1.625; text-align:center; margin-bottom:2rem; }
.sws-testimonial__attr { display:flex; align-items:center; justify-content:center; gap:1rem; margin-bottom:2rem; }
.sws-testimonial__line { width:3rem; height:1px; background-color:var(--color-gold); flex-shrink:0; }
.sws-testimonial__name { font-weight:var(--font-weight-normal); color:var(--color-forest); text-align:center; }
.sws-testimonial__role { font-size:var(--text-sm); color:var(--color-body); text-align:center; }
.sws-testimonial__link { text-align:center; }

/* Floating dandelion decorations in testimonial */
/* Right dandelion floats up first (12s), left follows with 3s delay (15s) */
@keyframes riseRight {
  0%   { transform: translateY(150%) translateX(0) rotate(0deg);   opacity: 0.25; }
  5%   { opacity: 0.25; }
  80%  { opacity: 0.25; }
  95%  { opacity: 0; }
  100% { transform: translateY(-1000%) translateX(30px) rotate(15deg); opacity: 0; }
}
@keyframes riseLeft {
  0%   { transform: translateY(150%) translateX(0) rotate(0deg);   opacity: 0.30; }
  5%   { opacity: 0.30; }
  80%  { opacity: 0.30; }
  95%  { opacity: 0; }
  100% { transform: translateY(-1000%) translateX(-40px) rotate(-20deg); opacity: 0; }
}
.sws-testimonial__dandelion {
  position: absolute;
  pointer-events: none;
  bottom: 0;
}
.sws-testimonial__dandelion--right {
  right: 10%;
  width: clamp(12rem,17vw,17rem);
  height: clamp(12rem,17vw,17rem);
  animation: riseRight 12s linear infinite;
  animation-delay: 0s;
}
.sws-testimonial__dandelion--left {
  left: 15%;
  width: clamp(12rem,17vw,17rem);
  height: clamp(12rem,17vw,17rem);
 /* transform: scaleX(-1);*/
  animation: riseLeft 15s linear infinite;
  animation-delay: 3s;
}

/* ── Offers ─────────────────────────────────────────────────────── */
.sws-offers { padding-block:var(--space-section-lg); background-color:var(--color-background); }
.sws-offers__header { text-align:center; margin-bottom:3rem; }
.sws-offers__header h2 { font-size:clamp(2rem,4.5vw,3rem); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:1.5rem; }
.sws-offers__header p { font-size:var(--text-lg); color:var(--color-body); max-width:42rem; margin-inline:auto; }
.sws-offers__grid { display:grid; grid-template-columns:1fr; gap:2rem; max-width:860px; margin-inline:auto; }

.sws-offer-card { background:var(--color-white); border-radius:1rem; overflow:hidden; border:1.5px solid rgba(193,123,78,0.35); box-shadow:0 4px 24px rgba(193,123,78,0.08); transition:transform 0.3s ease,box-shadow 0.3s ease; display:flex; flex-direction:column; }
.sws-offer-card:hover { transform:translateY(-4px); box-shadow:0 8px 32px rgba(193,123,78,0.18); }
@media (min-width:768px) { .sws-offer-card { flex-direction:row; } }

.sws-offer-card__image { aspect-ratio:16/9; overflow:hidden; position:relative; background:var(--color-offer-light); }
@media (min-width:768px) { .sws-offer-card__image { aspect-ratio:unset; width:38%; flex-shrink:0; min-height:280px; } }
.sws-offer-card__image img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
.sws-offer-card:hover .sws-offer-card__image img { transform:scale(1.04); }
.sws-offer-card__image--placeholder { display:flex; align-items:center; justify-content:center; }

.sws-offer-card__badge { position:absolute; top:1rem; left:1rem; background:var(--color-offer); color:#fff; font-size:0.65rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; padding:0.3rem 0.8rem; border-radius:62.5rem; }

.sws-offer-card__body { padding:1.75rem; flex:1; display:flex; flex-direction:column; gap:1rem; }
.sws-offer-card__title { font-size:var(--text-2xl); font-weight:var(--font-weight-light); color:var(--color-forest); margin:0; }
.sws-offer-card__desc { color:var(--color-body); line-height:1.625; margin:0; }
.sws-offer-card__dates { display:flex; align-items:center; gap:0.5rem; color:var(--color-offer); font-size:var(--text-sm); font-weight:500; }
.sws-offer-card__services { display:flex; flex-wrap:wrap; gap:0.5rem; }
.sws-offer-card__service-pill { background:var(--color-offer-light); color:var(--color-offer-dark); font-size:var(--text-xs); padding:0.25rem 0.75rem; border-radius:62.5rem; border:1px solid rgba(193,123,78,0.2); white-space:nowrap; }
.sws-offer-card__footer { margin-top:auto; padding-top:0.5rem; }

.sws-btn--offer { background-color:var(--color-offer); color:var(--color-white) !important; }
.sws-btn--offer:hover { background-color:var(--color-offer-dark); color:var(--color-white) !important; }

/* ── CTA — py-32 bg-[#FAF8F5] ──────────────────────────────────── */
.sws-cta { padding-block:var(--space-section-xl); background-color:var(--color-background); text-align:center; }
.sws-cta__heading { font-size:clamp(2rem,4.5vw,3rem); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:2rem; }
.sws-cta__text { font-size:var(--text-xl); color:var(--color-body); max-width:40rem; margin-inline:auto; margin-bottom:3rem; line-height:1.625; }

/* ── Footer — bg-[#3D4F47] py-20 ──────────────────────────────── */
.sws-footer { background-color:var(--color-forest); color:var(--color-white); padding-block:5rem; }
.sws-footer__grid { display:grid; grid-template-columns:1fr; gap:4rem; margin-bottom:4rem; }
@media (min-width:768px) { .sws-footer__grid { grid-template-columns:1fr 2fr; } }
.sws-footer__brand { display:flex; flex-direction:column; gap:1.5rem; }
.sws-footer__logo img,
.sws-footer__logo .sws-logo__img { height:48px; width:auto; }
.sws-footer__brand .sws-logo__shift { color:var(--color-footer-text); }
.sws-footer__brand p { color:var(--color-footer-text); line-height:1.75; margin:0; }
.sws-footer__links { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.sws-footer__col h3 { font-size:var(--text-xs); letter-spacing:0.2em; text-transform:uppercase; color:var(--color-footer-text); font-weight:var(--font-weight-normal); margin-bottom:1.5rem; }
.sws-footer__col ul { display:flex; flex-direction:column; gap:0.75rem; list-style:none; }
.sws-footer__col a { color:rgba(255,255,255,.80); font-size:var(--text-sm); transition:var(--transition-base); }
.sws-footer__col a:hover { color:var(--color-white); }
.sws-footer__social { display:flex; gap:1rem; margin-bottom:1.5rem; }
.sws-footer__social a { color:rgba(255,255,255,.80); transition:var(--transition-base); display:flex; align-items:center; }
.sws-footer__social a:hover { color:var(--color-white); }
.sws-footer__social svg { width:1.5rem; height:1.5rem; }
.sws-footer__bottom { padding-top:2rem; border-top:1px solid rgba(255,255,255,.20); text-align:center; }
.sws-footer__bottom p { color:var(--color-footer-text); font-size:var(--text-sm); }

/* ── Inner page hero — fixed header gap ─────────────────────────── */
/*
  All inner pages need padding-top = header height (80px) + section gap.
  .sws-page-hero provides this via a class (no inline style needed).
  Inline styles on the same element would override this, so pages must
  NOT set padding-top inline — they use this class instead.
*/
.sws-page-hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.sws-page-hero--center { text-align:center; }
.sws-page-hero--center .sws-page-hero__inner { margin-inline:auto; }
.sws-page-hero__inner { max-width:48rem; }
.sws-page-hero__heading { font-size:clamp(3rem,7vw,5rem); font-weight:var(--font-weight-light); color:var(--color-forest); line-height:1.1; margin-bottom:2rem; }
.sws-page-hero__text { font-size:var(--text-lg); color:var(--color-body); line-height:1.75; }

/* ── About — 2-column bio grid ──────────────────────────────────── */
/*
  WHY THIS NEEDS !important:
  Any remnant inline style="display:grid;grid-template-columns:1fr" on
  the element would beat the class (specificity 1000 vs 10).
  !important raises class specificity above inline styles.
*/
.sws-about-bio__grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width:1024px) {
  .sws-about-bio__grid { grid-template-columns:1fr 1fr !important; }
}
.sws-about-bio__image { aspect-ratio:4/5; border-radius:var(--radius-3xl); overflow:hidden; box-shadow:var(--shadow-xl); }
.sws-about-bio__image img { width:100%; height:100%; object-fit:cover; }

/* Pull quote */
.sws-pull-quote { border-left:3px solid var(--color-gold); padding-left:1.5rem; font-size:var(--text-xl); font-style:italic; color:var(--color-forest); font-weight:var(--font-weight-light); line-height:1.6; }

/* Qualification row */
.sws-qual-item { background:var(--color-background); border-radius:var(--radius-xl); padding:1.5rem 2rem; transition:var(--transition-slow); display:flex; align-items:center; gap:1rem; }
.sws-qual-item:hover { box-shadow:var(--shadow-lg); }
.sws-qual-item__dot { width:0.5rem; height:0.5rem; border-radius:50%; background:var(--color-gold); flex-shrink:0; }
.sws-qual-item__text { font-size:var(--text-lg); color:var(--color-forest); }

/* Values cards */
.sws-value-card { text-align:center; background:var(--color-background); border-radius:var(--radius-3xl); padding:2.5rem; transition:var(--transition-slow); }
.sws-value-card:hover { box-shadow:var(--shadow-xl); }
.sws-value-card h3 { font-size:var(--text-2xl); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:1rem; }

/* ── Corporate ───────────────────────────────────────────────────── */
.sws-corp-hero-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width:1024px) {
  .sws-corp-hero-grid { grid-template-columns:1fr 1fr !important; }
}

/* Benefits 4-card grid */
.sws-benefits-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:2rem; }
.sws-benefit-card { background:var(--color-white); border-radius:var(--radius-3xl); padding:2rem; transition:var(--transition-slow); }
.sws-benefit-card:hover { box-shadow:var(--shadow-xl); }
.sws-benefit-card__icon { color:var(--color-gold); margin-bottom:1.5rem; }
.sws-benefit-card h3 { font-size:var(--text-xl); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:1rem; }

/* Offerings feature checklist — EXACTLY 2 columns */
.sws-offerings-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 2rem;
  margin-top: 0.5rem;
}
@media (max-width:640px) { .sws-offerings-features { grid-template-columns:1fr; } }

/* ── Services page overlapping layout ───────────────────────────── */
.sws-service-block { position:relative; min-height:500px; }
.sws-service-block__image { position:absolute; top:0; height:100%; width:65%; border-radius:var(--radius-3xl); overflow:hidden; box-shadow:var(--shadow-xl); }
.sws-service-block__image img { width:100%; height:100%; object-fit:cover; }
.sws-service-block__image--right { right:0; }
.sws-service-block__image--left  { left:0; }
.sws-service-block__card { position:relative; width:60%; z-index:1; padding-block:3rem; }
.sws-service-block__card--right { margin-left:auto; }
.sws-service-block__inner { background:var(--color-background); padding:3rem; border-radius:var(--radius-3xl); box-shadow:var(--shadow-xl); }
@media (max-width:1023px) {
  .sws-service-block { min-height:unset; }
  .sws-service-block__image { position:static; width:100%; aspect-ratio:4/3; height:unset; margin-bottom:1.5rem; }
  .sws-service-block__card { position:static; width:100%; padding-block:0; }
  .sws-service-block__card--right { margin-left:0; }
}
@media (max-width:1023px) { .sws-services-desktop { display:none !important; } .sws-services-mobile { display:flex !important; flex-direction:column; gap:1.5rem; } }
@media (min-width:1024px) { .sws-services-mobile { display:none !important; } .sws-services-desktop { display:flex !important; } }

/* ── Events ─────────────────────────────────────────────────────── */
.sws-events-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:2rem; }
.sws-event-card { background:var(--color-white); border-radius:var(--radius-2xl); overflow:hidden; box-shadow:var(--shadow-lg); transition:var(--transition-slow); }
.sws-event-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-xl); }
.sws-event-card__image { position:relative; height:18rem; overflow:hidden; }
.sws-event-card__image img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.sws-event-card:hover .sws-event-card__image img { transform:scale(1.05); }
.sws-event-card__body { padding:2rem; }
.sws-event-card__title { font-size:var(--text-2xl); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:1.5rem; }
.sws-event-card__meta { display:flex; flex-direction:column; gap:0.75rem; margin-bottom:1.5rem; }
.sws-event-card__meta-item { display:flex; align-items:center; gap:0.75rem; color:var(--color-body); font-size:var(--text-sm); }
.sws-event-card__meta-item svg { width:1rem; height:1rem; flex-shrink:0; color:var(--color-gold); }

/* ── Testimonials page grid ─────────────────────────────────────── */
.sws-testimonials-grid { display:grid; grid-template-columns:1fr; gap:2rem; }
@media (min-width:768px)  { .sws-testimonials-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1024px) { .sws-testimonials-grid { grid-template-columns:repeat(3,1fr); } }
.sws-testimonial-card { background:var(--color-white); border-radius:var(--radius-3xl); padding:2rem; box-shadow:var(--shadow-md); transition:var(--transition-slow); }
.sws-testimonial-card:hover { box-shadow:var(--shadow-xl); transform:translateY(-2px); }
.sws-testimonial-card__quote { font-size:var(--text-base); color:var(--color-body); line-height:1.75; font-style:italic; margin-bottom:1.5rem; }
.sws-testimonial-card__author { font-weight:var(--font-weight-medium); color:var(--color-forest); font-size:var(--text-sm); }
.sws-testimonial-card__service { font-size:var(--text-xs); color:var(--color-gold); letter-spacing:0.1em; text-transform:uppercase; margin-top:0.25rem; }

/* ── Contact ────────────────────────────────────────────────────── */
.sws-contact__grid { display:grid; grid-template-columns:1fr; gap:4rem; }
@media (min-width:1024px) { .sws-contact__grid { grid-template-columns:1fr 1fr; } }
.sws-contact-form { display:flex; flex-direction:column; gap:1.5rem; }
.sws-form-field { display:flex; flex-direction:column; gap:0.5rem; }
.sws-form-field label { font-size:var(--text-sm); font-weight:var(--font-weight-medium); color:var(--color-forest); }
.sws-form-field input,.sws-form-field textarea,.sws-form-field select { width:100%; padding:0.875rem 1rem; border:1px solid var(--color-border); border-radius:var(--radius-md); font-size:var(--text-base); color:var(--color-forest); background-color:var(--color-white); transition:var(--transition-base); outline:none; font-family:var(--font-family); }
.sws-form-field input:focus,.sws-form-field textarea:focus,.sws-form-field select:focus { border-color:var(--color-gold); box-shadow:0 0 0 3px rgba(139,115,85,.12); }
.sws-form-field textarea { resize:vertical; min-height:150px; }
.sws-contact-info { display:flex; flex-direction:column; gap:2rem; }
.sws-contact-info__item h3 { font-size:var(--text-xs); letter-spacing:0.15em; text-transform:uppercase; color:var(--color-gold); font-weight:var(--font-weight-medium); margin-bottom:0.5rem; }
.sws-contact-info__item p,.sws-contact-info__item a { color:var(--color-body); }

/* ── Booking modal ──────────────────────────────────────────────── */
#bookingModal { display:none; position:fixed; inset:0; background:rgba(0,0,0,.50); z-index:99999; align-items:center; justify-content:center; padding:1.5rem; backdrop-filter:blur(8px); }
#bookingModal.is-open { display:flex; }
.sws-modal { background:var(--color-white); border-radius:var(--radius-2xl); max-width:500px; width:100%; max-height:90vh; overflow-y:auto; box-shadow:var(--shadow-xl); }
.sws-modal__header { padding:2rem; border-bottom:1px solid var(--color-border); display:flex; justify-content:space-between; align-items:flex-start; }
.sws-modal__close { background:none; border:none; font-size:2rem; color:var(--color-body); cursor:pointer; padding:0; width:32px; height:32px; display:flex; align-items:center; justify-content:center; line-height:1; flex-shrink:0; transition:var(--transition-base); }
.sws-modal__close:hover { color:var(--color-forest); }
.sws-modal__service-name { font-size:var(--text-2xl); font-weight:var(--font-weight-light); color:var(--color-forest); margin-bottom:0.5rem; }
.sws-modal__price { font-size:var(--text-xl); color:var(--color-gold); font-weight:var(--font-weight-medium); }
.sws-modal__body { padding:2rem; }
.sws-modal__intro { color:var(--color-body); margin-bottom:2rem; line-height:1.75; }
.sws-modal__field { margin-bottom:1.5rem; }
.sws-modal__field label { display:block; margin-bottom:0.5rem; font-size:var(--text-sm); color:var(--color-forest); font-weight:var(--font-weight-medium); }
.sws-modal__field input,.sws-modal__field select { width:100%; padding:0.875rem; border:1px solid var(--color-border); border-radius:var(--radius-md); font-size:var(--text-base); font-family:var(--font-family); color:var(--color-forest); box-sizing:border-box; outline:none; transition:var(--transition-base); }
.sws-modal__field input:focus,.sws-modal__field select:focus { border-color:var(--color-gold); box-shadow:0 0 0 3px rgba(139,115,85,.12); }
.sws-modal__price-summary { display:none; background-color:var(--color-background); border-radius:var(--radius-md); padding:1.5rem; margin-bottom:1.5rem; }
.sws-modal__price-summary.is-visible { display:block; }
.sws-modal__price-row { display:flex; justify-content:space-between; align-items:center; }
.sws-modal__price-row span:first-child { color:var(--color-forest); font-weight:var(--font-weight-medium); }
.sws-modal__price-row span:last-child { font-size:var(--text-2xl); font-weight:var(--font-weight-medium); color:var(--color-gold); }
.sws-modal__price-note { font-size:var(--text-sm); color:var(--color-body); margin-top:1rem; }
.sws-modal__actions { display:flex; gap:0.5rem; }
.sws-modal__actions .sws-btn { flex:1; justify-content:center; padding:0.75rem 1rem; font-size:0.8rem; }
.sws-modal__consent { margin-bottom:1rem; }
.sws-modal__consent label { display:flex; align-items:flex-start; gap:0.75rem; cursor:pointer; }
.sws-modal__consent input[type="checkbox"] { margin-top:3px; width:16px; height:16px; accent-color:var(--color-gold); flex-shrink:0; }
.sws-modal__consent span { font-size:var(--text-sm); color:var(--color-forest); line-height:1.5; }
.sws-modal__consent--optional span { color:var(--color-body); }
.sws-modal__loading,.sws-modal__no-slots { display:none; font-size:var(--text-sm); margin-top:0.5rem; }
.sws-modal__loading { color:var(--color-gold); }
.sws-modal__no-slots { color:#8B2020; background-color:#fdecea; padding:0.75rem 1rem; border-radius:var(--radius-sm); }
.spots-notice { color:var(--color-gold); font-weight:var(--font-weight-medium); margin-top:0.5rem; font-size:var(--text-sm); }


/* ── Inner page hero dandelion — responsive sizing ───────────────── */
/* Matches React: w-28/lg:w-40, h-40/lg:h-56, right-4/lg:right-12   */
[data-dandelion="hero"] {
    position: absolute;
    right: 1rem;
    top: calc(50% - 80px);
    transform: translateY(-50%) scaleX(-1);
    width: 7rem;
    height: 10rem;
    opacity: 0.6;
}
@media (min-width: 1024px) {
    [data-dandelion="hero"] {
        right: max(3rem, calc((100% - 1280px) / 2 + 3rem));
        top: 50%;
        width: 10rem;
        height: 14rem;
    }
}

/* ── Dandelion SVG ──────────────────────────────────────────────── */
/*
  SVG must use <line> elements with stroke attribute for the spokes to
  render. The sws_dandelion() PHP function outputs correct markup.
  This rule ensures the SVG container doesn't clip its contents.
*/
.sws-dandelion, .sws-dandelion svg,
.sws-testimonial__dandelion,
.sws-testimonial__dandelion svg,
.sws-testimonial__dandelion > div { overflow:visible; }

/* ── Confirmation page ──────────────────────────────────────────── */
.sws-confirmation { padding-top:var(--space-section); padding-bottom:var(--space-section); min-height:100vh; display:flex; align-items:center; text-align:center; background-color:var(--color-background); }
.sws-confirmation__icon { width:4rem; height:4rem; background-color:var(--color-surface); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-inline:auto; margin-bottom:2rem; color:var(--color-gold); }
.sws-confirmation__icon svg { width:2rem; height:2rem; }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(2rem); } to { opacity:1; transform:translateY(0); } }
.sws-fade-up { opacity:0; animation:fadeUp 0.6s ease forwards; }
.sws-fade-up--delay-1 { animation-delay:0.1s; }
.sws-fade-up--delay-2 { animation-delay:0.2s; }
.sws-fade-up--delay-3 { animation-delay:0.3s; }
.sws-fade-up--delay-4 { animation-delay:0.4s; }

/* ── Utilities ──────────────────────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }
.text-center { text-align:center; }
.text-gold   { color:var(--color-gold); }
.text-forest { color:var(--color-forest); }
.text-body   { color:var(--color-body); }

/* ── Stats (corporate dark section) ────────────────────────────── */
.sws-stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background-color:rgba(255,255,255,.10); border-radius:var(--radius-xl); overflow:hidden; }
.sws-stat { background-color:rgba(255,255,255,.05); padding:2rem; text-align:center; }
.sws-stat__number { font-size:var(--text-4xl); font-weight:var(--font-weight-light); color:var(--color-background); line-height:1; margin-bottom:0.5rem; }
.sws-stat__label { font-size:var(--text-sm); color:var(--color-footer-text); letter-spacing:0.05em; }

/* ── Mobile responsive ──────────────────────────────────────────── */
@media (max-width:767px) {
  .sws-feature__image--left,.sws-feature__content--right { order:unset; }
}

/* ── Print ──────────────────────────────────────────────────────── */
@media print { .sws-header,.sws-footer,#bookingModal { display:none !important; } }
