:root {
  --ink: #1a1a1a;
  --leaf: #3d7a72;
  --leaf-deep: #2a5a54;
  --gold: #c9a24a;
  --gold-soft: #e8d39a;
  --blossom: #c45b78;
  --lime: #b7c36a;
  --paper: #fffdf9;
  --cream: #fffaf3;
  --sage-wash: #f3f6f1;
  --muted: #5f5e58;
  --line: rgba(26, 26, 26, 0.1);
  --white: #ffffff;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --radius: 4px;
  --header-h: 5.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom));
  }
  body.is-admin {
    padding-bottom: 0;
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--leaf-deep); text-underline-offset: 0.2em; }
a:hover { color: var(--blossom); }

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

.visually-hidden,
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1080px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section { padding: clamp(3.2rem, 7vw, 5.4rem) 0; }
.section h2,
.page-hero h1,
.legal-content h1,
.confirm h1,
.hero-copy h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.12;
  color: var(--ink);
}

.section-lead,
.page-lead,
.hero-tagline {
  margin: 0 0 1.6rem;
  max-width: 38rem;
  color: var(--muted);
}

.page-hero {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0 0.4rem;
}

.page-hero h1 {
  max-width: 18ch;
}

.diamond-rule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.15rem 0 0;
}

.diamond-rule::before,
.diamond-rule::after {
  content: "";
  height: 1px;
  width: 2.6rem;
  background: var(--gold);
}

.diamond-rule span {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
}

.page-top {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { margin-right: auto; text-decoration: none; }
.brand-logo {
  height: 4.1rem;
  width: auto;
}

.nav-desktop { display: none; gap: 1.25rem; }
.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-desktop a:hover { color: var(--leaf); }

.header-actions { display: none; align-items: center; gap: 0.7rem; }
.header-social {
  display: inline-flex;
  color: var(--leaf-deep);
  text-decoration: none;
}
.header-social:hover { color: var(--gold); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--leaf-deep);
  text-decoration: none;
  font-weight: 700;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--ink);
}

.nav-mobile {
  display: none;
  padding: 0.4rem 1rem 1.1rem;
}
.nav-mobile.is-open { display: grid; }
.nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.8rem 0.2rem;
  font-weight: 650;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-phone { color: var(--leaf-deep); }

.hero {
  display: grid;
  color: var(--ink);
}

.hero-photo {
  position: relative;
  background: var(--sage-wash);
  display: flex;
  justify-content: center;
}
.hero-photo img {
  width: min(100%, 1319px);
  height: min(52vh, 520px);
  object-fit: cover;
  object-position: center 32%;
}

.hero-panel {
  background: var(--paper);
  border-top: 2px solid var(--gold);
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
}

.hero-copy { padding: 0; }

.hero-copy h1 {
  max-width: 16ch;
}

.hero-copy .diamond-rule,
.page-hero .diamond-rule,
.legal-content .diamond-rule {
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.12rem;
  margin-bottom: 1.25rem;
}

.hero-actions,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.3rem;
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover { background: #d4b15c; color: var(--ink); }
.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--leaf-deep);
  border-color: var(--gold);
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn-quiet {
  background: var(--sage-wash);
  color: var(--muted);
  border-color: var(--line);
  cursor: default;
}

.trust {
  background: var(--sage-wash);
  color: var(--leaf-deep);
  padding: 0.95rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.6rem;
  text-align: center;
}
.trust-row p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-slot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  outline: 1px solid var(--gold-soft);
  outline-offset: 0;
  background: var(--sage-wash);
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.bloom-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 2.2rem;
}
.split-media + .container .bloom-strip {
  margin-top: 1.4rem;
}
.photo-slot.tight-top {
  margin-top: 1.4rem;
}
.bloom-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  outline: 1px solid var(--gold-soft);
}
.bloom-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.split-media {
  display: grid;
  gap: 1.75rem;
}

.include-list,
.plain {
  margin: 0;
  padding-left: 1.15rem;
}
.include-list li,
.plain li { margin: 0 0 0.45rem; }

.cards,
.session-list,
.crop-cards {
  display: grid;
  gap: 1rem;
}

.location-card {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.session-card,
.card,
.faq details,
.form-card {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.35rem;
}

.session-card h2,
.card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}
.session-status {
  font-weight: 750;
  margin: 0.7rem 0 1rem;
}
.tone-available .session-status { color: var(--leaf-deep); }
.tone-nearly .session-status { color: #8a5a12; }
.tone-full .session-status,
.is-closed .session-status { color: var(--blossom); }

.faq details { margin-bottom: 0.7rem; }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
}

.weather-band {
  background: color-mix(in srgb, var(--gold) 14%, var(--paper));
}

.location-card a.map-link {
  display: inline-flex;
  margin-top: 0.75rem;
}

.site-footer {
  background: var(--leaf-deep);
  color: rgba(255, 253, 249, 0.82);
  padding: 2.6rem 0 1.4rem;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.85rem;
  background: var(--paper);
  border-radius: 2px;
  padding: 0.4rem 0.6rem;
}
.footer-logo {
  width: min(100%, 13.5rem);
  height: auto;
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  padding-top: 1.1rem;
  font-size: 0.9rem;
}

.sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  min-height: calc(3.5rem + env(safe-area-inset-bottom));
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: var(--gold);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}
.sticky-cta:hover { color: var(--leaf-deep); }
.is-admin .sticky-cta,
.admin-page .sticky-cta { display: none; }

.stack-form,
.quote-form {
  display: grid;
  gap: 0.85rem;
}
.stack-form label,
.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.stack-form input,
.stack-form select,
.stack-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d8d0bf;
  border-radius: 2px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.stack-form textarea,
.quote-form textarea { min-height: 7rem; }
.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus {
  border-color: var(--gold);
}
.check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
}
.check input { width: auto; min-height: 1.25rem; margin-top: 0.25rem; }

.form-status {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-weight: 650;
}
.form-status.is-ok { background: color-mix(in srgb, var(--leaf) 14%, white); }
.form-status.is-err { background: color-mix(in srgb, var(--blossom) 14%, white); }
.form-status[hidden] { display: none; }

.confirm-ref { font-size: 1.15rem; }
.confirm-dl { display: grid; gap: 0.8rem; margin: 1.25rem 0; }
.confirm-dl dt { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.confirm-dl dd { margin: 0.15rem 0 0; font-weight: 700; }

.admin-app { padding: 1.25rem 0 3rem; }
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.admin-hero .count {
  font-size: 1.35rem;
  font-weight: 750;
}
.admin-card {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin: 0 0 1rem;
}
.admin-row {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.attendee {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.attendee.cancelled { opacity: 0.55; }
.text-btn {
  background: none;
  border: 0;
  color: var(--blossom);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  padding: 0.4rem 0;
}
.split { display: grid; gap: 0.7rem; }

.legal-content { max-width: 42rem; padding-bottom: 2rem; }
.legal-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 1.6rem 0 0.5rem;
}

@media (min-width: 720px) {
  .cards,
  .session-list { grid-template-columns: 1fr 1fr; }
  .crop-cards { grid-template-columns: 1fr 1fr 1fr; }
  .split-media { grid-template-columns: 1fr 1fr; align-items: center; }
  .split { grid-template-columns: 1fr 1fr; }
  .header-actions { display: inline-flex; }
  .bloom-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-toggle,
  .nav-mobile { display: none !important; }
  .session-list { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}
