/* ==========================================================================
   Vargas Vows & Voyages
   ========================================================================== */

:root {
  /* Color */
  --mist:       #F4F7FA;
  --mist-deep:  #E8EEF4;
  --paper:      #FFFFFF;
  --ink:        #1C2430;
  --ink-soft:   #3D4957;
  --muted:      #5E6D7E;
  --line:       #D8E1EA;
  --blue:       #2F4A66;
  --blue-mid:   #4A6B8A;
  --blue-wash:  #E5EBF1;
  /* A restrained terracotta accent, lifted from the balloon photography.
     --accent-soft is its counterpart for details on a --blue background. */
  --accent:      #995F46;
  --accent-soft: #E6BEAA;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap: 1140px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 3px;

  /* Height of the fixed header. This is the fallback; main.js overwrites it
     with the real measured height so interior pages can never slide under
     the header if it grows (longer name, extra nav item, bigger type). */
  --header-h: 5rem;

  --shadow-sm: 0 1px 2px rgba(28, 36, 48, .05), 0 4px 16px rgba(28, 36, 48, .05);
  --shadow-lg: 0 2px 4px rgba(28, 36, 48, .04), 0 18px 48px rgba(28, 36, 48, .09);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- Reset -- */

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

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

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.75rem, 6.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.5rem; line-height: 1.25; }

h1 em, h2 em { font-style: italic; color: var(--blue); }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

.skip-link {
  position: absolute; left: 50%; top: -100px; z-index: 200;
  transform: translateX(-50%);
  background: var(--ink); color: var(--mist);
  padding: .75rem 1.25rem; text-decoration: none;
}
.skip-link:focus { top: .5rem; color: var(--mist); }

/* ------------------------------------------------------------ Utilities -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap.narrow { max-width: 800px; }

.eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-alt { background: var(--mist-deep); }

.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lede { margin-top: .25rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.grid-2.gap-lg { gap: clamp(2.5rem, 6vw, 5.5rem); }
.align-center { align-items: center; }

.fine-print {
  margin-top: 2.5rem;
  font-size: .9rem;
  color: var(--muted);
  max-width: 62ch;
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------- Button -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  background: var(--blue);
  color: var(--mist);
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--mist);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }

.btn-sm { padding: .7rem 1.35rem; font-size: .75rem; }
.btn-block { width: 100%; margin-top: .5rem; }

/* --------------------------------------------------------------- Header -- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(244, 247, 250, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  text-decoration: none;
  line-height: 0;
}

.brand-logo {
  width: clamp(11rem, 17vw, 12.5rem);
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
  background: var(--blue);
  color: var(--mist);
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 50%;
}
.brand-mark .amp { font-size: .7em; opacity: .8; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.nav > a:not(.btn) {
  position: relative;
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: .25rem;
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav > a:not(.btn):hover::after,
.nav > a.is-active::after { transform: scaleX(1); }
.nav > a:not(.btn).is-active { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem; height: 2.75rem;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------------------------- Hero -- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(90vh, 860px);
  padding-top: var(--header-h); /* clears the fixed header */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(74, 107, 138, .22), transparent 58%),
    radial-gradient(100% 80% at 8% 92%, rgba(94, 128, 168, .18), transparent 55%),
    linear-gradient(170deg, var(--mist) 0%, var(--mist-deep) 100%);
}
/* Fine linen texture */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    repeating-linear-gradient(45deg, rgba(28, 36, 48, .022) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-45deg, rgba(28, 36, 48, .022) 0 1px, transparent 1px 7px);
}

.hero-inner {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, .72fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding-block: clamp(3rem, 7vw, 5rem);
  max-width: var(--wrap);
}
.hero-copy { min-width: 0; }
.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 5vw, 4.2rem);
}
.hero .lede { max-width: 56ch; font-size: 1.2rem; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: 0;
  justify-self: end;
  aspect-ratio: 4 / 5;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(153, 95, 70, .42);
  border-radius: var(--radius);
}
.hero-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-visual figcaption {
  position: absolute;
  right: -1.5rem;
  bottom: 1.5rem;
  max-width: 16rem;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}
