/* =========================================
   SheWhoRests - Global Design System v2
   ========================================= */

/* --- Tokens --- */
:root {
  --cream:        #faf8ef;   /* Linen White     - page base          */
  --cream-dark:   #ebdbc9;   /* Almond Cream    - warm beige         */
  --cream-med:    #e5d4c8;
  --sand:         #d4bdb0;
  --sand-dark:    #b8917e;
  --forest:       #560001;   /* Ancient Crimson - PRIMARY            */
  --forest-light: #7a1515;
  --sage:         #7A8A60;   /* Sage Green      - kept               */
  --sage-btn:     #7A8A60;
  --terra:        #7a1515;
  --terra-light:  #c3a291;   /* Clay Rose       - accent             */
  --gold:         #c3a291;   /* Clay Rose       - accent             */
  --ink:          #3d1e1d;   /* Espresso Earth  - text               */
  --ink-mid:      #5c3232;
  --ink-soft:     #8a5858;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-full:  999px;

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container:    1180px;
  --nav-h:        80px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
}


/* =========================================
   WAVE SECTION DIVIDERS
   ========================================= */
.wave-join {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-join svg {
  display: block;
  width: 100%;
  height: clamp(44px, 5vw, 72px);
}
.wave-join--to-forest { background: var(--cream); }
.wave-join--to-footer { background: var(--forest); }


/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px) scale(0.984);
  filter: blur(4px);
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  filter: blur(3px);
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  filter: blur(3px);
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Stagger delays for grids */
.method-pillar:nth-child(1).reveal-up { transition-delay: 0s; }
.method-pillar:nth-child(2).reveal-up { transition-delay: 0.18s; }
.method-pillar:nth-child(3).reveal-up { transition-delay: 0.36s; }
.value-card:nth-child(1) { transition-delay: 0s; }
.value-card:nth-child(2) { transition-delay: 0.1s; }
.value-card:nth-child(3) { transition-delay: 0.2s; }
.value-card:nth-child(4) { transition-delay: 0.3s; }
.value-card:nth-child(5) { transition-delay: 0.4s; }


/* =========================================
   CALENDLY POPUP FIX
   ========================================= */
.calendly-overlay,
.calendly-popup-close,
.calendly-popup {
  z-index: 99999 !important;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: #faf8ef;
  box-shadow: 0 1px 16px rgba(61,30,29,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250,248,239,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(61,30,29,0.08);
}
.nav-container {
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.78; }
.nav-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links > li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--sage); }
.nav-links a.nav-active::after { width: 100%; background: var(--sage); }

.nav-cta {
  flex-shrink: 0;
  padding: 0.52rem 1.2rem;
  background: var(--sage-btn);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--forest); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink-mid);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =========================================
   NAV DROPDOWNS
   ========================================= */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.28em;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-dropdown-btn:hover { color: var(--sage); }
.nav-dropdown.active > .nav-dropdown-btn { color: var(--sage); }

