/* ============================================================
   CULTIVAETE — stylesheet
   Fonts: Cormorant Garamond (display) + Helvetica Neue (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --almond-cream: #F4EAD5;
  --wild-fig:     #9E3D58;
  --golden-fennel:#8C9B48;
  --mosswood:     #475440;
  --glacier-mist: #B6C4CF;
  --dark:         #1C1A17;
  --text:         #2C2820;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  8rem;

  --max-w:    1280px;
  --nav-h:    72px;
}

/* ---- BASE ---- */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--almond-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}

nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* dark variant — used on pages with dark hero */
nav.nav-dark { background: transparent; }
nav.nav-dark.scrolled {
  background: rgba(71, 84, 64, 0.94);
  border-bottom: 1px solid rgba(244, 234, 213, 0.08);
  backdrop-filter: blur(12px);
}

/* light variant — used on light pages */
nav.nav-light { background: transparent; }
nav.nav-light.scrolled {
  background: rgba(244, 234, 213, 0.95);
  border-bottom: 1px solid rgba(71, 84, 64, 0.12);
  backdrop-filter: blur(12px);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--text);
}
.nav-logo .aete {
  color: var(--wild-fig);
  font-style: italic;
}
nav.nav-dark .nav-logo { color: var(--almond-cream); }
nav.nav-dark .nav-logo .aete { color: var(--wild-fig); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  list-style: none;
}
.nav-links a {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
nav.nav-dark .nav-links a { color: var(--almond-cream); }

.nav-links .btn-nav {
  opacity: 1;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(71, 84, 64, 0.3);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s;
  color: var(--text);
}
.nav-links .btn-nav:hover {
  background: var(--mosswood);
  color: var(--almond-cream);
  border-color: var(--mosswood);
}
nav.nav-dark .nav-links .btn-nav {
  border-color: rgba(244, 234, 213, 0.3);
  color: var(--almond-cream);
}
nav.nav-dark .nav-links .btn-nav:hover {
  background: var(--wild-fig);
  border-color: var(--wild-fig);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
nav.nav-dark .nav-toggle span { background: var(--almond-cream); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--wild-fig);
  color: var(--almond-cream);
}
.btn-primary:hover { background: #882f48; }

.btn-outline-cream {
  background: transparent;
  color: var(--almond-cream);
  border: 1px solid rgba(244, 234, 213, 0.35);
}
.btn-outline-cream:hover {
  background: var(--almond-cream);
  color: var(--mosswood);
  border-color: var(--almond-cream);
}

.btn-outline-dark {
  background: transparent;
  color: var(--mosswood);
  border: 1px solid rgba(71, 84, 64, 0.32);
}
.btn-outline-dark:hover {
  background: var(--mosswood);
  color: var(--almond-cream);
}

/* ---- HOME HERO ---- */
.hero {
  height: 100vh;
  min-height: 640px;
  background-color: var(--dark);
  background-image:
    linear-gradient(180deg, rgba(28, 26, 23, 0.35) 0%, rgba(28, 26, 23, 0.55) 55%, rgba(28, 26, 23, 0.85) 100%),
    url('../assets/photos/hero-bloom.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.hero-logo { display: block; }
.hero-logo .line1 {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(5.5rem, 13vw, 12rem);
  line-height: 0.88;
  color: var(--almond-cream);
  letter-spacing: -0.025em;
}
.hero-logo .line2 {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(5.5rem, 13vw, 12rem);
  line-height: 0.88;
  color: var(--wild-fig);
  letter-spacing: -0.025em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  color: var(--almond-cream);
  opacity: 0.7;
  margin-top: var(--sp-md);
}

.hero-meta {
  position: absolute;
  bottom: var(--sp-md);
  left: var(--sp-md);
  right: var(--sp-md);
  max-width: var(--max-w);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--sp-md) * 2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}
.hero-meta-label {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--almond-cream);
  opacity: 0.38;
}

/* ---- HOME INTRO ---- */
.section-intro {
  padding: var(--sp-xl) 0;
  background: var(--almond-cream);
}
.section-intro .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
.intro-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--mosswood);
}
.intro-body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}
.intro-body p + p { margin-top: 1em; }

