/*
  The Gaderian — site stylesheet
  Editorial wedding/event venue. Mobile-first.
  Type: EB Garamond (serif) + Zalando Sans Expanded (uppercase labels).
  Palette: warm charcoal #4e4843, darker grays, white.
*/

:root {
  --ink:        #2a2724;
  --warm:       #4e4843;
  --warm-soft:  #6b645c;
  --muted:      #8c857d;
  --line:       #d8d3cc;
  --line-soft:  #ebe6df;
  --paper:      #ffffff;
  --paper-alt:  #f6f3ee;
  --paper-deep: #1d1a17;

  --serif: "EB Garamond", "Garamond", "Adobe Garamond Pro", Georgia, serif;
  --sans:  "Zalando Sans Expanded", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shadow-soft: 0 2px 24px rgba(40, 35, 30, 0.06);
  --shadow-card: 0 18px 50px -28px rgba(40, 35, 30, 0.35);

  --container:  1280px;
  --container-narrow: 880px;
  --container-wide:   1480px;

  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--warm); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ink); }

/* ───────────── Typography ───────────── */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--ink); letter-spacing: -0.005em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.eyebrow,
.label {
  font-family: var(--sans);
  font-weight: 500;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--warm);
}
.eyebrow { display: inline-block; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--warm-soft);
  max-width: 60ch;
}

.script,
.italic-flourish {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--warm);
}

/* hairline divider */
.rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--warm);
  margin: 1.5rem auto;
}
.rule--left { margin-left: 0; margin-right: 0; }

/* ───────────── Layout primitives ───────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }

.section { padding-block: clamp(64px, 8vw, 120px); }
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--paper-deep); color: #e9e4dc; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #f4efe6; }
.section--dark .eyebrow, .section--dark .label { color: #c8bfb1; }

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  border: 1px solid var(--warm);
  background: var(--warm);
  color: #f7f3ec;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--warm); }
.btn--ghost:hover { background: var(--warm); color: #f7f3ec; }
.btn--light  { background: transparent; color: #f4efe6; border-color: #f4efe6; }
.btn--light:hover { background: #f4efe6; color: var(--warm); }
.btn--wide { padding-inline: 40px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ───────────── Skip link ───────────── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--warm); color: #fff;
  padding: 10px 16px; border-radius: 4px;
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 999;
}
.skip-link:focus { top: 16px; }

/* ───────────── Header ───────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 14px;
  max-width: none;
  padding-inline: clamp(24px, 4vw, 56px);
}
.site-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.site-logo img { height: 56px; width: auto; transition: height var(--transition); }
.site-nav {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.site-nav a {
  font-family: var(--sans); font-weight: 500; font-stretch: expanded;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.7rem; color: var(--ink);
  padding-block: 8px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--warm); border-bottom-color: var(--warm); }
.site-nav .nav-cta {
  background: var(--warm); color: #f7f3ec !important; padding: 12px 22px;
  border: 1px solid var(--warm);
}
.site-nav .nav-cta:hover { background: var(--ink); border-color: var(--ink); }

/* Header phone — desktop shows full number; tablet/mobile shows icon-only */
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.7rem; color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--warm); }
.header-phone svg { width: 16px; height: 16px; }
.header-phone--full {
  margin-left: 4px;
  padding-left: 0;
  border-left: none;
}
.header-actions {
  display: none;
  align-items: center; gap: 4px;
  flex-shrink: 0;
}
.header-actions .header-phone--icon {
  width: 44px; height: 44px;
  justify-content: center;
  border: 1px solid transparent;
  color: var(--ink);
}
.header-actions .header-phone--icon:hover { color: var(--warm); border-color: var(--line); }
.header-actions .header-phone--icon svg { width: 18px; height: 18px; }