.nav-chevron {
  font-size: 0.7em;
  display: inline-block;
  transition: transform var(--transition);
  line-height: 1;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(245, 240, 232, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  min-width: 170px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  box-shadow: 0 8px 28px rgba(42,34,24,0.11);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.45rem 1.2rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover {
  color: var(--forest);
  background: rgba(122,138,96,0.07);
}
.nav-dropdown-menu li a.nav-active { color: var(--forest); font-weight: 600; }


/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #C8BFA8; /* Fallback color */
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s cubic-bezier(0.4,0,0.2,1) both;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #554D39;
  margin-bottom: 0.9rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #554D39;
  margin-bottom: 1.2rem;
}
.hero-divider {
  width: 55px; height: 1px;
  background: rgba(85, 77, 57, 0.55);
  margin-bottom: 1.5rem;
}

/* ── Hero Logo Emblem ── */
.hero-emblem {
  margin-bottom: 2rem;
  animation: floatEmblem 6s ease-in-out infinite;
}
@keyframes floatEmblem {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-emblem-img {
  width: clamp(200px, 30vw, 300px);
  height: auto;
  filter: drop-shadow(0 10px 32px rgba(37,94,97,0.18));
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: #554D39;
  line-height: 1.5;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  max-width: 650px;
}
.hero-description {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(85, 77, 57, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  letter-spacing: 0.02em;
}
.hero-btn {
  display: inline-block;
  padding: 0.82rem 2rem;
  border: 1.5px solid rgba(85, 77, 57, 0.65);
  color: #554D39;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.hero-btn:hover {
  background: rgba(85, 77, 57, 0.15);
  border-color: #554D39;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn-alt {
  background: rgba(85, 77, 57, 0.08); /* slight tinted background */
  border-color: transparent;
}
.hero-btn-alt:hover {
  background: rgba(85, 77, 57, 0.15);
  border-color: transparent;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-preview {
  position: relative;
  background: var(--cream);
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.video-preview-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(to bottom, #C8BFA8, transparent);
  pointer-events: none;
  z-index: 1;
}

/* Base flower styling using data URI SVGs to mimic the watercolor illustration */

.video-container-full {
  width: 100%;
  height: 65vh; /* Limit the maximum height */
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.video-container-full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
  opacity: 0.9;
}

/* =========================================
   THE SHEWHORESTS METHOD
   ========================================= */
.method {
  padding: 8rem 2.5rem;
  background-color: #F0EBE1;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.method-container {
  max-width: var(--container);
  margin: 0 auto;
}
.method-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #554D39;
  letter-spacing: 0.04em;
  margin-bottom: 5rem;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.method-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.pillar-icon {
  width: 180px;
  height: 180px;
  color: #554D39;
  margin-bottom: 0.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.method-pillar:hover .pillar-icon {
  transform: scale(1.05);
}

/* Corner Botanical Accents */
.method-corner {
  position: absolute;
  width: 180px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.72;
}
.method-corner svg { width: 100%; height: 100%; }
.method-corner-tl { top: 0; left: 0; }
.method-corner-tr { top: 0; right: 0; transform: scaleX(-1); }
.method-corner-bl { bottom: 0; left: 0; transform: scaleY(-1); }
.method-corner-br { bottom: 0; right: 0; transform: scale(-1); }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--sand-dark);
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: #554D39;
  letter-spacing: 0.02em;
}
.pillar-text {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 320px;
}

/* =========================================
   THE CIRCLES
   ========================================= */
.circles {
  position: relative;
  overflow: hidden;
  background-color: #F5F2ED;
  background-image:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(180,196,178,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 85% 80%, rgba(194,174,148,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 75% 15%, rgba(168,188,168,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 25% 85%, rgba(210,198,180,0.20) 0%, transparent 65%);
}


/* Forest band + floating badge */
.circles-band {
  background: var(--forest);
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 0;
  position: relative;
  z-index: 1;
  position: relative;
}

.circles-badge {
  position: relative;
  z-index: 2;
  margin-bottom: -70px;
}

.circles-badge-svg {
  width: clamp(160px, 20vw, 240px);
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(37,94,97,0.20));
}

/* (hero image removed) */

/* Body section */
.circles-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2.5rem 7rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.circles-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 300;
  color: #554D39;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 4rem;
  letter-spacing: 0.01em;
}
.circles-tagline em {
  font-style: italic;
  color: #6B5C3E;
}

/* Two circle cards */
.circles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto 3.5rem;
}
@media (max-width: 700px) {
  .circles-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

.circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  background: transparent;
}

/* Circular photo */
.circle-photo-wrap {
  width: clamp(240px, 28vw, 320px);
  height: clamp(240px, 28vw, 320px);
  position: relative;
  margin-bottom: 0.4rem;
}
/* Outer thin ring (slightly larger, offset) */
.circle-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.2px solid rgba(194,123,90,0.4);
  pointer-events: none;
}
.circle-photo-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(194,123,90,0.55);
}
.circle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.circle-card:hover .circle-photo {
  transform: scale(1.04);
}

.circle-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: #554D39;
  letter-spacing: 0.02em;
}

.circle-card-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.82;
  text-align: center;
}
.circle-card-desc em {
  font-style: italic;
  color: var(--forest);
}

.circle-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(37,94,97,0.35);
  border-radius: var(--radius-full);
  padding: 0.32rem 1rem;
  margin-top: 0.4rem;
}

.circles-btn {
  display: inline-block;
  padding: 0.82rem 2.2rem;
  background: var(--sage-btn);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: background var(--transition), transform var(--transition);
}
.circles-btn:hover {
  background: var(--forest);
  transform: translateY(-2px);
}