.hero-visual figcaption span { color: var(--accent); margin-right: .35em; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-strip {
  position: relative;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 1.25rem;
  padding-block: 1.1rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip-inner .dot { color: var(--accent); }

/* ----------------------------------------------- Interior page header -- */

.page-head {
  position: relative;
  padding: calc(var(--header-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 140% at 82% 0%, rgba(74, 107, 138, .2), transparent 60%),
    linear-gradient(170deg, var(--mist) 0%, var(--mist-deep) 100%);
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    repeating-linear-gradient(45deg, rgba(28, 36, 48, .022) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-45deg, rgba(28, 36, 48, .022) 0 1px, transparent 1px 7px);
}
.page-head > .wrap { position: relative; }

.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  max-width: 16ch;
  margin-bottom: .35em;
}
.page-head .lede { max-width: 58ch; }

/* ------------------------------------------------------------ CTA band -- */

.cta-band {
  background: var(--blue);
  color: rgba(244, 247, 250, .8);
  /* Extra bottom padding: the button needs room before the dark footer,
     and the band's top padding already reads as generous from the section above. */
  padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  text-align: center;
}
.cta-band h2 { color: var(--mist); }
.cta-band h2 em { color: var(--accent-soft); }
.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  font-weight: 300;
}
.cta-band p a { color: var(--mist); }
.cta-band p a:hover { color: var(--accent-soft); }
.cta-band .btn {
  margin-top: 2rem;
  background: var(--mist);
  border-color: var(--mist);
  color: var(--ink);
}
.cta-band .btn:hover {
  background: transparent;
  border-color: var(--mist);
  color: var(--mist);
}

/* ------------------------------------------------- Home: teaser cards -- */

.teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.teaser {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.teaser:hover {
  transform: translateY(-4px);
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.teaser h3 { margin-bottom: .4rem; }
.teaser p { font-size: .95rem; color: var(--muted); }
.teaser .teaser-price {
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--blue);
}
.teaser .arrow {
  display: inline-block;
  margin-left: .35em;
  transition: transform .3s var(--ease);
}
.teaser:hover .arrow { transform: translateX(4px); }

/* --------------------------------------------- Home: vows to voyages -- */

.vows-voyages { background: var(--paper); }
.vows-voyages-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  position: relative;
}
.vows-voyages-inner::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  top: calc(clamp(4.5rem, 10vw, 8rem) * -1);
  width: 4rem;
  height: 3px;
  background: var(--accent);
}
.vows-voyages h2 { max-width: 12ch; }
.vows-voyages p { max-width: 60ch; }
.journey {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--blue);
}
.journey span {
  flex: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}
.journey i {
  position: relative;
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--blue-mid));
}
.journey i::before,
.journey i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--paper);
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}
.journey i::before { left: 0; }
.journey i::after { right: 0; border-color: var(--blue-mid); }

/* ---------------------------------------------------------------- Cards -- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-feature {
  background: var(--blue);
  border-color: var(--blue);
}
.card-feature h3, .card-feature .card-price { color: var(--mist); }
.card-feature .card-desc, .card-feature .checks li { color: rgba(244, 247, 250, .82); }
.card-feature .card-tag { color: var(--accent-soft); }
.card-feature .checks li::before { color: var(--accent-soft); }
.card-feature .card-price { border-bottom-color: rgba(244, 247, 250, .22); }

.card-tag {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}

.card-price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--blue);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.card-desc { font-size: .95rem; color: var(--muted); }

.checks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  font-size: .95rem;
}
.checks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .7rem;
  line-height: 1.55;
}
.checks li::before {
  content: "✦";
  position: absolute;
  left: 0; top: -.05em;
  font-size: .8em;
  color: var(--accent);
}

/* ---------------------------------------------------------------- Steps -- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin: 0;
  padding: 0;
}

.step {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 2.5rem; height: 1px;
  background: var(--blue);
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .75rem;
}
.step h3 { font-size: 1.375rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; color: var(--muted); }

/* -------------------------------------------------------------- Portrait -- */

