/* ==========================================================================
   Sunhope International — Editorial Luxury / Soft Structuralism
   Shared stylesheet. Vanilla CSS, no build step.

   1.  Tokens
   2.  Reset & base
   3.  Typography
   4.  Layout primitives
   5.  Decoration
   6.  Buttons & links
   7.  Announcement bar, header, navigation
   8.  Full-screen mobile menu
   9.  Heroes
   10. Editorial split
   11. Figures
   12. Content modules
   13. Forms
   14. Legal & error pages
   15. Footer
   16. Reveal motion
   17. Print
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand palette */
  --ivory: #f5f2ea;
  --ivory-2: #efebe0;
  --ivory-3: #e7e2d4;
  --evergreen: #0b3d2e;
  --evergreen-2: #0f4b39;
  --green: #008c72;
  --orange: #f29a2e;
  --champagne: #c7a56a;
  --mist: #dde9e2;
  --ink: #17211c;
  --muted: #59645e;

  /* Derived */
  --rule: rgba(23, 33, 28, 0.14);
  --rule-soft: rgba(23, 33, 28, 0.08);
  --rule-strong: rgba(23, 33, 28, 0.26);
  --champagne-rule: rgba(199, 165, 106, 0.55);
  --on-dark: #ece8dc;
  --on-dark-muted: rgba(221, 233, 226, 0.74);
  --rule-dark: rgba(221, 233, 226, 0.22);

  /* Type */
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype",
    Palatino, "Book Antiqua", Georgia, serif;
  --font-ui: "Manrope", "Avenir Next", Avenir, "Segoe UI", "Noto Sans",
    sans-serif;

  --fs-eyebrow: 0.72rem;
  --fs-micro: 0.78rem;
  --fs-small: 0.875rem;
  --fs-body: 1.0313rem;
  --fs-lede: clamp(1.075rem, 0.99rem + 0.36vw, 1.3rem);
  --fs-d3: clamp(1.35rem, 1.16rem + 0.78vw, 1.9rem);
  --fs-d2: clamp(1.95rem, 1.5rem + 1.85vw, 3.15rem);
  --fs-d1: clamp(2.45rem, 1.86rem + 2.42vw, 4rem);
  --fs-numeral: clamp(1.6rem, 1.3rem + 1.2vw, 2.3rem);

  /* Rhythm */
  --maxw: 1320px;
  --maxw-narrow: 760px;
  --gutter: clamp(1.375rem, 4vw, 4.5rem);
  --sbw: 0px;
  --edge: max(var(--gutter), calc((100vw - var(--sbw) - var(--maxw)) / 2));
  --section-y: clamp(4.5rem, 9vw, 9.5rem);

  /* Chrome */
  --nav-h: 4rem;
  --announce-h: 2.5rem;
  --radius: 2px;
  --shadow-soft: 0 1px 2px rgba(11, 61, 46, 0.05),
    0 14px 34px -20px rgba(11, 61, 46, 0.22);
  --shadow-lift: 0 28px 64px -36px rgba(11, 61, 46, 0.45),
    0 2px 6px rgba(11, 61, 46, 0.06);
  --ease: cubic-bezier(0.22, 0.65, 0.26, 1);
}

@media (min-width: 64em) {
  :root {
    --nav-h: 4.875rem;
    --announce-h: 2.375rem;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
}

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100%;
  position: relative;
}

/* Fine paper grain for material depth. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* `.field` sets display:grid, which would otherwise beat the hidden
   attribute. Keep this above the component styles. */
[hidden] {
  display: none !important;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--mist);
  color: var(--evergreen);
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--evergreen);
  color: var(--on-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 220ms var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
  color: var(--ink);
}

.display-1 {
  font-size: var(--fs-d1);
  line-height: 1.03;
  letter-spacing: -0.026em;
}

.display-2 {
  font-size: var(--fs-d2);
  line-height: 1.07;
  letter-spacing: -0.022em;
}

.display-3 {
  font-size: var(--fs-d3);
  line-height: 1.16;
  letter-spacing: -0.014em;
}

.display-1 em,
.display-2 em,
.display-3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--evergreen);
}

p {
  text-wrap: pretty;
}

.lede {
  font-size: var(--fs-lede);
  line-height: 1.58;
  color: var(--muted);
  letter-spacing: 0.001em;
  max-width: 46ch;
}

.body {
  color: var(--muted);
  max-width: 62ch;
}

