/* ==========================================================================
   Aditi & Vedant — wedding site
   Palette + type scale, then components. Mobile-first throughout.
   ========================================================================== */

:root {
  --cream:      #FAF6EA;
  --cream-deep: #F3EDDC;
  --paper:      #FFFDF6;
  --ink:        #373D2E;
  --ink-soft:   #5C6350;
  --muted:      #8A907A;
  --line:       #DED6BF;
  --line-soft:  #ECE4D0;
  --brass:      #A07A38;
  --brass-deep: #856229;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 68rem;
  --wrap-narrow: 44rem;

  --pad-x: 1.375rem;
  --section-y: 4.5rem;

  --radius: 2px;
  --shadow: 0 1px 2px rgba(55, 61, 46, .05), 0 8px 28px rgba(55, 61, 46, .07);

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

@media (min-width: 48rem) {
  :root { --pad-x: 2.5rem; --section-y: 6.5rem; }
}

/* --------------------------------------------------------------- reset -- */

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

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1.25rem;
  font-size: .9rem;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* ------------------------------------------------------------- helpers -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * .62); }

.eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40rem;
}

.rule {
  width: 2.5rem;
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 2.25rem 0;
}
.rule--center { margin-inline: auto; }

.center { text-align: center; }
.center .lede, .center .rule { margin-inline: auto; }

.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;
}

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .8rem 1.9rem;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: #2C3125; border-color: #2C3125; }
.btn:active { transform: translateY(1px); }

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

.btn--block { width: 100%; }

.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* -------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 234, .92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.brand em { font-style: italic; color: var(--brass); }

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

.nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding-block: .5rem 1rem;
}
.nav[data-open="true"] { display: block; }

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

.nav__link {
  display: block;
  padding: .8rem .25rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s var(--ease);
}
.nav__list li:last-child .nav__link { border-bottom: 0; }
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current] { color: var(--brass); }

@media (min-width: 56rem) {
  .site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .site-header__inner { min-height: 4.25rem; }
  .nav-toggle { display: none; }
  .nav {
    display: block !important;
    border-top: 0;
    padding: 0;
  }
  .nav__list { flex-direction: row; align-items: center; gap: 2rem; }
  .nav__link {
    padding: .35rem 0;
    border-bottom: 0;
    position: relative;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav__link:hover::after,
  .nav__link[aria-current]::after { transform: scaleX(1); }
}

/* ------------------------------------------------------------- chapters -- */

/* The header is sticky, so anchored sections need to stop below it. */
.chapter { scroll-margin-top: 3.5rem; }
/* Larger than the hero's offset, so the browser clamps to the true top and
   "Home" returns to the very start of the page rather than under the header. */
#home { scroll-margin-top: 8rem; }

@media (min-width: 56rem) {
  .chapter { scroll-margin-top: 4.2rem; }
}

/* ---------------------------------------------------------------- hero -- */

.hero { position: relative; }

.hero__media {
  position: relative;
  min-height: 78svh;
  min-height: 78vh;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 34, 24, .34) 0%,
    rgba(30, 34, 24, .10) 26%,
    rgba(30, 34, 24, .40) 58%,
    rgba(30, 34, 24, .74) 82%,
    rgba(30, 34, 24, .86) 100%
  );
}

.hero__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding-bottom: 2.75rem;
  color: #FFFDF6;
  text-align: center;
}

.hero__kicker {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1rem;
  color: rgba(255, 253, 246, .82);
}

.hero__names {
  font-size: clamp(2.6rem, 12.5vw, 4.75rem);
  line-height: 1.02;
  margin: 0;
  text-shadow: 0 2px 24px rgba(20, 23, 16, .35);
}
.hero__names .amp {
  font-style: italic;
  display: block;
  font-size: .46em;
  margin-block: .18em;
  opacity: .9;
}

.hero__meta {
  display: none;
  margin: 1.5rem 0 0;
  font-size: .875rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(255, 253, 246, .92);
}
.hero__meta span { display: block; }
.hero__meta .dot { display: none; }

/* ------------------------------------------------------- details strip -- */

/* Sits between the hero photo and The Day's banner photo so the two images
   aren't stacked directly against each other on narrow screens. */
