:root {
  --green-950: #05221a;
  --green-900: #0b4433;
  --green-800: #0f5240;
  --green-700: #176149;
  --amber: #f58220;
  --amber-ink: #96530b;
  --paper: #f6f4ee;
  --ivory: #f2efe4;
  --ink: #132119;
  --muted: #5f6f66;
  --line: #e0dbcd;
  --line-dark: rgba(242, 239, 228, 0.18);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--amber);
  color: var(--green-950);
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 5px;
}

[hidden] {
  display: none !important;
}

/* ---------- nav ---------- */

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}

html.js .nav {
  position: fixed;
}

.nav.is-scrolled {
  padding-block: 12px;
  background: rgba(5, 34, 26, 0.94);
  border-color: var(--line-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  text-decoration: none;
}

.brand-mark {
  height: 34px;
  width: auto;
  display: block;
}

.wordmark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--ivory);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3.5vw, 44px);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border-bottom: 1px solid transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: var(--amber);
  border-color: var(--amber);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 780px;
  min-height: max(740px, 100svh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 152px var(--gutter) 136px;
  color: var(--ivory);
  background: radial-gradient(ellipse at 68% 32%, var(--green-800), var(--green-900) 44%, var(--green-950) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(80vw, 960px);
  aspect-ratio: 1;
  top: 50%;
  left: 66%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: url("/assets/logo-mark-light.png") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23grain)' opacity='.5' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
}

.hero-eyebrow {
  margin: 0 0 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bdcec2;
}

.tagline {
  max-width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 7.8vw, 5.7rem);
  line-height: 1.17;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.tagline span {
  display: block;
}

.dash {
  width: 40px;
  height: 2px;
  flex-shrink: 0;
  margin-top: 36px;
  background: var(--amber);
}

.hero-sub {
  margin: 25px 0 0;
  max-width: 44ch;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.8;
  color: #c6d1c7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  margin-top: 25px;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(242, 239, 228, 0.45);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s;
}

.hero-cta:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.hero-caption {
  position: absolute;
  inset: auto var(--gutter) 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aabfb2;
}

/* ---------- sections ---------- */

.section {
  max-width: 1296px;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 128px) var(--gutter);
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-700);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

/* ---------- products ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.products > li {
  min-width: 0;
}

.product {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--green-800);
  border-radius: 4px;
  background: var(--green-900);
  color: var(--ivory);
  text-decoration: none;
}

.product > * {
  min-width: 0;
}

.product-logo-zone {
  display: grid;
  place-items: center;
  min-height: 256px;
  padding: 40px 32px;
}

.product-logo {
  display: block;
  width: min(100%, 250px);
  height: auto;
  transition: transform 350ms var(--ease);
}

.product-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid var(--line-dark);
  background: var(--green-900);
}

.product-name {
  min-width: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 2.1vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* Visible content is the default for touch, small screens and reduced motion. */
.product-veil {
  display: block;
  padding: 0 24px 28px;
  background: var(--green-900);
  opacity: 1;
  transform: none;
  transition: transform 280ms var(--ease), opacity 220ms var(--ease);
}

.product-desc {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: #c6d1c7;
  max-width: 48ch;
}

.product-arrow {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--amber);
  transition: transform 200ms var(--ease);
}

a.product:focus-visible {
  outline: 3px solid var(--amber-ink);
  outline-offset: 5px;
}

.product-soon .product-heading {
  flex-wrap: wrap;
}

.product .badge {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: #c6d1c7;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) and (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  .product {
    grid-template-rows: minmax(340px, 1fr) auto;
  }

  .product-logo-zone {
    grid-area: 1 / 1;
    align-items: start;
    padding: 40px 32px 140px;
  }

  .product-heading {
    grid-area: 2 / 1;
  }

  .product-veil {
    grid-area: 1 / 1;
    align-self: end;
    z-index: 1;
    padding: 28px 24px 24px;
    background: linear-gradient(180deg, rgba(5, 34, 26, 0.94), var(--green-950));
    opacity: 0;
    transform: translateY(100%);
  }

  .product:hover .product-logo,
  .product:focus-visible .product-logo {
    transform: translate(4px, -8px) scale(1.08);
  }

  .product:hover .product-veil,
  .product:focus-visible .product-veil {
    opacity: 1;
    transform: translateY(0);
  }

  a.product:hover .product-arrow,
  a.product:focus-visible .product-arrow {
    transform: translate(3px, -3px);
  }
}

.suite-note-tile {
  display: flex;
  align-items: flex-end;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ivory);
}

.suite-note {
  margin: 0;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.suite-note a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--green-700);
}

.arrow {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  transition: transform 0.25s var(--ease);
}

a:hover .arrow,
a:focus-visible .arrow {
  transform: translate(3px, -3px);
}

/* ---------- about ---------- */

.about {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ivory), var(--paper) 72%);
}

.about-grid,
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 32px clamp(40px, 6vw, 88px);
}