.body + .body {
  margin-top: 1.15em;
}

.body-tight {
  color: var(--muted);
  max-width: 54ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  background: var(--orange);
  transform: rotate(45deg);
}

.eyebrow--rule::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  max-width: 7rem;
}

.section-head {
  display: grid;
  gap: 1.35rem;
  max-width: 60ch;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-head--center .lede,
.section-head--center .body {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: calc(var(--maxw-narrow) + var(--gutter) * 2);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section--flush-top {
  padding-block-start: 0;
}

.section--paper {
  background: var(--ivory-2);
}

.section--mist {
  background: var(--mist);
}

.section--dark {
  background: var(--evergreen);
  color: var(--on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--on-dark);
}

.section--dark .eyebrow,
.section--dark .lede,
.section--dark .body,
.section--dark .body-tight {
  color: var(--on-dark-muted);
}

.section--dark .display-1 em,
.section--dark .display-2 em,
.section--dark .display-3 em {
  color: var(--mist);
}

.section--hairline-top {
  border-top: 1px solid var(--rule);
}

.stack-sm > * + * {
  margin-top: 1rem;
}

.stack > * + * {
  margin-top: 1.6rem;
}

.stack-lg > * + * {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

/* --------------------------------------------------------------------------
   5. Decoration
   -------------------------------------------------------------------------- */

.motif {
  display: block;
  color: var(--champagne);
  opacity: 0.85;
}

.motif--arc {
  position: absolute;
  pointer-events: none;
  color: var(--champagne);
  opacity: 0.34;
}

.divider {
  height: 1px;
  border: 0;
  background: var(--rule);
}

.divider--champagne {
  background: var(--champagne-rule);
}

.divider-motif {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--champagne);
}

.divider-motif::before,
.divider-motif::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--champagne-rule);
}

.section--clip {
  overflow: hidden;
}

.section__motif {
  position: absolute;
  pointer-events: none;
  color: var(--champagne);
  opacity: 0.18;
}

.section__motif--br {
  right: calc(-6vw - 1rem);
  bottom: -3.5rem;
  width: min(21rem, 46vw);
  height: auto;
}

.section__motif--tl {
  left: calc(-7vw - 1rem);
  top: -3rem;
  width: min(19rem, 44vw);
  height: auto;
}

.hero__arc {
  position: absolute;
  top: -8rem;
  left: -11rem;
  width: min(27rem, 66vw);
  height: auto;
  opacity: 0.3;
  z-index: -1;
}

/* --------------------------------------------------------------------------
   6. Buttons & links
   -------------------------------------------------------------------------- */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
}

/* Stacked buttons of unequal width read as untidy on a narrow screen. */
@media (max-width: 30em) {
  .btn-row .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  --btn-bg: var(--evergreen);
  --btn-fg: var(--ivory);
  --btn-bd: var(--evergreen);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 260ms var(--ease), color 260ms var(--ease),
    border-color 260ms var(--ease), transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.btn svg {
  flex: none;
  transition: transform 300ms var(--ease);
}

.btn:hover {
  --btn-bg: var(--green);
  --btn-bd: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--rule-strong);
}

.btn--ghost:hover {
  --btn-bg: transparent;
  --btn-fg: var(--evergreen);
  --btn-bd: var(--evergreen);
}

.btn--light {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  --btn-bd: var(--rule-dark);
}

.btn--light:hover {
  --btn-bg: var(--mist);
  --btn-fg: var(--evergreen);
  --btn-bd: var(--mist);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--evergreen);
  padding-bottom: 0.35rem;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size 320ms var(--ease), color 260ms var(--ease);
}

.arrow-link svg {
  flex: none;
  transition: transform 300ms var(--ease);
}