.details-strip {
  padding-block: 3.5rem;
  text-align: center;
  scroll-margin-top: 3.5rem;
}
.details-strip__date {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6.5vw, 2rem);
  line-height: 1.2;
  margin: 0;
}
.details-strip__venue {
  margin: 0;
  font-size: .8125rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 2;
  color: var(--muted);
}
.details-strip .rule { margin-block: 1.5rem; }

.hero__scroll {
  display: block;
  width: 1.5rem;
  height: 2.75rem;
  margin: 1.75rem auto 0;
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.25rem;
  margin: 0 auto;
  background: linear-gradient(rgba(255, 253, 246, .85), rgba(255, 253, 246, 0));
  animation: scroll-cue 2.4s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scroll-cue {
  0%   { transform: scaleY(.35); opacity: .35; }
  45%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(.35); opacity: .35; }
}

/* Desktop: split the hero so the portrait photo isn't cropped to a band. */
@media (min-width: 56rem) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: calc(100svh - 3.75rem);
    min-height: calc(100vh - 3.75rem);
  }
  .hero__media { min-height: 100%; order: 2; }
  .hero__media::after { background: linear-gradient(to right, rgba(30,34,24,.14), rgba(30,34,24,0) 45%); }
  .hero__body {
    position: static;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem clamp(2.5rem, 5vw, 4.5rem);
    color: var(--ink);
    text-align: left;
    background: var(--cream);
  }
  .hero__kicker { color: var(--muted); }
  .hero__names {
    font-size: clamp(3.25rem, 5.6vw, 5.25rem);
    text-shadow: none;
  }
  .hero__names .amp { color: var(--brass); }
  .hero__meta { display: block; color: var(--ink-soft); }
  .hero__scroll { display: none; }
  .details-strip { display: none; }
}

/* -------------------------------------------------------- page banner -- */

.banner {
  position: relative;
  background: var(--ink);
}
.banner__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 24rem;
}
.banner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,34,24,.35), rgba(30,34,24,.62));
}
.banner__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFDF6;
  padding: 2rem var(--pad-x);
}
.banner__title {
  font-size: clamp(2.1rem, 8.5vw, 3.5rem);
  margin: 0;
  text-shadow: 0 2px 20px rgba(20,23,16,.3);
}
.banner__sub {
  margin: .85rem 0 0;
  font-size: .8125rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,253,246,.85);
}

/* Per-photo crop points. These are the mobile values, where the 3:2 banner
   shows a generous slice of each image. */
.banner--theday .banner__media img { object-position: center 28%; }
.banner--travel .banner__media img { object-position: center 85%; }
.banner--rsvp   .banner__media img { object-position: center 21%; }
.banner--faq    .banner__media img { object-position: center 20%; }

@media (min-width: 48rem) {
  /* A 21:8 letterbox kept only ~29% of a portrait photo's height, which cut
     faces off. A 2:1 band shows roughly half again as much. */
  .banner__media { aspect-ratio: 2 / 1; max-height: 42rem; }

  /* Re-aimed for the deeper band: each value is tuned so both faces sit inside
     the crop rather than against its edges. */
  .banner--theday .banner__media img { object-position: center 30%; }
  .banner--travel .banner__media img { object-position: center 88%; }
  .banner--rsvp   .banner__media img { object-position: center 19%; }
  .banner--faq    .banner__media img { object-position: center 48%; }
}

/* ------------------------------------------------------------ intro/cards */

.intro { max-width: 42rem; }
.intro h2,
.intro .section-title,
.form-success .section-title {
  font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  margin-bottom: 1.1rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 40rem) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.card h3 {
  font-size: 1.3125rem;
  margin-bottom: .55rem;
}
.card p { color: var(--ink-soft); font-size: 1rem; }
.card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brass-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.card__link:hover { border-color: var(--brass); }

/* ------------------------------------------------------------ timeline -- */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.tl-item {
  position: relative;
  padding: 0 0 2.75rem 2.25rem;
  border-left: 1px solid var(--line);
}
.tl-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -4.5px;
  top: .5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--brass);
}

.tl-time {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: .3rem;
}
.tl-title {
  font-size: clamp(1.45rem, 5.5vw, 1.875rem);
  margin-bottom: .1rem;
}
.tl-where {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .7rem;
}
.tl-text { color: var(--ink-soft); max-width: 34rem; }

