/* ==========================================================================
   Leaf & Letter — warm boutique: cream, sage, tan, wood-toned calm
   ========================================================================== */

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

:root {
  --c-cream:       #F7F4EE;
  --c-cream-deep:  #EDE8DF;
  --c-parchment:   #E5DDD2;
  --c-tan:         #D4C4B0;
  --c-sand:        #C9B8A4;
  --c-sage:        #8F9F88;
  --c-sage-muted:  #7A8A72;
  --c-sage-deep:   #5C6B54;
  --c-forest:      #3D4A38;
  --c-bark:        #5C4A3A;
  --c-earth:       #4A3F35;
  --c-ink:         #2C261F;
  --c-warm-white:  #FBFAF7;
  --c-accent:      #8B7355;
  --c-accent-soft: #A69076;
  --c-error:       #A65050;
  --c-error-bg:    #FDF2F2;

  --ff-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body:    'Source Sans 3', system-ui, sans-serif;

  --fs-xs:   clamp(0.7rem,   0.65rem + 0.2vw,  0.8125rem);
  --fs-sm:   clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.9rem + 0.2vw,  1.0625rem);
  --fs-md:   clamp(1.0625rem, 1rem + 0.35vw,  1.25rem);
  --fs-lg:   clamp(1.65rem,   1.35rem + 1vw,   2.35rem);
  --fs-xl:   clamp(2rem,      1.6rem + 1.8vw,  3rem);
  --fs-xxl:  clamp(2.65rem,   2rem + 3vw,     4.25rem);

  --sp-xs: clamp(0.5rem,  0.35rem + 0.5vw,  0.75rem);
  --sp-sm: clamp(0.75rem, 0.5rem + 0.75vw,  1.25rem);
  --sp-md: clamp(1.5rem,  1rem + 1.5vw,     2.5rem);
  --sp-lg: clamp(2.75rem, 2rem + 3vw,       4.5rem);
  --sp-xl: clamp(4rem,    3rem + 4vw,       7rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 4px 24px rgba(44, 38, 31, 0.06);
  --shadow-card: 0 12px 40px rgba(44, 38, 31, 0.08);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --header-h: 76px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-ink);
  background-color: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

a:hover { color: var(--c-forest); }

h1, h2, h3 {
  font-family: var(--ff-heading);
  font-weight: 500;
  line-height: 1.12;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: var(--c-forest);
  color: var(--c-warm-white);
  font-weight: 500;
  text-decoration: none;
}

.skip-link:focus { left: 0; }

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

.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sage-muted);
  margin-bottom: 1rem;
}

.section-label--on-dark {
  color: rgba(247, 244, 238, 0.65);
}

.section-label--on-cream {
  color: var(--c-sage-deep);
}

/* Dual section sits on light parchment — needs dark label, not --on-dark */
.section-label--dual {
  color: var(--c-forest);
  letter-spacing: 0.14em;
  font-weight: 700;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.15em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background-color: var(--c-earth);
  color: var(--c-warm-white);
  border-color: var(--c-earth);
  box-shadow: 0 4px 20px rgba(74, 63, 53, 0.25);
}

.btn--primary:hover {
  background-color: var(--c-bark);
  border-color: var(--c-bark);
  color: var(--c-warm-white);
  box-shadow: 0 8px 28px rgba(74, 63, 53, 0.3);
}

.btn--ghost {
  background-color: rgba(247, 244, 238, 0.12);
  color: var(--c-warm-white);
  border-color: rgba(251, 250, 247, 0.45);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background-color: rgba(247, 244, 238, 0.22);
  border-color: var(--c-warm-white);
  color: var(--c-warm-white);
}

.btn--footer {
  background-color: var(--c-sage-deep);
  color: var(--c-warm-white);
  border-color: var(--c-sage-deep);
}

.btn--footer:hover {
  background-color: var(--c-forest);
  border-color: var(--c-forest);
  color: var(--c-warm-white);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background-color: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 63, 53, 0.08);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background-color: rgba(251, 250, 247, 0.96);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--c-ink);
}