.arrow-link:hover {
  color: var(--green);
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.section--dark .arrow-link {
  color: var(--mist);
}

.section--dark .arrow-link:hover {
  color: var(--orange);
}

.text-link {
  color: var(--evergreen);
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 220ms var(--ease), text-decoration-color 220ms var(--ease);
}

.text-link:hover {
  color: var(--green);
  text-decoration-color: var(--orange);
}

.section--dark .text-link {
  color: var(--mist);
  text-decoration-color: var(--champagne);
}

.section--dark .text-link:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.mail-link {
  font-family: var(--font-display);
  font-size: var(--fs-d3);
  letter-spacing: -0.012em;
  color: var(--evergreen);
  text-decoration: none;
  display: inline-block;
  background-image: linear-gradient(var(--champagne), var(--champagne));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 0.2em;
  transition: background-size 340ms var(--ease), color 240ms var(--ease);
  overflow-wrap: anywhere;
}

.mail-link:hover {
  color: var(--green);
  background-size: 100% 2px;
}

/* --------------------------------------------------------------------------
   7. Announcement bar, header, navigation
   -------------------------------------------------------------------------- */

.announce {
  background: var(--evergreen);
  color: var(--mist);
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 40;
}

.announce__text {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-block: 0.45rem;
  color: rgba(221, 233, 226, 0.88);
}

.announce__text b {
  font-weight: 600;
  color: var(--on-dark);
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
}

.header__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  transition: background-color 300ms var(--ease), box-shadow 300ms var(--ease),
    border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled .header__inner {
  background: rgba(245, 242, 234, 0.86);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--rule);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  text-decoration: none;
  padding-block: 0.35rem;
}

.brand__img {
  width: auto;
  height: 1.4rem;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2.1rem);
  list-style: none;
  padding: 0;
}

.nav__link {
  position: relative;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding-block: 0.4rem;
  transition: color 240ms var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.nav__link:hover {
  color: var(--evergreen);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] {
  color: var(--evergreen);
}

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: 0;
  padding: 0.65rem 0;
  cursor: pointer;
  color: var(--evergreen);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle__bars {
  display: grid;
  gap: 5px;
  width: 22px;
}

.nav-toggle__bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 300ms var(--ease), width 300ms var(--ease);
}

.nav-toggle__bars span:last-child {
  width: 14px;
  margin-left: auto;
}

.nav-toggle:hover .nav-toggle__bars span:last-child {
  width: 22px;
}

@media (min-width: 64em) {
  .nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .header {
    height: auto;
    padding-top: 0.75rem;
  }

  .header__inner {
    padding-inline: 1.75rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
  }

  .header.is-scrolled .header__inner {
    border-color: var(--champagne-rule);
  }

  .brand__img {
    height: 1.55rem;
  }

  .nav__cta {
    display: inline-flex;
    padding: 0.7rem 1.25rem;
    font-size: 0.72rem;
  }
}

@media (min-width: 78em) {
  .header__inner {
    padding-inline: 2.25rem;
  }
}

/* --------------------------------------------------------------------------
   8. Full-screen mobile menu
   -------------------------------------------------------------------------- */

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--evergreen);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 380ms var(--ease), visibility 0s linear 380ms;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 380ms var(--ease), visibility 0s linear 0s;
}

.menu__bar {
  height: var(--nav-h);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid var(--rule-dark);
}

.menu__close {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: 0;
  padding: 0.65rem 0;
  cursor: pointer;
  color: var(--mist);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu__close svg {
  transition: transform 320ms var(--ease);
}

.menu__close:hover svg {
  transform: rotate(90deg);
}

.menu__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 6vw, 3.5rem);
  padding-block: clamp(2.5rem, 8vw, 4.5rem);
}

.menu__list {
  list-style: none;
  padding: 0;
  display: grid;
}

.menu__item {
  border-bottom: 1px solid var(--rule-dark);
}

.menu__item:first-child {
  border-top: 1px solid var(--rule-dark);
}

.menu__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: clamp(0.85rem, 2.6vw, 1.15rem);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  text-decoration: none;
  transition: color 240ms var(--ease), padding-left 300ms var(--ease);
}

.menu__num {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--champagne);
  flex: none;
}

.menu__link:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.menu__link[aria-current="page"] {
  color: var(--mist);
}

.menu__link[aria-current="page"] .menu__num {
  color: var(--orange);
}

.menu__meta {
  display: grid;
  gap: 0.85rem;
}

.menu__meta p {
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.menu__meta a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--mist);
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-underline-offset: 0.22em;
}

.menu__meta a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

body.is-locked {
  overflow: hidden;
  padding-right: var(--sbw);
}

