/* ============================================================
   THE WRENWOOD - template stylesheet
   Romantic and unhurried: photography carries the page, the
   type whispers. Chapel-arch photo frames, champagne hairlines,
   and an invitation-card tour panel. Light theme only.

   Palette : ivory #F8F4EC / sage #7A8B72 / dusk plum #4A3349
             champagne #CBA35C / soft charcoal #2B2733
   Type    : Cormorant Garamond (display) + Karla (body)
   ============================================================ */

:root {
  --ivory: #f8f4ec;
  --ivory-2: #f1eadd;
  --sage: #7a8b72;
  --sage-deep: #5f7058;
  --plum: #4a3349;
  --plum-deep: #3b2839;
  --champagne: #cba35c;
  --champagne-soft: rgba(203, 163, 92, 0.45);
  --charcoal: #2b2733;
  --ink: #3a3440;
  --muted: #766e7e;

  --display: "Cormorant Garamond", "Georgia", serif;
  --body: "Karla", system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--sage-deep);
}

a:hover {
  color: var(--plum);
}

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

.shell {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

/* ---- Type devices ------------------------------------------- */
.kicker {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.1rem;
}

.kicker.on-dark {
  color: var(--champagne);
}

/* Champagne hairline with a small diamond at center */
.flourish {
  position: relative;
  border: 0;
  border-top: 1px solid var(--champagne-soft);
  width: 88px;
  margin: 1.6rem auto;
}

.flourish::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--champagne);
}

.flourish.left {
  margin-inline: 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.8rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 0.3em;
}

.section-head .sub {
  color: var(--muted);
  margin: 0;
}

em,
.it {
  font-family: var(--display);
  font-style: italic;
  letter-spacing: 0.01em;
}

.lede {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--muted);
}

/* ---- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.btn-sage {
  background: var(--sage);
  color: var(--ivory);
}

.btn-sage:hover {
  background: var(--sage-deep);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  border-color: var(--champagne);
  color: var(--charcoal);
}

.btn-ghost:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory);
}

.btn-ghost.on-dark {
  color: var(--ivory);
}

.btn-ivory {
  background: var(--ivory);
  color: var(--plum);
}

.btn-ivory:hover {
  background: #fff;
  color: var(--plum);
}

.text-link {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 0.25rem;
}

.text-link:hover {
  color: var(--plum);
  border-bottom-color: var(--plum);
}

/* ---- Header ---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  background: var(--ivory);
  border-bottom: 1px solid var(--champagne-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--charcoal);
  min-width: 0;
}

.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--charcoal);
}

.brand-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--muted);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--plum);
}

.nav a.active {
  color: var(--charcoal);
  border-bottom-color: var(--champagne);
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav-toggle-bar {
  height: 1.5px;
  background: var(--charcoal);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(43, 39, 51, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Full-bleed hero (signature) --------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 860px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43, 39, 51, 0.42) 0%,
    rgba(43, 39, 51, 0.18) 40%,
    rgba(43, 39, 51, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 760px;
}

.hero-overline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--champagne);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  color: var(--ivory);
  margin-bottom: 0.35em;
}

.hero .hero-sub {
  color: rgba(248, 244, 236, 0.88);
  max-width: 540px;
  margin: 0 auto 2rem;
}

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

/* ---- Intro (letter) ------------------------------------------------ */
.intro {
  text-align: center;
}

.intro-prose {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Space cards (chapel arches) ------------------------------------ */
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.space-card {
  text-align: center;
  text-decoration: none;
  color: var(--charcoal);
  min-width: 0;
}

.space-photo {
  /* display:block is required: the arch radius and overflow clipping
     don't apply to the default inline span box */
  display: block;
  position: relative;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.space-photo img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.space-card:hover .space-photo img {
  transform: scale(1.035);
}

.space-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.15em;
}

.space-card .space-line {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0 0 0.9rem;
}

.space-card .text-link {
  font-size: 0.68rem;
}

/* ---- Plum band (weddings) --------------------------------------------- */
.plum-band {
  background: var(--plum);
  color: var(--ivory);
  padding: 5rem 0;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3.6rem;
  align-items: center;
}

.band-photo {
  position: relative;
  min-width: 0;
}

.band-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

/* Inner champagne frame, inset so it can never overflow. */
.band-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(203, 163, 92, 0.55);
  pointer-events: none;
}

.plum-band h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.plum-band p {
  color: rgba(248, 244, 236, 0.82);
}

.plum-band .flourish {
  margin: 1.4rem 0;
}