.header__logo:hover { color: var(--c-forest); }

.header__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.header__wordmark {
  font-family: var(--ff-heading);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__amp {
  font-style: italic;
  color: var(--c-sage-deep);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--c-earth);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background-color: var(--c-cream-deep);
  border-left: 1px solid rgba(74, 63, 53, 0.1);
  box-shadow: -16px 0 48px rgba(44, 38, 31, 0.12);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 105;
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  overflow-y: auto;
}

.nav.is-open { transform: translateX(0); }

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__link {
  display: block;
  padding: 1rem 0;
  font-family: var(--ff-heading);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 63, 53, 0.08);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.nav__link:hover {
  color: var(--c-sage-deep);
  padding-left: 0.35rem;
}

@media (min-width: 900px) {
  .nav__toggle { display: none; }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
    padding: 0;
    overflow: visible;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .nav__link {
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-bottom: none;
    color: rgba(44, 38, 31, 0.72);
  }

  .nav__link:hover {
    color: var(--c-forest);
    padding-left: 0.9rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Photo is ~16:9 landscape; cover keeps edges filled on tall viewports */
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Darker on the left where copy sits; photo stays brighter toward the right */
  background: linear-gradient(
    100deg,
    rgba(18, 20, 17, 0.72) 0%,
    rgba(22, 24, 20, 0.5) 38%,
    rgba(36, 34, 30, 0.22) 68%,
    rgba(44, 38, 31, 0.12) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: left;
  animation: heroFade 1.1s ease-out both;
  isolation: isolate;
  padding: clamp(1.35rem, 3.5vw, 2.25rem);
  border-radius: var(--radius-lg);
  text-rendering: optimizeLegibility;
}

/* Readable band behind type only — photo unchanged */
.hero__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 14, 12, 0.58) 0%,
    rgba(12, 14, 12, 0.32) 70%,
    rgba(12, 14, 12, 0.06) 100%
  );
  border-radius: inherit;
  border: 1px solid rgba(251, 250, 247, 0.07);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.92);
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero__heading {
  font-size: var(--fs-xxl);
  font-weight: 400;
  font-style: italic;
  color: #FBFAF7;
  margin-bottom: var(--sp-sm);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 16px rgba(0, 0, 0, 0.35);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero__text {
  font-size: var(--fs-md);
  font-weight: 400;
  color: rgba(251, 250, 247, 0.96);
  margin-bottom: var(--sp-md);
  line-height: 1.68;
  max-width: 34rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
  }

  .hero__inner {
    max-width: 720px;
  }
}

/* ==========================================================================
   Intro (brand story)
   ========================================================================== */
.intro {
  padding: var(--sp-xl) 0;
  background-color: var(--c-warm-white);
}

.intro__inner {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
}

.intro__heading {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: var(--sp-sm);
  max-width: 18ch;
}

.intro__text {
  color: rgba(44, 38, 31, 0.78);
  margin-bottom: 1.15rem;
  max-width: 38rem;
}

.intro__text:last-of-type { margin-bottom: 0; }

.intro__figure { margin: 0; }

.intro__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(74, 63, 53, 0.1);
}

.intro__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.75s ease;
}

.intro__frame:hover .intro__image {
  transform: scale(1.03);
}

.intro__caption {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--c-sage-deep);
  margin-top: 0.85rem;
  text-align: center;
}

@media (min-width: 900px) {
  .intro__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }

  .intro__copy { order: 0; }
  .intro__figure { order: 1; }
}

/* ==========================================================================
   Dual (books / plants)
   ========================================================================== */
.dual {
  padding: var(--sp-xl) 0;
  background: linear-gradient(180deg, var(--c-parchment) 0%, var(--c-cream-deep) 100%);
}

.dual__header {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

.dual__heading {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-ink);
}

.dual__grid {
  display: grid;
  gap: var(--sp-md);
}