@media (min-width: 64em) {
  .menu {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   9. Heroes
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(2.75rem, 6vw, 4.25rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.hero__copy {
  display: grid;
  gap: clamp(1.35rem, 2.4vw, 1.9rem);
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero__copy .lede {
  max-width: 42ch;
}

.hero__media {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  margin-inline: calc(-1 * var(--gutter));
}

.hero__media img {
  width: 100%;
  height: clamp(17rem, 52vw, 26rem);
  object-fit: cover;
  object-position: 64% center;
}

.hero__note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: var(--fs-micro);
  line-height: 1.6;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Pinned to the first line so a wrapped note keeps the rule at the top. */
.hero__note::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  margin-top: 0.78em;
  background: var(--champagne);
  flex: none;
}

/* Home hero — asymmetric split */
@media (min-width: 64em) {
  .hero--split {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero--split .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    column-gap: clamp(2.5rem, 4.5vw, 5rem);
    align-items: center;
    min-height: calc(100svh - var(--nav-h) - var(--announce-h) - 0.75rem);
  }

  .hero--split .hero__copy {
    padding-block: clamp(2rem, 5vh, 4rem);
    max-width: 34rem;
  }

  .hero--split .hero__media {
    margin: 0;
    margin-right: calc(-1 * var(--edge));
    align-self: stretch;
    display: flex;
  }

  .hero--split .hero__media img {
    width: 100%;
    height: 100%;
    min-height: 26rem;
    object-position: 62% center;
  }
}

@media (min-width: 90em) {
  .hero--split .hero__media img {
    object-position: 58% center;
  }
}

/* Typographic hero */
.hero--type {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero--type .hero__copy {
  max-width: 52rem;
}

.hero--type .display-1 {
  max-width: 20ch;
}

.hero--type .lede {
  max-width: 52ch;
}

/* Overlap hero — copy panel sits over the photograph */
.hero--overlap {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: 0;
}

.hero--overlap .hero__media,
.hero--reverse .hero__media {
  margin-top: 0;
}

.hero--reverse .hero__copy {
  margin-top: clamp(2.25rem, 6vw, 3rem);
}

.hero--overlap .hero__media img {
  height: clamp(15rem, 46vw, 24rem);
  object-position: 72% center;
}

.hero--overlap .hero__panel {
  background: var(--ivory);
  padding: clamp(1.75rem, 5vw, 2.75rem) 0 0;
}

@media (min-width: 64em) {
  .hero--overlap .hero__stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    align-items: center;
  }

  /* Bleeds right only — the left edge is where the copy panel lands, so a
     sliver of photograph escaping there would read as a mistake. */
  .hero--overlap .hero__media {
    grid-column: 2;
    grid-row: 1;
    margin-inline: 0 calc(-1 * var(--edge));
  }

  .hero--overlap .hero__media img {
    height: clamp(30rem, 64vh, 41rem);
    object-position: 62% center;
  }

  .hero--overlap .hero__panel {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    padding: clamp(2.5rem, 3.6vw, 3.5rem) clamp(2.5rem, 3.6vw, 3.5rem)
      clamp(2.5rem, 3.6vw, 3.5rem) 0;
    margin-right: clamp(-6rem, -4vw, -2.5rem);
    box-shadow: 34px 0 60px -44px rgba(11, 61, 46, 0.55);
    border-top: 2px solid var(--evergreen);
  }
}

/* Photo-left hero */
@media (min-width: 64em) {
  .hero--reverse {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero--reverse .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    column-gap: clamp(2.5rem, 4.5vw, 4.5rem);
    align-items: center;
    min-height: calc(100svh - var(--nav-h) - var(--announce-h) - 0.75rem);
  }

  .hero--reverse .hero__media {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    margin-left: calc(-1 * var(--edge));
    align-self: stretch;
    display: flex;
  }

  .hero--reverse .hero__media img {
    width: 100%;
    height: 100%;
    min-height: 26rem;
    object-position: 38% center;
  }

  .hero--reverse .hero__copy {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    padding-block: clamp(2rem, 5vh, 4rem);
    max-width: 34rem;
  }
}

/* --------------------------------------------------------------------------
   10. Editorial split
   -------------------------------------------------------------------------- */

.editorial {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
}

.editorial__copy {
  display: grid;
  gap: 1.4rem;
  align-content: center;
}

@media (min-width: 64em) {
  .editorial {
    grid-template-columns: var(--col-a, 1fr) var(--col-b, 1fr);
    column-gap: clamp(3rem, 6vw, 6rem);
  }

  .editorial--wide-copy {
    --col-a: 1.12fr;
    --col-b: 0.88fr;
  }

  .editorial--wide-media {
    --col-a: 0.86fr;
    --col-b: 1.14fr;
  }

  .editorial--reverse .editorial__media {
    grid-column: 1;
    grid-row: 1;
  }

  .editorial--reverse .editorial__copy {
    grid-column: 2;
    grid-row: 1;
  }

  /* Reversing swaps which track the media sits in, so the width modifiers
     have to swap with it or they end up widening the wrong column. */
  .editorial--reverse.editorial--wide-media {
    --col-a: 1.14fr;
    --col-b: 0.86fr;
  }

  .editorial--reverse.editorial--wide-copy {
    --col-a: 0.88fr;
    --col-b: 1.12fr;
  }

  .editorial--bleed-right .editorial__media {
    margin-right: calc(-1 * var(--edge));
  }

  .editorial--bleed-left .editorial__media {
    margin-left: calc(-1 * var(--edge));
  }

  .editorial--top {
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   11. Figures
   -------------------------------------------------------------------------- */

.figure {
  position: relative;
  margin: 0;
}

.figure img {
  width: 100%;
  border-radius: var(--radius);
}

.figure--framed::before {
  content: "";
  position: absolute;
  inset: auto auto -14px -14px;
  width: 46%;
  height: 58%;
  border-left: 1px solid var(--champagne-rule);
  border-bottom: 1px solid var(--champagne-rule);
  pointer-events: none;
}

.figure__caption {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.15rem;
  font-size: var(--fs-micro);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 34ch;
}

.figure__caption::before {
  content: "";
  flex: none;
  width: 1.75rem;
  height: 1px;
  margin-top: 0.6em;
  background: var(--champagne);
}

.band {
  position: relative;
  overflow: hidden;
}

.band img {
  width: 100%;
  height: clamp(16rem, 52vw, 34rem);
  object-fit: cover;
  object-position: center 58%;
}

.band--craft img {
  object-position: center 52%;
}

.band__caption {
  padding-top: 1.15rem;
}

.band--ritual img {
  object-position: 66% center;
}

@media (min-width: 64em) {
  .band--ritual img {
    object-position: 60% center;
  }
}

/* --------------------------------------------------------------------------
   12. Content modules
   -------------------------------------------------------------------------- */

/* 12a. Ruled index (four dimensions, values, inquiry paths) */
.ruled-index {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  list-style: none;
  padding: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.ruled-index__item {
  border-top: 1px solid var(--rule-strong);
  padding-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.ruled-index__num {
  font-family: var(--font-display);
  font-size: var(--fs-numeral);
  line-height: 1;
  color: var(--champagne);
  letter-spacing: 0.01em;
}

.ruled-index__title {
  font-family: var(--font-display);
  font-size: var(--fs-d3);
  line-height: 1.14;
  color: var(--ink);
}

.ruled-index__text {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 34ch;
}

@media (min-width: 48em) {
  .ruled-index--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.75rem, 3.5vw, 3rem);
  }

  .ruled-index--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(1.75rem, 3.5vw, 3rem);
  }

  .ruled-index--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 4rem);
  }
}

@media (min-width: 68em) {
  .ruled-index--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Offset with margin, not transform — the reveal motion owns `transform`
     and would flatten the stagger the moment an item became visible. */
  .ruled-index--4 .ruled-index__item:nth-child(even) {
    margin-top: 2.5rem;
  }
}

.section--dark .ruled-index__item {
  border-top-color: var(--rule-dark);
}

.section--dark .ruled-index__title {
  color: var(--on-dark);
}

.section--dark .ruled-index__text {
  color: var(--on-dark-muted);
}

/* 12b. Brand index rows */
.brand-index {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--rule-strong);
}

.brand-index__row {
  display: grid;
  gap: 0.65rem 2rem;
  padding-block: clamp(1.6rem, 3.4vw, 2.4rem);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left 340ms var(--ease);
}

.brand-index__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  background: var(--orange);
  transition: width 420ms var(--ease);
}