.nav-toggle {
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ───────────── Hero ───────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 820px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--paper-deep);
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.30) 0%, rgba(20,17,14,0.20) 40%, rgba(20,17,14,0.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding: 80px 24px;
  max-width: 880px;
}
.hero h1 { color: #fff; margin-bottom: 28px; font-size: clamp(2.6rem, 6.5vw, 5rem); }
.hero p.lede { color: rgba(255,255,255,0.92); margin: 0 auto 36px; }
.hero .eyebrow { color: #f1e9d9; letter-spacing: 0.4em; margin-bottom: 18px; }
.hero .btn-row { justify-content: center; }

/* Compact hero for inner pages */
.hero--inner {
  min-height: clamp(360px, 50vh, 520px);
}

/* Bottom-aligned hero variant — text sits at the bottom so it doesn't cover the subject */
.hero--bottom { align-items: flex-end; text-align: left; }
.hero--bottom .hero__inner {
  max-width: 760px;
  padding: 64px 24px 72px clamp(40px, 8vw, 120px);
  margin-right: auto;
}
.hero--bottom h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
.hero--bottom .hero__media::after {
  background: linear-gradient(180deg, rgba(20,17,14,0.15) 0%, rgba(20,17,14,0.0) 35%, rgba(20,17,14,0.65) 100%);
}
.hero--bottom .btn-row { justify-content: flex-start; }
@media (max-width: 640px) {
  .hero--bottom { text-align: center; align-items: flex-end; }
  .hero--bottom .hero__inner { margin-inline: auto; padding: 56px 22px; padding-bottom: 56px; }
  .hero--bottom .btn-row { justify-content: center; }
}

/* Mobile-only — drop the hero text out of the photo into a dark band below.
   Subject stays unobstructed; copy stays readable. */
@media (max-width: 640px) {
  .hero {
    display: block;
    min-height: 0;
    align-items: initial;
    text-align: center;
    background: var(--paper-deep);
    overflow: hidden;
  }
  .hero__media {
    position: relative;
    inset: auto;
    height: 56vh;
    min-height: 300px;
    max-height: 460px;
  }
  .hero__media::after { display: none; }
  .hero__inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 40px 22px 48px !important;
    text-align: center !important;
    margin: 0 !important;
    color: #f4efe6;
    background: var(--paper-deep);
  }
  .hero h1 { color: #f4efe6; }
  .hero p.lede { color: rgba(244, 239, 230, 0.86); margin: 0 auto 28px; }
  .hero .eyebrow { color: #d8cfbe; }
  .hero--bottom .btn-row,
  .hero .btn-row { justify-content: center; }
  /* Hide ghost-light variant border issue on small screens */
  .hero .btn.btn--light { width: 100%; }
}

/* ───────────── Two-column intro ───────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--media-right { grid-template-columns: 1fr 1fr; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split h2 { margin-bottom: 20px; }
.split .eyebrow { margin-bottom: 16px; }

/* ───────────── Feature cards ───────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: 48px;
}
.feature {
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--warm-soft); font-size: 1rem; line-height: 1.7; }

/* ───────────── Filterable gallery ───────────── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 48px;
}
.filter-tab {
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.68rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 13px 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
}
.filter-tab:hover { background: #fff; border-color: var(--warm); }
.filter-tab[aria-pressed="true"] {
  background: var(--warm);
  border-color: var(--warm);
  color: #f7f3ec;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.filter-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-alt);
  cursor: zoom-in;
}
.filter-grid figure[hidden] { display: none; }
.filter-grid__sentinel { height: 1px; }
@keyframes fg-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.filter-grid figure.is-revealing {
  animation: fg-reveal 0.5s ease both;
}
.filter-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.filter-grid figure:hover img { transform: scale(1.04); }
.filter-grid figure.figure--video { cursor: default; }
.filter-grid figure.figure--video video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: #000;
}
@media (max-width: 540px) {
  .filter-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 17, 14, 0.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 999;
  padding: 56px 72px;
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 100%;
  max-height: 100%;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}
.lightbox__caption {
  display: none;
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.4);
  color: #f4efe6;
  cursor: pointer;
  font-family: var(--sans); font-size: 1rem; line-height: 1;
}
.lightbox__close:hover { background: rgba(244, 239, 230, 0.12); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.35);
  color: #f4efe6;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.lightbox__nav:hover { background: rgba(244, 239, 230, 0.12); border-color: rgba(244, 239, 230, 0.7); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
@media (max-width: 640px) {
  .lightbox { padding: 56px 12px; }
  .lightbox__nav { top: auto; bottom: 12px; transform: none; width: 46px; height: 46px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__stage img { max-height: calc(100vh - 200px); }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.gallery__card {
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 14px 14px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.gallery__card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; margin-bottom: 18px; }
.gallery__card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.gallery__card .label { font-size: 0.65rem; letter-spacing: 0.32em; color: var(--muted); }
.gallery__card .rule { margin: 14px auto; width: 36px; }

/* ───────────── Quote band ───────────── */
.quote-band {
  position: relative;
  background: var(--paper-alt);
  text-align: center;
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.quote-band--image::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.quote-band--image::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(246, 243, 238, 0.55);
}
.quote-band__card {
  position: relative; z-index: 2;
  max-width: 900px; margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
}
.quote-band__inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; padding-inline: 24px; }
.quote-band h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.35; color: var(--ink); letter-spacing: 0.02em; }
.quote-band h2.serif-italic { font-style: italic; color: var(--warm); }

/* ───────────── Editorial three-column story (inspo layout) ───────────── */
.story-trio {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.2fr minmax(240px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.story-trio__card { text-align: center; }
.story-trio__card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 18px; }
.story-trio__card .label { font-size: 0.65rem; letter-spacing: 0.32em; color: var(--warm); display: block; margin-bottom: 8px; }
.story-trio__card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.story-trio__card p { font-size: 0.95rem; color: var(--warm-soft); max-width: 30ch; margin-inline: auto; }
.story-trio__middle { text-align: center; padding-block: 16px; }
.story-trio__middle .eyebrow { margin-bottom: 18px; }
.story-trio__middle .rule { margin: 22px auto; }
.story-trio__middle p { margin-inline: auto; }
.story-trio__middle .italic-line { font-style: italic; color: var(--warm); font-size: 1.3rem; line-height: 1.5; margin-bottom: 20px; }
.story-trio__location {
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.85rem; color: var(--ink);
}
.story-trio__location-sub {
  font-family: var(--sans); font-stretch: expanded; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.65rem; color: var(--muted); margin-top: 4px;
}

@media (max-width: 900px) {
  .story-trio { grid-template-columns: 1fr; gap: 36px; }
  .story-trio__card img { aspect-ratio: 4/3; max-width: 420px; margin-inline: auto; }
}

/* ───────────── Filterable photo gallery ───────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 48px;
}
.filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--warm-soft);
  padding: 11px 22px;
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
}
.filter:hover { color: var(--ink); border-color: var(--warm); }
.filter.is-active { background: var(--warm); color: #f7f3ec; border-color: var(--warm); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 1px;
  gap: 12px;
}
.photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  grid-row-end: span 38;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.photo--tall { grid-row-end: span 46; }
.photo--short { grid-row-end: span 30; }
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.photo:hover img { transform: scale(1.04); }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(20,17,14,0.72));
  color: #f4efe6;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}
.photo:hover figcaption, .photo:focus-within figcaption { opacity: 1; transform: translateY(0); }
.photo figcaption .label { color: #f1e9d9; font-size: 0.62rem; }
.photo[hidden] { display: none !important; }

@media (max-width: 540px) {
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .filter { padding: 10px 16px; font-size: 0.62rem; letter-spacing: 0.18em; }
}

/* ───────────── Testimonials ───────────── */
.testimonials {
  display: grid; gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 56px;
}
.testimonial {
  text-align: center;
  padding: 8px 12px;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial__author {
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.7rem; color: var(--warm);
}
.testimonial__stars { color: var(--warm); letter-spacing: 0.2em; margin-bottom: 16px; font-size: 0.9rem; }

/* ───────────── FAQ ───────────── */
.faq { max-width: 820px; margin-inline: auto; margin-top: 48px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item details { padding-block: 22px; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex-shrink: 0; width: 14px; height: 14px;
  background:
    linear-gradient(var(--warm), var(--warm)) center/14px 1px no-repeat,
    linear-gradient(var(--warm), var(--warm)) center/1px 14px no-repeat;
  transition: transform var(--transition);
}
.faq__item details[open] summary::after {
  background:
    linear-gradient(var(--warm), var(--warm)) center/14px 1px no-repeat;
}
.faq__answer { color: var(--warm-soft); line-height: 1.75; padding-top: 14px; max-width: 70ch; }

/* ───────────── Video grid ───────────── */
.video-grid {
  display: grid; gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 56px;
}
.video {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video--wide { aspect-ratio: 16 / 9; }

/* ───────────── Packages ───────────── */
.package-grid {
  display: grid; gap: clamp(20px, 3vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 56px;
}
.package {
  --pad: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  padding: var(--pad);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.package__media {
  display: block;
  width: calc(100% + (var(--pad) * 2));
  max-width: none;
  margin-top: calc(var(--pad) * -1);
  margin-left: calc(var(--pad) * -1);
  margin-right: calc(var(--pad) * -1);
  margin-bottom: 32px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.package__title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 4px; }
.package__sub { font-style: italic; color: var(--warm-soft); margin-bottom: 20px; }
.package ul { list-style: none; padding: 0; margin: 24px 0; }
.package li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
  color: var(--ink);
  display: flex; gap: 14px; align-items: flex-start;
}
.package li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--warm);
  border-radius: 50%;
  margin-top: 10px; flex-shrink: 0;
}
.package .btn { margin-top: auto; align-self: flex-start; }

/* ───────────── Contact form ───────────── */
.form {
  display: grid; gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row--full { grid-column: 1 / -1; }
.form label {
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.7rem; color: var(--warm);
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form input[type="number"],
.form select,
.form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color var(--transition);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--warm);
}
.form textarea { resize: vertical; min-height: 140px; }
.form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%234e4843' d='M4 6l4 4 4-4z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form__submit { grid-column: 1 / -1; }

.contact-meta { font-family: var(--serif); font-size: 1.1rem; line-height: 1.9; color: var(--ink); }
.contact-meta .label { display: block; margin-bottom: 4px; }
.contact-meta a { color: var(--warm); }
.contact-meta address { font-style: normal; }

/* ───────────── Image strip ───────────── */
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.image-strip img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* ───────────── Footer ───────────── */
.site-footer {
  background: var(--paper-deep);
  color: rgba(244, 239, 230, 0.72);
  padding-block: 80px 32px;
  margin-top: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
.site-footer .footer-logo img { height: 80px; width: auto; filter: brightness(0) invert(1) opacity(0.9); }
.site-footer .footer-tag {
  font-family: var(--serif); font-style: italic; color: #d8cfbe;
  margin-top: 18px; max-width: 28ch; line-height: 1.65;
}
.site-footer h4 {
  font-family: var(--sans); font-stretch: expanded; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.7rem; color: #f4efe6;
  margin-bottom: 22px;
}
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a {
  color: rgba(244, 239, 230, 0.72);
  font-family: var(--serif); font-size: 1rem;
}
.site-footer a:hover { color: #fff; }
.site-footer address {
  font-style: normal; line-height: 1.85;
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 28px;
  font-family: var(--sans); font-stretch: expanded;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.65rem; color: rgba(244, 239, 230, 0.55);
}
.footer-bottom a {
  font-family: var(--sans); font-stretch: expanded;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244, 239, 230, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 239, 230, 0.25);
  padding-bottom: 1px;
}
.footer-bottom a:hover { color: #fff; border-bottom-color: #fff; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.25);
  color: rgba(244, 239, 230, 0.75);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-row a:hover { background: rgba(244, 239, 230, 0.95); color: var(--paper-deep); border-color: rgba(244, 239, 230, 0.95); }
.social-row svg { width: 16px; height: 16px; }

/* ───────────── Responsive ───────────── */
@media (max-width: 1100px) {
  .site-nav { gap: 20px; }
  .site-nav a { font-size: 0.66rem; letter-spacing: 0.18em; }
  .header-phone--full { padding-left: 14px; margin-left: 4px; font-size: 0.66rem; letter-spacing: 0.14em; }
}

@media (max-width: 1024px) {
  .header-phone--full { display: none; }
  .header-actions { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column; gap: 0;
    padding: 8px 24px 24px;
    display: none;
    box-shadow: 0 24px 40px -32px rgba(40, 35, 30, 0.4);
  }
  .site-nav.is-open { display: flex; }
  .site-nav li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .site-nav li:last-child { border-bottom: none; }
  .site-nav a {
    width: 100%; padding-block: 18px;
    font-size: 0.78rem; letter-spacing: 0.22em;
    border-bottom: none !important;
  }
  .site-nav .nav-cta {
    display: block; width: 100%; text-align: center; padding-block: 18px;
    margin-top: 12px;
  }
}

@media (max-width: 960px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .site-logo img { height: 48px; }
  .hero__inner { padding: 60px 22px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .hero p.lede { font-size: 1rem; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__media img { aspect-ratio: 4/3; }

  .form { grid-template-columns: 1fr; }

  .image-strip { grid-template-columns: 1fr; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .package__media { aspect-ratio: 16/11; }
  .quote-band__card { padding: 32px 22px; }
  .feature-grid { gap: 28px; }
}

@media (max-width: 540px) {
  .hero { min-height: 540px; }
  .hero__inner { padding: 56px 20px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .filter-tab { padding: 11px 16px; font-size: 0.62rem; letter-spacing: 0.18em; }
  .video-grid { grid-template-columns: 1fr; }
  .video { aspect-ratio: 9/12; }
  .package-grid { gap: 24px; }
  .package { --pad: clamp(20px, 6vw, 32px); }
  .gallery__card { padding-inline: 10px; }
  .testimonials { gap: 20px; }
  .faq__item summary { font-size: 1.05rem; }
  .site-nav { padding-inline: 18px; }
  .site-header__inner { gap: 8px; }
}

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