.dual__panel {
  background-color: var(--c-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(74, 63, 53, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}

.dual__panel:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.dual__media {
  overflow: hidden;
}

.dual__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.75s ease;
}

.dual__panel:hover .dual__media img {
  transform: scale(1.04);
}

.dual__body {
  padding: var(--sp-md);
}

.dual__title {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-forest);
  margin-bottom: 0.65rem;
}

.dual__text {
  font-size: var(--fs-sm);
  color: rgba(44, 38, 31, 0.75);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .dual__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
  }
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  padding: var(--sp-xl) 0;
  background-color: var(--c-cream);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/vine-corner-frame.svg');
  background-size: 120% auto;
  background-repeat: no-repeat;
  background-position: -5% -5%;
  opacity: 0.12;
  pointer-events: none;
}

.about__inner {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__figure { margin: 0; }

.about__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(74, 63, 53, 0.1);
}

.about__image {
  width: 100%;
  /* Wider panoramic shop shot (~2:1) — match native ratio to avoid heavy cropping */
  aspect-ratio: 2643 / 1280;
  object-fit: cover;
  object-position: center center;
}

.about__heading {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: var(--sp-sm);
}

.about__text {
  color: rgba(44, 38, 31, 0.78);
  margin-bottom: 1.15rem;
}

.about__quote {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  color: var(--c-sage-deep);
  line-height: 1.45;
  border-left: 3px solid var(--c-tan);
  padding-left: 1.25rem;
  margin-top: var(--sp-md);
}

@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr 1.05fr;
  }
}

/* ==========================================================================
   Journal collage
   ========================================================================== */
.journal {
  padding: var(--sp-xl) 0;
  background-color: var(--c-earth);
  color: var(--c-warm-white);
}

.journal__header {
  max-width: 38rem;
  margin-bottom: var(--sp-lg);
}

.journal .section-label {
  color: rgba(247, 244, 238, 0.55);
}

.journal__heading {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-warm-white);
  margin-bottom: var(--sp-sm);
}

.journal__lede {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(251, 250, 247, 0.78);
  line-height: 1.65;
}

.journal__lede em {
  font-style: italic;
  color: rgba(251, 250, 247, 0.95);
}

.journal__collage {
  display: grid;
  gap: clamp(10px, 1.8vw, 16px);
  grid-template-columns: 1fr;
  align-items: start;
}

.journal__cell {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.journal__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.65s ease, opacity var(--transition-fast);
}

.journal__cell:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Landscape-first collage: asymmetric pairs + full-width bands (no tall skinny crops) */
@media (min-width: 700px) {
  .journal__collage {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
  }

  .journal__cell {
    aspect-ratio: 16 / 9;
  }

  .journal__cell--a {
    grid-column: 1 / 8;
    grid-row: 1;
  }

  .journal__cell--b {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .journal__cell--c {
    grid-column: 1 / 6;
    grid-row: 2;
  }

  .journal__cell--d {
    grid-column: 6 / 13;
    grid-row: 2;
  }

  .journal__cell--e {
    grid-column: 1 / 13;
    grid-row: 3;
  }

  .journal__cell--f {
    grid-column: 1 / 13;
    grid-row: 4;
  }
}

/* ==========================================================================
   Moods (collections)
   ========================================================================== */
.moods {
  padding: var(--sp-xl) 0;
  background-color: var(--c-warm-white);
}

.moods__header {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

.moods__heading {
  font-size: var(--fs-xl);
  color: var(--c-ink);
  margin-bottom: var(--sp-xs);
}

.moods__lede {
  color: rgba(44, 38, 31, 0.68);
}

.moods__list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.mood-card__link {
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  color: inherit;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(74, 63, 53, 0.07);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}

.mood-card__link:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.mood-card__visual {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mood-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.65s ease;
}

.mood-card__link:hover .mood-card__visual img {
  transform: scale(1.06);
}

.mood-card__copy {
  padding: var(--sp-md);
}

.mood-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--c-forest);
  margin-bottom: 0.5rem;
}