.brand-index__row:hover {
  padding-left: 0.75rem;
}

.brand-index__row:hover::before {
  width: 100%;
}

.brand-index__name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 260ms var(--ease);
}

.brand-index__row:hover .brand-index__name {
  color: var(--green);
}

.brand-index__desc {
  color: var(--muted);
  max-width: 44ch;
}

.brand-index__go {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evergreen);
}

.brand-index__go svg {
  transition: transform 320ms var(--ease);
}

.brand-index__row:hover .brand-index__go svg {
  transform: translateX(5px);
}

@media (min-width: 60em) {
  .brand-index__row {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr) auto;
    align-items: center;
  }
}

/* 12c. Numbered process list */
.process {
  list-style: none;
  padding: 0;
  margin-top: clamp(2.25rem, 4.5vw, 3.5rem);
  border-top: 1px solid var(--rule-strong);
}

.process__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.4rem 1.25rem;
  padding-block: clamp(1.35rem, 3vw, 1.9rem);
  border-bottom: 1px solid var(--rule);
}

.process__num {
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--champagne);
  border-right: 1px solid var(--champagne-rule);
  padding-right: 1rem;
}

.process__title {
  font-family: var(--font-display);
  font-size: var(--fs-d3);
  line-height: 1.2;
}

.process__text {
  color: var(--muted);
  max-width: 58ch;
}