/* ---- HOME EVENT TEASER ---- */
.section-event-teaser {
  background: var(--almond-cream);
  padding: var(--sp-xl) 0;
  border-top: 1px solid rgba(71, 84, 64, 0.1);
}
.event-teaser-card {
  background: var(--mosswood);
  padding: var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-lg);
  align-items: end;
}
.event-teaser-label {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--almond-cream);
  opacity: 0.45;
  margin-bottom: var(--sp-sm);
}
.event-teaser-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--almond-cream);
}
.event-teaser-title em {
  color: var(--wild-fig);
  font-style: italic;
}
.event-teaser-meta {
  margin-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.event-teaser-detail {
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--almond-cream);
  opacity: 0.6;
}
.event-teaser-detail strong {
  font-weight: 400;
  opacity: 1;
  margin-right: 0.75em;
}
.event-teaser-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-md);
}
.spots-badge {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--almond-cream);
  opacity: 0.5;
}

/* ---- HOME QUOTE SECTION ---- */
.section-quote {
  padding: var(--sp-xl) 0;
  background: var(--glacier-mist);
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.875rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  color: var(--mosswood);
  max-width: 20ch;
}
.pull-source {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mosswood);
  opacity: 0.5;
  margin-top: var(--sp-md);
}

/* ---- EMAIL CAPTURE ---- */
.section-email {
  padding: var(--sp-xl) 0;
  background: var(--almond-cream);
  border-top: 1px solid rgba(71, 84, 64, 0.1);
}
.email-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--mosswood);
  margin-bottom: var(--sp-xs);
}
.email-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  opacity: 0.6;
  margin-bottom: var(--sp-md);
}
.email-form {
  display: flex;
  max-width: 460px;
}
.email-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border: 1px solid rgba(71, 84, 64, 0.28);
  border-right: none;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: rgba(44, 40, 32, 0.38); }
.email-input:focus { border-color: var(--mosswood); }

/* ---- FOOTER ---- */
footer {
  background: var(--mosswood);
  color: var(--almond-cream);
  padding: var(--sp-lg) 0 var(--sp-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(244, 234, 213, 0.08);
  margin-bottom: var(--sp-md);
}
.footer-logo-block .logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}
.footer-logo-block .logo .aete {
  color: var(--wild-fig);
  font-style: italic;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--almond-cream);
  opacity: 0.4;
  margin-top: 0.375rem;
}
.footer-nav-col h4 {
  font-size: 0.5875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: var(--sp-sm);
}
.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav-col a {
  font-size: 0.8125rem;
  font-weight: 300;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.footer-nav-col a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.footer-social a {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.25;
}
.footer-location {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.25;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-xl));
  padding-bottom: var(--sp-xl);
}
.page-hero.dark-bg {
  background: var(--mosswood);
  background-image: radial-gradient(ellipse at 75% 35%, rgba(190, 120, 55, 0.32) 0%, transparent 60%);
  color: var(--almond-cream);
}
.page-hero-label {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: var(--sp-md);
}
.page-hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.page-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  opacity: 0.65;
  margin-top: var(--sp-sm);
}

/* ---- PHILOSOPHY PAGE ---- */
.philosophy-intro {
  padding: var(--sp-xl) 0;
  background: var(--almond-cream);
}
.philosophy-intro .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
.philosophy-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--mosswood);
}
.philosophy-body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}
.philosophy-body p + p { margin-top: 1.25em; }

/* Brand vocabulary scroll */
.brand-words {
  background: var(--wild-fig);
  overflow: hidden;
  padding: 1.75rem 0;
  white-space: nowrap;
}
.brand-words-track {
  display: inline-flex;
  animation: marquee 36s linear infinite;
}
.brand-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--almond-cream);
  opacity: 0.85;
  padding: 0 2rem;
  border-right: 1px solid rgba(244, 234, 213, 0.18);
  line-height: 1;
}
.brand-word:last-child { border-right: none; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Philosophy pillars */
.philosophy-pillars {
  background: var(--dark);
  padding: var(--sp-xl) 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(244, 234, 213, 0.07);
}
.pillar {
  padding: var(--sp-lg) var(--sp-md);
  border-right: 1px solid rgba(244, 234, 213, 0.07);
}
.pillar-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--almond-cream);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--almond-cream);
  margin-bottom: var(--sp-sm);
  line-height: 1.15;
}
.pillar-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--almond-cream);
  opacity: 0.55;
  line-height: 1.75;
}