.mood-card__text {
  font-size: var(--fs-sm);
  color: rgba(44, 38, 31, 0.72);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mood-card__cta {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-sage-deep);
}

.mood-card__link:hover .mood-card__cta {
  color: var(--c-forest);
}

@media (min-width: 640px) {
  .moods__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-card--wide {
    grid-column: 1 / -1;
  }

  .mood-card--wide .mood-card__link {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }

  .mood-card--wide .mood-card__visual {
    aspect-ratio: auto;
    min-height: 260px;
    height: 100%;
    align-self: stretch;
  }

  .mood-card--wide .mood-card__visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center center;
  }
}

/* ==========================================================================
   Gatherings
   ========================================================================== */
.gatherings {
  padding: var(--sp-xl) 0;
  background: linear-gradient(135deg, var(--c-cream-deep) 0%, var(--c-parchment) 100%);
}

.gatherings__layout {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
}

.gatherings__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(74, 63, 53, 0.1);
}

.gatherings__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.gatherings__heading {
  font-size: var(--fs-xl);
  color: var(--c-ink);
  margin-bottom: var(--sp-sm);
}

.gatherings__text {
  color: rgba(44, 38, 31, 0.78);
  margin-bottom: var(--sp-sm);
}

.gatherings__text strong {
  font-weight: 600;
  color: var(--c-earth);
}

.gatherings__list {
  list-style: none;
  margin-bottom: var(--sp-md);
}

.gatherings__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(44, 38, 31, 0.75);
}

.gatherings__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-sage-muted);
}

.gatherings__btn {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-warm-white);
  background-color: var(--c-earth);
  padding: 0.9em 1.75em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.gatherings__btn:hover {
  background-color: var(--c-bark);
  color: var(--c-warm-white);
}

@media (min-width: 900px) {
  .gatherings__layout {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* ==========================================================================
   Voices (testimonials)
   ========================================================================== */
.voices {
  padding: var(--sp-xl) 0;
  background-color: var(--c-cream);
}

.voices__grid {
  display: grid;
  gap: var(--sp-md);
}

.voice {
  background: var(--c-warm-white);
  padding: var(--sp-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 63, 53, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.voice:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.voice__quote {
  font-family: var(--ff-heading);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.voice__by {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-sage-muted);
}

@media (min-width: 768px) {
  .voices__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* ==========================================================================
   Visit
   ========================================================================== */
.visit {
  padding: var(--sp-xl) 0;
  background-color: var(--c-forest);
  color: var(--c-warm-white);
}

.visit__heading {
  font-size: var(--fs-xl);
  text-align: center;
  color: var(--c-warm-white);
  margin-bottom: var(--sp-xs);
}

.visit__intro {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  color: rgba(251, 250, 247, 0.78);
  font-weight: 300;
}

.visit__layout {
  display: grid;
  gap: var(--sp-md);
}

.visit__image-wrap {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(251, 250, 247, 0.15);
}

.visit__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.visit__image-wrap:hover .visit__image {
  transform: scale(1.03);
}

.visit__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit__block {
  padding: var(--sp-md);
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 250, 247, 0.12);
}

.visit__subheading {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.55);
  margin-bottom: 0.65rem;
}

.visit__address {
  font-style: normal;
  font-weight: 300;
  color: rgba(251, 250, 247, 0.9);
  line-height: 1.75;
  margin-bottom: 0.65rem;
}

.visit__map-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-tan);
}

.visit__map-link:hover { color: var(--c-cream-deep); }

.visit__hours-table {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--fs-sm);
  color: rgba(251, 250, 247, 0.88);
}

.visit__hours-table td {
  padding: 0.35rem 0;
  vertical-align: top;
}

.visit__hours-table td:first-child {
  padding-right: 1.25rem;
  color: rgba(251, 250, 247, 0.55);
  white-space: nowrap;
}