@media (min-width: 60em) {
  .process__item {
    grid-template-columns: 4.5rem minmax(0, 0.36fr) minmax(0, 0.64fr);
    align-items: baseline;
    gap: 1.5rem 2rem;
  }

  .process__num {
    grid-row: 1;
  }
}

/* 12d. Timeline */
.timeline {
  list-style: none;
  padding: 0;
  display: grid;
}

.timeline__item {
  position: relative;
  padding-left: 2.25rem;
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-left: 1px solid var(--champagne-rule);
}

.timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -4.5px;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--ivory);
  border: 1px solid var(--evergreen);
  transform: rotate(45deg);
}

.timeline__item:last-child::before {
  background: var(--orange);
  border-color: var(--orange);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: var(--fs-d3);
  line-height: 1.15;
  color: var(--evergreen);
  display: block;
}

.timeline__title {
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.timeline__text {
  color: var(--muted);
  margin-top: 0.6rem;
  max-width: 46ch;
}

.sticky-head {
  align-self: start;
}

@media (min-width: 64em) {
  .sticky-head {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
  }
}

/* 12e. Callout band */
.callout {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.callout__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1.7vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--evergreen);
  max-width: 30ch;
  text-wrap: balance;
}

/* 12f. Product / brand detail blocks */
.brand-detail {
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}

.brand-detail__label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.024em;
}

.brand-detail__descriptor {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-lede);
  color: var(--green);
  line-height: 1.4;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  list-style: none;
  padding: 0;
  margin-top: 0.35rem;
}

.tag-list li {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
}

.section--dark .tag-list li {
  color: var(--on-dark-muted);
  border-color: var(--rule-dark);
  background: rgba(255, 255, 255, 0.04);
}

/* 12g. Notice / small print */
.notice {
  border-left: 2px solid var(--champagne);
  padding: 0.25rem 0 0.25rem 1.35rem;
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.65;
  max-width: 72ch;
}

.notice strong {
  color: var(--ink);
  font-weight: 600;
}

/* 12h. Closing CTA band */
.cta-band {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  justify-items: center;
  text-align: center;
}

.cta-band .display-2 {
  max-width: 18ch;
}

.cta-band .body {
  max-width: 48ch;
}

.cta-band .divider-motif,
.callout .divider-motif {
  width: min(16rem, 70%);
  margin-bottom: 0.25rem;
}

.cta-band .eyebrow,
.section-head--center .eyebrow {
  justify-content: center;
}

/* 12i. Quote / statement */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.1vw, 2.7rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

/* --------------------------------------------------------------------------
   13. Forms
   -------------------------------------------------------------------------- */

.form {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field__label {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.field__optional {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.8;
}

.field__control {
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 220ms var(--ease), background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.field__control::placeholder {
  color: rgba(89, 100, 94, 0.65);
}

.field__control:hover {
  border-color: var(--muted);
}

.field__control:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 140, 114, 0.14);
}

.field__control:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

textarea.field__control {
  min-height: 9.5rem;
  resize: vertical;
  line-height: 1.6;
}

select.field__control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2359645e' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

.field__hint {
  font-size: var(--fs-micro);
  color: var(--muted);
}

.field__error {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #a4321c;
  display: none;
  align-items: center;
  gap: 0.4rem;
}

.field.has-error .field__error {
  display: flex;
}

.field.has-error .field__control {
  border-color: #a4321c;
  background: rgba(164, 50, 28, 0.04);
}

.field--check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.35rem 0.85rem;
}

.field--check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--green);
  cursor: pointer;
}

.field--check .field__checklabel {
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
}

.field--check .field__error {
  grid-column: 2;
}

.field--turnstile {
  gap: 0.6rem;
  justify-items: start;
}