@media (min-width: 48rem) {
  .tl-item {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 2rem;
    padding-left: 2.75rem;
  }
  .tl-time { padding-top: .35rem; margin-bottom: 0; text-align: right; }
  .tl-body { grid-column: 2; }
}

/* ----------------------------------------------------------- accordion -- */

.faq-list { border-top: 1px solid var(--line-soft); }

.faq-item { border-bottom: 1px solid var(--line-soft); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.35;
  color: var(--ink);
}
.faq-q:hover { color: var(--brass-deep); }

.faq-icon {
  flex: none;
  position: relative;
  width: 1rem;
  height: 1rem;
  margin-top: .35rem;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--brass);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-icon::before { inset: 50% 0 auto 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after  { inset: 0 50% 0 auto; width: 1px; transform: translateX(50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translateX(50%) rotate(90deg); }

.faq-a {
  overflow: hidden;
  transition: height .32s var(--ease);
}
/* Collapsed state is set by JS (inline height), so without JS every answer
   stays open and readable rather than clipped to nothing. */
.faq-a__inner {
  padding: 0 0 1.5rem;
  max-width: 42rem;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- form -- */

.form { margin-top: 2.5rem; }

.field { margin-bottom: 1.4rem; }

.field > label,
.fieldset__legend {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .55rem;
}
.field .req { color: var(--brass); }

.field .hint {
  display: block;
  margin-top: .45rem;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.input,
.textarea,
.select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  min-height: 3rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.textarea { min-height: 7.5rem; resize: vertical; line-height: 1.6; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238A907A' stroke-width='1.4' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: .7rem;
  padding-right: 2.6rem;
}

.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(160, 122, 56, .14);
}

.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: #A8503F; }

.error-msg {
  display: none;
  margin-top: .4rem;
  font-size: .85rem;
  color: #A8503F;
}
.field[data-invalid="true"] .error-msg { display: block; }

/* radio / checkbox pills */
.choices { display: grid; gap: .625rem; }
@media (min-width: 30rem) { .choices--row { grid-auto-flow: column; grid-auto-columns: 1fr; } }

.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.choice__mark {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  transition: border-color .2s var(--ease);
}
.choice__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--brass);
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.choice:hover { border-color: var(--muted); }
.choice input:checked ~ .choice__mark { border-color: var(--brass); }
.choice input:checked ~ .choice__mark::after { transform: scale(1); }
.choice:has(input:checked) { border-color: var(--brass); background: #FBF7EA; }
.choice input:focus-visible ~ .choice__mark {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.fieldset { border: 0; margin: 0 0 1.4rem; padding: 0; }

/* conditional block revealed when attending */
.reveal[hidden] { display: none; }

.form__actions { margin-top: 2rem; }

.form__note {
  margin-top: 1.25rem;
  font-size: .9rem;
  color: var(--muted);
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  font-size: .95rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.form-status[hidden] { display: none; }
.form-status--error { border-color: #D8B4AA; background: #FBF0ED; color: #7E3C2E; }

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}
.form-success .section-title { margin-bottom: .75rem; }
.form-success p { color: var(--ink-soft); max-width: 30rem; margin-inline: auto; }
.form-success[hidden] { display: none; }

/* --------------------------------------------------------- detail rows -- */

.details {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.details > li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.details dt, .details__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.details dd, .details__value { margin: 0; color: var(--ink); }

@media (min-width: 40rem) {
  .details > li { display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem; align-items: baseline; }
  .details dt, .details__label { margin-bottom: 0; }
}

/* ------------------------------------------------------------- callout -- */

.callout {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
}
.callout h2 { font-size: clamp(1.6rem, 5.5vw, 2.25rem); margin-bottom: .75rem; }
.callout p { color: var(--ink-soft); max-width: 34rem; margin-inline: auto; }
.callout .btn { margin-top: 1.5rem; }

@media (min-width: 48rem) { .callout { padding: 3.25rem 2.5rem; } }

/* -------------------------------------------------------------- footer -- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding-block: 3rem 2.5rem;
  text-align: center;
}
.site-footer__names {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .35rem;
}
.site-footer__names em { font-style: italic; color: var(--brass); }
.site-footer__meta {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.site-footer__mail {
  font-size: .95rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.site-footer__mail:hover { border-color: var(--brass); }

/* --------------------------------------------------------- entrance fx -- */

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

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- print */

@media print {
  .site-header, .hero__scroll, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