.visit__phone a {
  color: var(--c-warm-white);
  text-decoration: none;
  font-size: var(--fs-md);
  font-weight: 500;
}

.visit__phone a:hover { color: var(--c-tan); }

.visit__demo {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: rgba(251, 250, 247, 0.5);
}

.visit__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: var(--fs-sm);
  color: rgba(251, 250, 247, 0.75);
  text-decoration: none;
}

.visit__social:hover { color: var(--c-tan); }

@media (min-width: 900px) {
  .visit__layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

/* Form */
.visit-form-wrap {
  margin-top: var(--sp-lg);
  margin-inline: auto;
  max-width: 38rem;
  padding: var(--sp-md);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(251, 250, 247, 0.12);
}

.visit-form__heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.55);
  margin-bottom: 0.5rem;
}

.visit-form-demo-notice {
  font-size: var(--fs-xs);
  color: rgba(251, 250, 247, 0.75);
  margin-bottom: var(--sp-md);
  padding: 0.5rem 0.75rem;
  background: rgba(251, 250, 247, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(251, 250, 247, 0.15);
}

.visit-form-group {
  margin-bottom: var(--sp-sm);
}

.visit-form-group label {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(251, 250, 247, 0.88);
  margin-bottom: 0.35rem;
}

.visit-form-group input,
.visit-form-group select,
.visit-form-group textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--c-ink);
  background: var(--c-warm-white);
  border: 1px solid rgba(74, 63, 53, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.visit-form-group input:focus,
.visit-form-group select:focus,
.visit-form-group textarea:focus {
  outline: none;
  border-color: var(--c-sage-muted);
  box-shadow: 0 0 0 3px rgba(143, 159, 136, 0.35);
}

.visit-form-group textarea {
  resize: vertical;
  min-height: 5rem;
}

.visit-form-submit { margin-top: var(--sp-sm); }

.visit-form-btn {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: var(--c-tan);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.visit-form-btn:hover {
  background: var(--c-cream-deep);
  color: var(--c-ink);
}

.visit-form-demo-msg {
  font-size: var(--fs-sm);
  margin-top: 0.5rem;
  color: rgba(251, 250, 247, 0.85);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--c-ink);
  color: rgba(251, 250, 247, 0.65);
  padding: var(--sp-xl) 0 var(--sp-md);
}

.footer__cta-block {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(251, 250, 247, 0.12);
}

.footer__cta-eyebrow {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--c-warm-white);
  margin-bottom: 0.75rem;
}

.footer__cta-text {
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(251, 250, 247, 0.72);
  margin-bottom: var(--sp-md);
}

.footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.footer__cta-link {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 250, 247, 0.25);
  padding-bottom: 2px;
}

.footer__cta-link:hover {
  color: var(--c-tan);
  border-bottom-color: var(--c-tan);
}

.footer__bottom {
  display: grid;
  gap: var(--sp-md);
  align-items: start;
  margin-bottom: var(--sp-md);
}

.footer__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--c-warm-white);
  margin-bottom: 0.35rem;
}

.footer__address {
  font-style: normal;
  font-weight: 300;
  font-size: var(--fs-sm);
  margin-bottom: 0.25rem;
}

.footer__phone a {
  color: rgba(251, 250, 247, 0.65);
  text-decoration: none;
}

.footer__phone a:hover { color: var(--c-tan); }

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer__nav-link {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.5);
  text-decoration: none;
}

.footer__nav-link:hover { color: var(--c-tan); }

.footer__social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: rgba(251, 250, 247, 0.5);
  border: 1px solid rgba(251, 250, 247, 0.2);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--c-tan);
  border-color: var(--c-tan);
}

.footer__copy {
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  color: rgba(251, 250, 247, 0.4);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(251, 250, 247, 0.08);
}

@media (min-width: 768px) {
  .footer__bottom {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html { scroll-behavior: auto; }

  .hero__inner { animation: none; }
}

@media print {
  .header,
  .hero__actions,
  .footer__nav,
  .nav__toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