/* ---- EVENTS PAGE ---- */
.events-section {
  padding: var(--sp-xl) 0;
  background: var(--almond-cream);
}
.event-full-card {
  border: 1px solid rgba(71, 84, 64, 0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.event-full-left {
  background: var(--mosswood);
  padding: var(--sp-lg);
  color: var(--almond-cream);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(190, 120, 55, 0.28) 0%, transparent 55%);
}
.event-full-right {
  padding: var(--sp-lg);
  background: var(--almond-cream);
}
.event-full-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-md);
}
.event-full-title em { color: var(--wild-fig); font-style: italic; }
.event-full-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.45;
  color: var(--almond-cream);
  opacity: 0.75;
  margin-bottom: var(--sp-lg);
}
.event-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.event-spec {
  display: flex;
  gap: 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--almond-cream);
}
.event-spec-key {
  opacity: 0.4;
  min-width: 64px;
}
.event-spec-val { opacity: 0.85; }

/* RSVP form */
.rsvp-section h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--mosswood);
  margin-bottom: 0.375rem;
}
.rsvp-section .rsvp-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  opacity: 0.6;
  margin-bottom: var(--sp-md);
}
.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-label {
  font-size: 0.5875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.5;
}
.form-input {
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  background: transparent;
  border: 1px solid rgba(71, 84, 64, 0.22);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--mosswood); }

/* ---- CUSTOM SELECT DROPDOWN ---- */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  background: transparent;
  border: 1px solid rgba(71, 84, 64, 0.22);
  color: var(--text);
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: border-color 0.2s;
}
.custom-select-trigger:focus,
.custom-select-trigger[aria-expanded="true"] {
  border-color: var(--mosswood);
}
.custom-select-value { color: var(--text); }
.custom-select-value.placeholder { color: rgba(44, 40, 32, 0.4); }
.custom-select-chevron {
  color: var(--mosswood);
  opacity: 0.6;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: var(--sp-sm);
}
.custom-select-trigger[aria-expanded="true"] .custom-select-chevron {
  transform: rotate(180deg);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--almond-cream);
  border: 1px solid rgba(71, 84, 64, 0.22);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.1);
  max-height: 280px;
  overflow-y: auto;
}
.custom-select-options[hidden] { display: none; }
.custom-select-option {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.custom-select-option:hover,
.custom-select-option[aria-selected="true"] {
  background: var(--mosswood);
  color: var(--almond-cream);
}

.form-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text);
  opacity: 0.45;
  margin-top: 0.5rem;
}
.rsvp-success {
  display: none;
  padding: var(--sp-md);
  border: 1px solid rgba(71, 84, 64, 0.2);
  background: rgba(71, 84, 64, 0.04);
}
.rsvp-success h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--mosswood);
  margin-bottom: 0.5rem;
}
.rsvp-success p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  opacity: 0.7;
}

/* ---- ABOUT PAGE ---- */
.about-section {
  padding: var(--sp-xl) 0;
  background: var(--almond-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.about-body p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25em;
}
.about-name-block {
  background: var(--mosswood);
  padding: var(--sp-lg);
  color: var(--almond-cream);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(190, 120, 55, 0.25) 0%, transparent 55%);
}
.about-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-xs);
}
.about-name em { color: var(--wild-fig); font-style: italic; }
.about-role {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: var(--sp-md);
}
.about-bio {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.75;
}

/* About — full-width focus section (botanical-blue) */
.about-focus-section {
  background-color: var(--mosswood);
  background-image:
    linear-gradient(135deg, rgba(71,84,64,0.7) 0%, rgba(71,84,64,0.45) 100%),
    url('../assets/photos/botanical-blue.jpg');
  background-size: cover;
  background-position: center;
  padding: var(--sp-xl) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.about-focus-content {
  max-width: 56ch;
}
.about-focus-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--almond-cream);
  margin-bottom: var(--sp-md);
}
.about-focus-headline em { color: var(--wild-fig); font-style: italic; }
.about-focus-body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--almond-cream);
  opacity: 0.82;
}

/* About — quote band */
.about-quote-band {
  background: var(--glacier-mist);
  padding: var(--sp-xl) 0;
  text-align: center;
}
.about-quote-band .big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.3;
  color: var(--mosswood);
  max-width: 24ch;
  margin: 0 auto;
}