/* =========================================
   ABOUT RITIKA
   ========================================= */
.about {
  position: relative;
  min-height: clamp(400px, 60vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(240, 232, 218, 1.0) 0%,
    rgba(240, 232, 218, 0.95) 45%,
    rgba(240, 232, 218, 0.0) 60%
  );
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 1.5rem;
}

.about-text {
  max-width: 520px;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.about-heading em {
  font-style: italic;
  color: var(--ink);
}

.about-body {
  font-size: 0.97rem;
  color: var(--ink-mid);
  line-height: 1.88;
  margin-bottom: 1.1rem;
}

.about-divider {
  width: 2.5rem;
  height: 1px;
  background: var(--ink-soft);
  margin: 2rem 0 1.4rem;
}

.about-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.about-link:hover {
  color: var(--forest);
  border-color: var(--forest);
}

@media (max-width: 600px) {
  .about-overlay {
    background: rgba(240, 232, 218, 0.55);
  }
  .about-text {
    max-width: 100%;
  }
}


/* =========================================
   OUR SPIRIT - stacked image + text row
   ========================================= */
.spirit { background: #D4D0C4; }

/* Full-width image strip */
.spirit-fullimg {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
}
.spirit-full-svg {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Text + floating sprig row */
.spirit-body-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 2.5rem 6rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
}

.spirit-text { flex: 1; }
.spirit-text .section-label { margin-bottom: 1rem; }

.spirit-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: #554D39;
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}
.spirit-heading em { color: #554D39; font-style: italic; }

.spirit-body-p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.88;
  margin-bottom: 1.1rem;
}
.spirit-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.spirit-link:hover {
  color: var(--terra);
  border-color: var(--terra);
  transform: translateX(4px);
}

/* Floating botanical sprig */
.spirit-sprig {
  flex-shrink: 0;
  width: clamp(90px, 12vw, 145px);
  margin-top: 2rem;
  opacity: 0.88;
  animation: floatSprig 5s ease-in-out infinite;
}
@keyframes floatSprig {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}


/* =========================================
   VALUES / OUR ESSENCE
   ========================================= */
.values {
  padding: 8rem 2.5rem;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.values::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
}
.values::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
}

.values-container { max-width: var(--container); margin: 0 auto; text-align: center; }

.values-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #554D39;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.values-subheading {
  font-size: 0.93rem;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto 4rem;
  line-height: 1.75;
}
.values-grid {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.value-card {
  flex: 0 1 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 2.2rem 1.2rem 1.8rem;
  background: rgba(245,240,232,0.65);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,201,176,0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(37,94,97,0.09);
  background: rgba(245,240,232,0.95);
}
.value-icon {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 88px; height: 88px; }

.value-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #554D39;
  letter-spacing: 0.03em;
  text-align: center;
}
.value-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.65;
}


/* =========================================
   GALLERY - 3-up row
   ========================================= */
.gallery {
  padding: 8rem 0 7rem;
  background: var(--cream);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 2.5rem;
  margin-bottom: 3rem;
}
.gallery-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: #554D39;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Leaf ornaments */
.ornament {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.ornament svg { width: 60px; height: 20px; }
.ornament--right { transform: scaleX(-1); }

/* 3-up layout */
.gallery-3up-wrapper {
  position: relative;
  padding: 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-3up {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 0.8rem;
  align-items: end;
}
.g3-slide { display: flex; flex-direction: column; }
.g3-img {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition);
}
.g3-slide:hover .g3-img {
  transform: scale(1.015);
}
/* Side images taller portrait, center shorter landscape */
.g3-slide:not(.g3-slide--center) .g3-img { aspect-ratio: 3/4; }
.g3-slide--center .g3-img { aspect-ratio: 16/9; }

.g3-img svg { width: 100%; height: 100%; object-fit: cover; }
.g3-caption {
  text-align: center;
  margin-top: 0.85rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.g3-slide--center .g3-caption { font-size: 0.95rem; }

/* Gallery arrows (decorative, minimal) */
.gallery-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245,240,232,0.9);
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  box-shadow: 0 2px 14px rgba(37,94,97,0.07);
  transition: background var(--transition), transform var(--transition), border-color var(--transition), color var(--transition);
}
.gallery-arrow svg { width: 18px; height: 18px; }
.gallery-arrow--prev { left: 0.2rem; }
.gallery-arrow--next { right: 0.2rem; }
.gallery-arrow:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}