/* ---- Gallery strip ------------------------------------------------------ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-strip a {
  display: block;
  overflow: hidden;
  min-width: 0;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-strip a:hover img {
  transform: scale(1.04);
}

.gallery-cta {
  text-align: center;
  margin-top: 2.2rem;
}

/* ---- Facts row ------------------------------------------------------------ */
.facts-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.fact {
  min-width: 0;
}

.fact-figure {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--plum);
}

.fact-figure .it {
  font-size: 0.6em;
  color: var(--champagne);
}

.fact-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ---- Invitation panel (signature) ------------------------------------------- */
.invite-wrap {
  background: var(--ivory-2);
}

.invite {
  max-width: 700px;
  margin-inline: auto;
  background: var(--ivory);
  border: 1px solid var(--champagne);
  outline: 1px solid var(--champagne-soft);
  outline-offset: 6px;
  text-align: center;
  padding: 3.6rem clamp(1.5rem, 5vw, 4rem);
}

.invite .kicker {
  color: var(--champagne);
}

.invite h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin-bottom: 0.4em;
}

.invite p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.8rem;
}

.invite .phone-line {
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.invite .phone-line a {
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}

.invite .phone-line a:hover {
  color: var(--plum);
}

/* ---- Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(248, 244, 236, 0.72);
  padding: 3.8rem 0 2rem;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr) minmax(0, 1.2fr) minmax(0, 0.75fr);
  gap: 2.4rem;
}

.footer-brand .brand-name {
  color: var(--ivory);
  display: block;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  margin: 0;
}

.footer-head {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-list a {
  color: rgba(248, 244, 236, 0.72);
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-list a:hover {
  color: var(--ivory);
  text-decoration: underline;
}

.footer-fine {
  border-top: 1px solid rgba(203, 163, 92, 0.3);
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(248, 244, 236, 0.5);
}

.footer-fine p {
  margin: 0;
}

/* ---- Page hero (interior pages) ------------------------------------------------------ */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  max-width: 720px;
  margin-inline: auto;
}

.page-hero .lede {
  max-width: 560px;
  margin: 0 auto;
}

.page-hero .flourish {
  margin-top: 2rem;
}

/* ---- The tour (Spaces page, signature) ------------------------------------------------ */
.tour-stop {
  padding: 1.5rem 0 3rem;
}

.tour-photo {
  position: relative;
  margin-bottom: 2.6rem;
}

.tour-photo img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.tour-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(248, 244, 236, 0.55);
  pointer-events: none;
}

.tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.tour-num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--champagne);
  margin-bottom: 0.3rem;
}

.tour-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  margin-bottom: 0.25em;
}

.tour-head .tour-line {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.tour-body p {
  color: var(--ink);
}

.facts-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--champagne-soft);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.8rem;
}

.facts-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.facts-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--champagne);
}

/* Wandering interstitials between tour stops */
.interstitial {
  text-align: center;
  padding: 1.6rem 0;
}

.interstitial p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Day timeline (Weddings page) ------------------------------------------------------ */
.timeline {
  max-width: 620px;
  margin-inline: auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--champagne-soft);
}

.moment {
  position: relative;
  padding: 0 0 2.1rem;
}

.moment:last-child {
  padding-bottom: 0;
}

.moment::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.55em;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--champagne);
}

.moment-time {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 0.15rem;
}

.moment p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---- Included list (Weddings page) ------------------------------------------------------ */
.included-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.included-photo {
  position: relative;
  min-width: 0;
}

.included-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.included-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(248, 244, 236, 0.55);
  pointer-events: none;
}

.included-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.included-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.98rem;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--champagne);
}

.included-list .note {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---- Gatherings (Weddings page) ---------------------------------------------------------- */
.gather-band {
  background: var(--ivory-2);
  padding: 4.4rem 0;
}

.gather-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.gather {
  min-width: 0;
}

.gather h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25em;
}

.gather p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.gather .flourish {
  width: 44px;
  margin: 0 auto 1rem;
}

/* ---- Gallery (masonry) ------------------------------------------------------------------ */
.gallery-cat {
  text-align: center;
  margin: 0 0 2rem;
}

.gallery-cat + .gallery-masonry {
  margin-bottom: 3.4rem;
}

.gallery-cat h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.15em;
}

.gallery-cat .cat-line {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 700ms ease;
}

.masonry-item:hover img {
  transform: scale(1.035);
}

.masonry-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(43, 39, 51, 0.6), transparent);
  color: var(--ivory);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.masonry-item:hover .masonry-cap,
.masonry-item:focus-within .masonry-cap {
  opacity: 1;
  transform: none;
}