.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* The real photo. */
img.portrait {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* The gradient stand-in, used only while there's no photo yet. */
div.portrait {
  background:
    radial-gradient(75% 60% at 28% 18%, rgba(255, 255, 255, .55), transparent 62%),
    linear-gradient(158deg, #EAEFF5 0%, #BFCEDC 48%, var(--blue-mid) 100%);
}
div.portrait::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 2px;
  pointer-events: none;
}
.portrait-note {
  position: absolute;
  inset: auto 0 1.6rem;
  text-align: center;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ------------------------------------------------------- About: notes -- */

.about-notes { background: var(--paper); }
.about-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.about-note {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-note > span {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: .12em;
  color: var(--accent);
}
.about-note h3 { font-size: 1.4rem; }
.about-note p { font-size: .95rem; color: var(--muted); }

/* --------------------------------------------------------- Photography -- */

/* A framed photo sitting in a text layout. Pair with a ratio class so the
   box is reserved before the image loads and nothing shifts. */
.framed {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.framed-tall { aspect-ratio: 4 / 5; }
.framed-wide { aspect-ratio: 3 / 2; }

.travel-pair {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 6 / 5;
}
.travel-pair img {
  position: absolute;
  display: block;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.travel-pair img:first-child {
  top: 0;
  left: 0;
  width: 86%;
}
.travel-pair img:last-child {
  right: 0;
  bottom: 0;
  width: 70%;
  border: 6px solid var(--paper);
}

figure.photo { margin: 0; }
figure.photo figcaption {
  margin-top: .9rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--muted);
}

/* Full-bleed image band. */
.media-band { position: relative; line-height: 0; }
.media-band img {
  width: 100%;
  height: clamp(300px, 46vh, 520px);
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
}

/* ------------------------------------------------------------ Showcase -- */

/* Editorial photo grid. Every frame is landscape, and rows alternate which
   side carries the wide one. Both frames in a row share one fixed height so
   their tops and bottoms line up no matter what the source ratios are. */
.showcase {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.showcase-row:nth-child(even) { grid-template-columns: 1fr 1.65fr; }

/* One image running the full width, as a closing beat. Must follow the
   :nth-child rule above — same specificity, so source order decides. */
.showcase-row.showcase-full { grid-template-columns: 1fr; }
.showcase-full img { height: clamp(260px, 38vw, 520px); }

.showcase figure { margin: 0; }
.showcase img {
  width: 100%;
  height: clamp(230px, 30vw, 400px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.showcase figure:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
/* Nudge a crop off-centre when the subject doesn't sit in the middle. */
.showcase img.crop-low { object-position: center 78%; }
.showcase figcaption {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------- Featured quote -- */

.featured-quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.3;
  color: var(--ink);
}
.featured-quote cite {
  display: block;
  font-style: normal;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------- Quotes -- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

.quote { margin: 0; }
.quote blockquote {
  position: relative;
  margin: 0 0 1.25rem;
  padding-top: 2.25rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
}
.quote blockquote::before {
  content: "”";
  position: absolute;
  top: -.35em; left: -.05em;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--line);
}
.quote figcaption {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------------ FAQ -- */

.faq {
  max-width: 820px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }

.faq-item summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  margin-top: .55em;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }

.faq-item p {
  margin: 0;
  padding: 0 3rem 1.6rem 0;
  font-size: .98rem;
  color: var(--muted);
  max-width: 68ch;
  animation: faq-in .35s var(--ease) both;
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------- Contact -- */

.contact-details {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}
.contact-details > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-details dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .2rem;
}
.contact-details dd { margin: 0; color: var(--ink); font-size: .98rem; }

.form {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

/* Specificity has to beat the global `p:last-child { margin-bottom: 0 }`,
   which would otherwise collapse the last field in every row. */
.form .field { margin: 0 0 1.1rem; }
.field label {
  display: block;
  margin-bottom: .45rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .9rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--blue);
  outline: none;
}
.field input:user-invalid { border-color: #B3413C; }

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form .btn:disabled {
  cursor: wait;
  opacity: .68;
}

.form-note {
  margin: 1rem 0 0;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
}
.form-note.is-error { color: #B3413C; }
.form-note.is-success { color: #2E6B4F; }

/* --------------------------------------------------------------- Footer -- */

.site-footer {
  background: var(--ink);
  color: rgba(244, 247, 250, .62);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
  font-size: .9rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
  justify-items: center;
}
.footer-brand .brand-mark {
  background: transparent;
  border: 1px solid rgba(244, 247, 250, .3);
  margin-bottom: .9rem;
}
.footer-brand p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--mist);
}
.footer-tag {
  font-family: var(--sans) !important;
  font-size: .8rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244, 247, 250, .5) !important;
  margin-top: .5rem !important;
}

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem; }
.footer-nav a {
  color: rgba(244, 247, 250, .72);
  text-decoration: none;
  font-size: .85rem;
}
.footer-nav a:hover { color: var(--mist); }

/* ------------------------------------------------------- Scroll reveal -- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Stagger children within a group */
.cards .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.showcase-row .reveal:nth-child(2),
.quote-grid .reveal:nth-child(2) { transition-delay: .09s; }
.cards .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.quote-grid .reveal:nth-child(3) { transition-delay: .18s; }
.steps .reveal:nth-child(4) { transition-delay: .27s; }

/* ---------------------------------------------------------- Responsive -- */

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .hero-inner,
  .vows-voyages-inner { grid-template-columns: 1fr; }
  .hero-visual {
    max-width: none;
    justify-self: stretch;
    aspect-ratio: 16 / 10;
  }
  .hero-visual figcaption { right: 1.25rem; }
  .about-note-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portrait { max-width: 420px; }

  /* One wide frame per row — the narrow column gets too cramped below this. */
  .showcase-row,
  .showcase-row:nth-child(even) { grid-template-columns: 1fr; }
  /* Also flattens .showcase-full, which is what we want on a phone. */
  .showcase img { height: clamp(200px, 46vw, 360px); }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 5rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    background: var(--mist);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav > a:not(.btn) {
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 1.5rem; }
}

@media (max-width: 560px) {
  .header-inner { gap: .75rem; }
  .brand-logo { width: 10.25rem; }
  .steps { grid-template-columns: 1fr; }
  .field-row { display: block; } /* stack fields, keeping each .field's own margin */
  .contact-details > div { grid-template-columns: 1fr; gap: .2rem; }
  .hero { min-height: auto; padding-top: var(--header-h); }
  .hero-inner { padding-block: 3rem; gap: 2.5rem; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .hero-visual::before { inset: .7rem -.7rem -.7rem .7rem; }
  .hero-visual figcaption {
    right: .8rem;
    bottom: .8rem;
    max-width: 14rem;
    font-size: .95rem;
  }
  .hero-actions .btn { flex: 1 1 100%; }
  .faq-item p { padding-right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .hero-bg, .form { display: none; }
  body { background: #fff; }
  .js .reveal { opacity: 1; transform: none; }
}