.about-heading {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.about-body p {
  margin: 0 0 1.3em;
  font-size: 15px;
  line-height: 1.9;
  color: #3d4f46;
  max-width: 58ch;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-quote {
  max-width: 42ch;
  margin: clamp(56px, 7vw, 88px) auto 0;
  padding: 8px 0 8px clamp(24px, 4vw, 48px);
  border-left: 2px solid var(--amber);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--green-900);
}

.founder {
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.founder .eyebrow {
  margin-bottom: 20px;
}

.founder-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.founder-cred {
  margin: 12px 0 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-700);
}

.founder-bio {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.9;
  color: #3d4f46;
}

/* ---------- contact + footer ---------- */

.contact {
  background: radial-gradient(ellipse at 0 0, var(--green-900), var(--green-950) 65%);
  color: var(--ivory);
  padding: clamp(80px, 9vw, 128px) var(--gutter) 32px;
}

.contact-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.eyebrow-dark {
  color: var(--amber);
}

.contact-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 300;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(242, 239, 228, 0.35);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.4vw, 2.8rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ivory);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.contact-email:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 100px);
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--line-dark);
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(242, 239, 228, 0.3);
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.cta:hover {
  border-color: rgba(242, 239, 228, 0.65);
  background: rgba(242, 239, 228, 0.06);
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 22px;
  margin: 40px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #c6d1c7;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  transition: color 0.25s;
}

.contact-details a:hover {
  color: var(--amber);
}

address {
  font-style: normal;
}

.contact-form {
  min-width: 0;
  margin: 0;
  color-scheme: dark;
}

.contact-form h3 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
}

.contact-form .hp {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.field {
  min-width: 0;
  margin-bottom: 26px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #c6d1c7;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 228, 0.4);
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.25s, background 0.25s;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field select {
  cursor: pointer;
}

.field select option {
  background: var(--green-950);
  color: var(--ivory);
}

.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--amber);
  background: rgba(242, 239, 228, 0.035);
}

.field input:not([type="checkbox"]):focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline-offset: 4px;
}

.field-chips {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.field-chips legend {
  margin-bottom: 10px;
  padding: 0;
  font-size: 12px;
  color: #c6d1c7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  position: relative;
  display: inline-block;
  margin: 0;
}

.chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 13px;
  color: #c6d1c7;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.chip:hover span {
  border-color: rgba(242, 239, 228, 0.45);
}

.chip input:checked ~ span {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245, 130, 32, 0.08);
}

.chip input:focus-visible ~ span {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.chip-error {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #ffd9b3;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border: 1px solid var(--amber);
  border-radius: 2px;
  background: var(--amber);
  color: var(--green-950);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.form-submit:hover {
  background: #ff9a43;
  border-color: #ff9a43;
  transform: translateY(-2px);
}

.form-note {
  margin: 20px 0 0;
  max-width: 48ch;
  font-size: 12px;
  line-height: 1.8;
  color: #aabfb2;
}

.form-note a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ivory);
}

.form-sent,
.form-error {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-left: 2px solid var(--amber);
  background: rgba(242, 239, 228, 0.06);
  font-size: 14px;
  line-height: 1.8;
}

.form-error {
  color: #ffd9b3;
}

.form-error a {
  color: var(--amber);
}

.contact-wordmark {
  margin: clamp(80px, 10vw, 144px) 0 0;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.2rem, 5.2vw, 4.4rem);
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  font-size: 12px;
  color: #b7c8bd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 22px;
}

.footer-links a,
.footer-soon {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-links a {
  min-width: 44px;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-soon {
  color: #93ac9d;
}

/* ---------- motion ---------- */

html.js .hero-eyebrow,
html.js .tagline span,
html.js .dash,
html.js .hero-sub,
html.js .hero-cta {
  animation: rise 0.9s var(--ease) both;
}

html.js .tagline span:nth-child(1) { animation-delay: 0.1s; }
html.js .tagline span:nth-child(2) { animation-delay: 0.2s; }
html.js .tagline span:nth-child(3) { animation-delay: 0.3s; }
html.js .dash { animation-delay: 0.4s; }
html.js .hero-sub { animation-delay: 0.48s; }
html.js .hero-cta { animation-delay: 0.56s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.js .reveal {
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

html.js .reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}

html.js .reveal:focus-within {
  opacity: 1;
  transform: none;
}

/* ---------- legal pages ---------- */

.page-head {
  background: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 64px);
}

.page-head-home {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  opacity: 0.72;
}

.page-head-home:hover {
  opacity: 1;
}

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 90px) 24px 110px;
}

.legal h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
}

.legal-date {
  margin: 10px 0 44px;
  font-size: 13px;
  color: var(--muted);
}

.legal h2 {
  margin: 44px 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--green-900);
}

.legal p,
.legal li {
  font-size: 15.5px;
  line-height: 1.8;
  color: #3d4f46;
}

.legal ul {
  margin: 10px 0;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--green-700);
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .products {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .hero {
    min-height: 720px;
    min-height: max(680px, 100svh);
    padding-block: 148px 124px;
  }

  .hero::before {
    width: 120vw;
    left: 72%;
  }

  .about-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-heading {
    font-size: clamp(1.9rem, 5.8vw, 2.65rem);
  }

  .contact-grid {
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
  }

  .contact-form {
    padding-top: 36px;
    border-top: 1px solid var(--line-dark);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  html {
    scroll-padding-top: 124px;
  }

  .nav {
    flex-direction: column;
    gap: 0;
    padding-block: 14px 8px;
  }

  .nav.is-scrolled {
    padding-block: 6px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 28px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .hero-eyebrow {
    max-width: 28ch;
    margin-bottom: 30px;
    font-size: 9px;
    line-height: 1.9;
  }

  .tagline {
    font-size: clamp(1.75rem, 9.5vw, 3.25rem);
    line-height: 1.3;
    letter-spacing: 0.065em;
  }

  .hero-caption {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-caption span:last-child {
    text-align: right;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .contact-details,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .contact-details {
    gap: 16px;
  }

  .form-submit {
    width: 100%;
  }

  .footer-links {
    gap: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