/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  position: relative;
  min-height: clamp(440px, 55vw, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 70% 60% at 12% 20%, rgba(122,138,96,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 88% 80%, rgba(196,153,90,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 50% 50%, rgba(162,185,162,0.09) 0%, transparent 70%);
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 2.4rem;
}

/* Slider */
.testimonials-slider {
  width: 100%;
  position: relative;
}

.testimonial-card {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  background: rgba(255, 252, 247, 0.82);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  border: 1px solid rgba(212, 201, 176, 0.45);
  box-shadow: 0 8px 48px rgba(37,94,97,0.07), 0 2px 12px rgba(0,0,0,0.04);
  animation: tFadeIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.testimonial-card.active {
  display: flex;
}
@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.78;
  text-align: center;
  letter-spacing: 0.01em;
  quotes: none;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-style: normal;
}

/* Arrows */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(37, 94, 97, 0.07);
  border: 1px solid rgba(37, 94, 97, 0.2);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.testimonials-arrow svg { width: 18px; height: 18px; }
.testimonials-arrow--prev { left: -1rem; }
.testimonials-arrow--next { right: -1rem; }
.testimonials-arrow:hover {
  background: rgba(37, 94, 97, 0.14);
  border-color: rgba(37, 94, 97, 0.4);
}

/* Dots */
.testimonials-dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 2rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(37, 94, 97, 0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.t-dot.active {
  background: var(--forest);
  transform: scale(1.25);
}

@media (max-width: 700px) {
  .testimonials-inner { padding: 4rem 2.5rem 3rem; }
  .testimonial-card { padding: 2.2rem 1.8rem; }
  .testimonials-arrow--prev { left: -0.2rem; }
  .testimonials-arrow--next { right: -0.2rem; }
}


/* =========================================
   JOURNAL QUOTE
   ========================================= */
.journal {
  padding: 8rem 2.5rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.journal::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(122,138,96,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.journal-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.journal-botanical {
  width: 90px;
  margin: 0 auto 2rem;
}

.journal-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.journal-quote footer {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 300;
}
.journal-quote cite { font-style: normal; }

.journal-link {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-btn);
  border-bottom: 1px solid rgba(143,175,126,0.5);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.journal-link:hover {
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
  transform: translateX(4px);
}


/* =========================================
   HANDS PARTITION BAND
   ========================================= */
.partition-band {
  position: relative;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  overflow: hidden;
}
.partition-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: saturate(0.88) brightness(0.92);
}
.partition-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      var(--forest) 0%,
      transparent 18%,
      transparent 82%,
      var(--forest) 100%);
  pointer-events: none;
}


/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter {
  padding: 8rem 2.5rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(122,138,96,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-corner {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: var(--cream);
  opacity: 0.18;
}
.newsletter-corner-tr {
  top: 2.5rem;
  right: 4rem;
  width: 60px;
  height: 100px;
}
.newsletter-corner-bl {
  bottom: 2.5rem;
  left: 4rem;
  width: 80px;
  height: 80px;
}

.newsletter-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 44px;
  height: 54px;
  margin: 0 auto 2rem;
  color: var(--cream);
  opacity: 0.55;
}
.newsletter-icon svg { width: 100%; height: 100%; }

.newsletter-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.newsletter-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.newsletter-body {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.82;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.newsletter-br { display: block; }

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 1.2rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.38);
}
.newsletter-input:focus {
  border-color: rgba(245, 240, 232, 0.6);
}

.newsletter-btn {
  padding: 0.9rem 1.8rem;
  background: rgba(245, 240, 232, 0.12);
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: rgba(245, 240, 232, 0.22);
  border-color: rgba(245, 240, 232, 0.55);
}

.newsletter-note {
  font-size: 0.77rem;
  color: rgba(245, 240, 232, 0.38);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .newsletter { padding: 5rem 1.5rem; }
  .newsletter-form { flex-direction: column; gap: 0.8rem; }
  .newsletter-input {
    border-right: 1px solid rgba(245, 240, 232, 0.3);
    border-radius: var(--radius-sm);
  }
  .newsletter-btn {
    border-radius: var(--radius-sm);
    padding: 0.9rem;
  }
  .newsletter-br { display: inline; }
  .newsletter-corner-tr { right: 1.5rem; }
  .newsletter-corner-bl { left: 1.5rem; }
}


/* =========================================
   FOOTER - light sandy theme
   ========================================= */
.footer {
  background: var(--cream-dark);
  color: var(--ink);
  border-top: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}

/* Large faded background logo on the left */
.footer-bg-logo {
  position: absolute;
  left: -3rem;
  bottom: -2rem;
  width: 320px;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
  padding: 7rem 2.5rem 5rem;
  align-items: start;
}

/* Footer CTA column */
.footer-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: #554D39;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.footer-label { color: var(--terra); }
.footer-cta-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 360px;
}
.footer-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--sage-btn);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: background var(--transition), transform var(--transition);
}
.footer-btn:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