/* ---- Pricing (packages) ------------------------------------------------------------------ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.package-card {
  border: 1px solid var(--champagne-soft);
  background: var(--ivory);
  padding: 2.4rem 2rem 2.2rem;
  text-align: center;
  min-width: 0;
}

.package-card.featured {
  border-color: var(--champagne);
  outline: 1px solid var(--champagne-soft);
  outline-offset: 5px;
  background: #fffdf8;
}

.package-tier {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}

.package-card.featured .package-tier {
  color: var(--champagne);
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.package-price {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--plum);
  line-height: 1.1;
}

.package-price .from {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.package-price .per {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.package-card .flourish {
  margin: 1.6rem auto;
}

.package-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.4rem;
}

.package-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.package-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.94rem;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--champagne);
}

.price-disclaimer {
  max-width: 640px;
  margin: 2.6rem auto 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--muted);
}

/* What shapes the number */
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  text-align: center;
}

.shape {
  min-width: 0;
}

.shape .flourish {
  width: 44px;
  margin: 0 auto 1rem;
}

.shape h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2em;
}

.shape p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ---- Contact page ------------------------------------------------------------------------ */
.contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.form-card {
  border: 1px solid var(--champagne);
  outline: 1px solid var(--champagne-soft);
  outline-offset: 5px;
  background: var(--ivory);
  padding: 2.4rem clamp(1.4rem, 3vw, 2.4rem);
}

.form-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.demo-flag {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  border-top: 1px solid var(--champagne-soft);
  border-bottom: 1px solid var(--champagne-soft);
  padding: 0.9rem 0.2rem;
  margin-bottom: 1.7rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.demo-flag svg {
  flex: none;
  color: var(--champagne);
  margin-top: 0.15rem;
}

.field {
  margin-bottom: 1.2rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.field label {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}

.field .req {
  color: var(--champagne);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory-2);
  border: 1px solid var(--champagne-soft);
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
}

.form-note {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-card .btn {
  margin-top: 0.5rem;
}

.form-status {
  display: none;
  margin: 1.3rem 0 0;
  padding: 1.1rem 1.2rem;
  background: var(--plum);
  color: var(--ivory);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
}

.form-status.is-shown {
  display: block;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.info-block .kicker {
  margin-bottom: 0.5rem;
}

.info-block p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.info-block a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne);
  overflow-wrap: anywhere;
}

.info-block a:hover {
  color: var(--plum);
}

.info-block + .info-block {
  border-top: 1px solid var(--champagne-soft);
  padding-top: 1.7rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--plum);
  color: var(--ivory);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(203, 163, 92, 0.5);
  pointer-events: none;
}

.map-frame-inner {
  position: relative;
}

.map-frame .map-pin {
  color: var(--champagne);
  margin-bottom: 0.6rem;
}

.map-frame .map-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 0.2rem;
}

.map-frame p {
  margin: 0;
  color: rgba(248, 244, 236, 0.72);
  font-size: 0.88rem;
}

/* ---- Scroll reveal ---------------------------------------------------------------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

html.js .reveal[data-delay="1"] {
  transition-delay: 110ms;
}

html.js .reveal[data-delay="2"] {
  transition-delay: 220ms;
}

/* ---- Responsive --------------------------------------------------------------------- */
/* Drawer at 1080px: six long nav labels plus the tour button. */
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: min(330px, 84vw);
    background: var(--plum);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 4.8rem 2.1rem 2rem;
    transform: translateX(105%);
    transition: transform 260ms ease;
    visibility: hidden;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: none;
    visibility: visible;
  }

  .nav a {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--ivory);
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(203, 163, 92, 0.28);
  }

  .nav a:hover {
    color: #fff;
  }

  .nav a.active {
    color: var(--champagne);
    border-bottom-color: var(--champagne);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 42px;
    height: 42px;
    border: 1px solid var(--champagne);
    border-radius: 50%;
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .space-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.6rem;
    max-width: 420px;
    margin-inline: auto;
  }

  .band-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .band-photo {
    max-width: 460px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  .included-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .included-photo {
    max-width: 460px;
  }

  .gather-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 1.6rem;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .package-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-inline: auto;
  }

  .shapes-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-cols {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.6rem 0;
  }

  .hero {
    min-height: clamp(480px, 78vh, 640px);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.9rem;
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .facts-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .gather-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }

  .tour-photo img {
    aspect-ratio: 4 / 3;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .btn.header-cta {
    display: none;
  }
}

/* ---- Reduced motion ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