/* About — vision section */
.about-vision {
  padding: var(--sp-xl) 0;
  background: var(--dark);
  color: var(--almond-cream);
}
.vision-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: var(--sp-lg);
}
.vision-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  border-top: 1px solid rgba(244, 234, 213, 0.08);
  padding-top: var(--sp-md);
}
.vision-item-label {
  font-size: 0.5875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 0.5rem;
}
.vision-item-text {
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.65;
  line-height: 1.7;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: var(--sp-xl) 0;
  background: var(--almond-cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.contact-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--mosswood);
  margin-bottom: var(--sp-sm);
}
.contact-intro p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: var(--sp-md);
}
.contact-direct {
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mosswood);
  opacity: 0.55;
  margin-top: var(--sp-sm);
}
.contact-direct a {
  color: var(--wild-fig);
  opacity: 1;
  transition: opacity 0.2s;
}
.contact-direct a:hover { opacity: 0.7; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.form-textarea {
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  background: transparent;
  border: 1px solid rgba(71, 84, 64, 0.22);
  color: var(--text);
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-textarea:focus { border-color: var(--mosswood); }

/* ---- UTILITY ---- */
.label-tag {
  font-size: 0.5875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: var(--sp-sm);
  display: block;
}
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }

/* ---- PAGE HERO WITH PHOTO BACKGROUND ---- */
.page-hero-photo {
  position: relative;
  min-height: 64vh;
  padding-top: calc(var(--nav-h) + var(--sp-md));
  padding-bottom: var(--sp-lg);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,0.35) 0%, rgba(28,26,23,0.2) 40%, rgba(28,26,23,0.8) 100%);
  z-index: 0;
}
.page-hero-photo > .container {
  position: relative;
  z-index: 1;
}
.page-hero-photo .page-hero-label {
  color: var(--almond-cream);
  opacity: 0.55;
  margin-bottom: var(--sp-md);
}
.page-hero-photo .page-hero-headline {
  color: var(--almond-cream);
}
.page-hero-photo .page-hero-headline em {
  color: var(--wild-fig);
  font-style: italic;
}
.page-hero-photo .page-hero-sub {
  color: var(--almond-cream);
  opacity: 0.75;
}

/* ---- PHOTO STRIP (full-bleed image section) ---- */
.photo-strip {
  position: relative;
  height: 60vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.photo-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,0) 35%, rgba(28,26,23,0.7) 100%);
  pointer-events: none;
}
.photo-strip .container {
  position: relative;
  z-index: 1;
  padding-bottom: var(--sp-lg);
}
.photo-strip-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  color: var(--almond-cream);
  max-width: 22ch;
}
.photo-strip-label {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--almond-cream);
  opacity: 0.55;
  margin-bottom: var(--sp-sm);
}

/* ---- PHOTO BACKGROUND ON DARK BLOCKS ---- */
.photo-bg-dark {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.photo-bg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,26,23,0.78) 0%, rgba(28,26,23,0.58) 100%);
  z-index: 0;
}
.photo-bg-dark > * { position: relative; z-index: 1; }

/* When applied to event-full-left, override its existing radial gradient */
.event-full-left.photo-bg-dark {
  background-image:
    linear-gradient(135deg, rgba(28,26,23,0.78) 0%, rgba(28,26,23,0.55) 100%),
    url('../assets/photos/body-skin.jpg');
}
.event-full-left.photo-bg-dark::before { display: none; }

.about-name-block.photo-bg-dark {
  background-image:
    linear-gradient(135deg, rgba(71,84,64,0.75) 0%, rgba(71,84,64,0.5) 100%),
    url('../assets/photos/botanical-blue.jpg');
}
.about-name-block.photo-bg-dark::before { display: none; }

/* About "the name" section with outdoor-linen photo */
.about-name-section {
  background-color: var(--mosswood);
  background-image:
    linear-gradient(135deg, rgba(71,84,64,0.78) 0%, rgba(71,84,64,0.5) 100%),
    url('../assets/photos/outdoor-linen.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .section-intro .grid,
  .philosophy-intro .grid,
  .event-full-card,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .event-full-card { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .event-teaser-card { grid-template-columns: 1fr; }
  .vision-items { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --sp-lg: 3rem;
    --sp-xl: 5rem;
    --sp-md: 1.5rem;
  }
  .nav-links { 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: var(--almond-cream);
    padding: var(--sp-md);
    gap: 1.25rem;
    border-bottom: 1px solid rgba(71, 84, 64, 0.12);
    z-index: 199;
  }
  nav.nav-dark .nav-links.open { background: var(--dark); }
  .nav-links.open a { color: var(--text) !important; }
  nav.nav-dark .nav-links.open a { color: var(--almond-cream) !important; }
  .nav-links.open .btn-nav { border: none; padding: 0; }

  .pillars-grid { grid-template-columns: 1fr; }
  .vision-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-md); }

  .email-form { flex-direction: column; }
  .email-input { border-right: 1px solid rgba(71, 84, 64, 0.28); border-bottom: none; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}