/* Centre botanical */
.footer-center-botanical {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}
.footer-center-botanical svg {
  width: 70px;
  height: auto;
}
.footer-center-word {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-top: 0.8rem;
  white-space: nowrap;
}

/* Info column */
.footer-info { padding-top: 0.2rem; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2rem;
}
.footer-contact p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footer-contact strong {
  display: block;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.footer-contact a {
  color: var(--forest);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--terra); }

.footer-socials { display: flex; gap: 0.9rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social:hover {
  border-color: var(--forest);
  color: var(--forest);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.8rem 2.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--sand);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.74rem;
  color: var(--ink-soft);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--forest); }


/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1),
              transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 980px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(245,240,232,0.98);
    backdrop-filter: blur(16px);
    padding: 2rem 2.5rem 3rem;
    gap: 1.8rem;
    box-shadow: 0 8px 32px rgba(37,94,97,0.1);
    border-top: 1px solid var(--sand);
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links a { font-size: 1rem; letter-spacing: 0.06em; }

  /* Mobile dropdowns */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn { font-size: 1rem; letter-spacing: 0.06em; width: 100%; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0.6rem 0 0 1rem;
    min-width: 0;
    display: none;
    gap: 0.8rem;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown-menu li a { font-size: 0.88rem; padding: 0.2rem 0; }

  /* Spirit */
  .spirit-body-row { padding: 4rem 1.5rem 5rem; flex-direction: column; gap: 2rem; }
  .spirit-sprig { width: 100px; margin: 0 auto; align-self: center; }

  /* Values */
  .values { padding: 5rem 1.5rem; }
  .values-grid { gap: 1.2rem; }
  .value-card { flex: 0 1 calc(50% - 1rem); }

  /* Gallery 3-up → 2 col on tablet */
  .gallery { padding: 5rem 0; }
  .gallery-3up-wrapper { padding: 0 3rem; }
  .gallery-3up { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .g3-slide:last-child { display: none; }
  .g3-slide--center .g3-img { aspect-ratio: 4/3; }
  .g3-heading { font-size: 1.6rem; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem 3rem;
  }
  .footer-center-botanical {
    flex-direction: row;
    gap: 1rem;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    padding: 1.5rem 0;
  }
  .footer-center-botanical svg { width: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.8rem; padding: 1.5rem; }
}

@media (max-width: 600px) {
  .method-corner { width: 100px; height: 150px; opacity: 0.5; }

  /* Hero */
  .hero-botanical { width: 100px; }
  .hero-title { font-size: 3rem; letter-spacing: 0.06em; }

  /* Spirit */
  .spirit-fullimg { height: 260px; }

  /* Gallery → single col */
  .gallery-3up { grid-template-columns: 1fr; }
  .g3-slide:last-child { display: flex; }
  .g3-slide--center .g3-img,
  .g3-slide:not(.g3-slide--center) .g3-img { aspect-ratio: 4/3; }
  .gallery-3up-wrapper { padding: 0 1.5rem; }
  .gallery-arrow { display: none; }
  .ornament svg { width: 36px; }

  /* Values */
  .value-card { flex: 0 1 100%; max-width: 260px; }

  /* Footer */
  .footer-top { padding: 3.5rem 1.2rem 2.5rem; }
}