.field--turnstile iframe {
  max-width: 100%;
}

.form__counter {
  font-variant-numeric: tabular-nums;
}

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

button[aria-busy="true"] {
  cursor: progress;
  opacity: 0.72;
}

.btn:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form__status {
  border-left: 2px solid var(--green);
  padding: 0.75rem 0 0.75rem 1.25rem;
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--evergreen);
  background: rgba(221, 233, 226, 0.5);
}

.form__status:empty {
  display: none;
}

.form__status--error {
  border-left-color: #a4321c;
  color: #7d2716;
  background: rgba(164, 50, 28, 0.06);
}

.form__note {
  font-size: var(--fs-small);
  color: var(--muted);
  max-width: 52ch;
}

.noscript-note {
  border-left: 2px solid var(--orange);
  padding: 0.75rem 0 0.75rem 1.25rem;
  font-size: var(--fs-small);
  color: var(--muted);
}

/* Submitting requires scripting — the Turnstile check runs in the browser, so
   a no-JS post could never pass verification. Hide the form rather than offer
   one that cannot succeed; the address beside it is the answer instead. */
html:not(.js) [data-contact-form] {
  display: none;
}

/* --------------------------------------------------------------------------
   14. Legal & error pages
   -------------------------------------------------------------------------- */

.legal {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.legal__body > * + * {
  margin-top: 1.35rem;
}

.legal__body p {
  color: var(--muted);
  max-width: 70ch;
}

.legal__body h2 {
  font-size: var(--fs-d3);
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

.legal__body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal__meta {
  font-size: var(--fs-micro);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.legal__aside {
  align-self: start;
  display: grid;
  gap: 0.9rem;
  border-top: 2px solid var(--evergreen);
  padding-top: 1.25rem;
}

.legal__aside h2 {
  font-size: var(--fs-eyebrow);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__aside ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.legal__aside a {
  font-size: var(--fs-small);
  text-decoration: none;
  color: var(--evergreen);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease), color 240ms var(--ease);
}

.legal__aside a:hover {
  color: var(--green);
  border-bottom-color: var(--orange);
}

@media (min-width: 60em) {
  .legal {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.28fr);
    column-gap: clamp(3rem, 6vw, 5.5rem);
  }

  .legal__aside {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
  }
}

.error-page {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  justify-items: center;
  text-align: center;
  padding-block: clamp(0.5rem, 3vh, 2.5rem);
}

/* Keeps "Return Home" above the fold on a short laptop screen. */
.error-page .display-1 {
  font-size: var(--fs-d2);
  max-width: 18ch;
}

.error-page .body {
  max-width: 44ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ivory-2);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.footer__top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.footer__brandcol {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  max-width: 34ch;
}

.footer__logo {
  width: auto;
  height: 1.6rem;
}

.footer__statement {
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.footer__cols {
  display: grid;
  gap: 2rem;
}

.footer__heading {
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer__list a {
  font-size: var(--fs-small);
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 240ms var(--ease), border-color 240ms var(--ease);
}

.footer__list a:hover {
  color: var(--green);
  border-bottom-color: var(--orange);
}

.footer__list a[aria-current="page"] {
  color: var(--evergreen);
  border-bottom-color: var(--champagne);
}

.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 1.25rem;
}

.footer__disclaimer {
  font-size: var(--fs-micro);
  line-height: 1.7;
  color: var(--muted);
  max-width: 92ch;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.5rem;
  font-size: var(--fs-micro);
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer__established {
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__established::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--champagne);
  flex: none;
}

@media (min-width: 40em) {
  .footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 64em) {
  .footer__top {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    column-gap: clamp(3rem, 6vw, 6rem);
  }

  .footer__bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 3rem;
  }
}

/* --------------------------------------------------------------------------
   16. Reveal motion
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js [data-reveal="fade"] {
  transform: none;
}

.js [data-reveal="right"] {
  transform: translate3d(-24px, 0, 0);
}

.js [data-reveal="left"] {
  transform: translate3d(24px, 0, 0);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  /* Must out-specify `[data-reveal].is-visible`, otherwise the identity
     translate survives and leaves a pointless compositing layer behind. */
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

/* --------------------------------------------------------------------------
   17. Print
   -------------------------------------------------------------------------- */

@media print {
  .announce,
  .header,
  .menu,
  .btn,
  .arrow-link,
  body::after {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  a[href^="http"]::after,
  a[href^="mailto"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
