:root {
  color-scheme: dark;
  --black: #050403;
  --ink: #17110a;
  --charcoal: #11100e;
  --ivory: #f3eadb;
  --paper: #eee6d6;
  --cream: #eee6d6;
  --cream-soft: #f6efe2;
  --muted: #bfb3a0;
  --gold: #c9a24a;
  --deep-gold: #9c7628;
  --gold-bright: #d7b15b;
  --olive: #62715a;
  --line: rgba(201, 162, 74, 0.3);
  --white: #fff8ec;
  --font-display: "Cormorant Garamond", "Libre Caslon Display", "EB Garamond", Georgia, serif;
  --font-body: "Avenir Next", "Neue Haas Grotesk Text Pro", Inter, "Helvetica Neue", Arial, sans-serif;
  --serif: var(--font-display);
  --sans: var(--font-body);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(104px, 150px) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 70px);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.86), rgba(5, 4, 3, 0.42) 70%, rgba(5, 4, 3, 0));
  transition: background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 4, 3, 0.92);
  border-bottom: 1px solid rgba(216, 177, 91, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  width: clamp(90px, 11vw, 132px);
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.7rem);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.header-cta,
.button,
.age-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button-outline {
  color: var(--ivory);
  background: rgba(5, 4, 3, 0.14);
}

.button-solid,
.age-panel button {
  color: #120d07;
  background: linear-gradient(135deg, #e0bf69, #a36f25);
  border-color: #d4ad58;
}

.header-cta:hover,
.button:hover,
.age-panel button:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 177, 91, 0.4);
  background: rgba(5, 4, 3, 0.48);
  color: var(--ivory);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 82px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #080705;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.43;
  filter: saturate(0.72) brightness(0.52);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.98) 0%, rgba(5, 4, 3, 0.78) 42%, rgba(5, 4, 3, 0.2) 70%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.52), rgba(5, 4, 3, 0.08) 42%, rgba(5, 4, 3, 0.86));
}

.hero::after {
  background: radial-gradient(circle at 72% 35%, rgba(216, 177, 91, 0.18), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 43vw);
  align-items: center;
  gap: clamp(1rem, 4vw, 5rem);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 110px) 0 clamp(30px, 5vw, 70px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow,
.section-kicker,
.small-label {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.chapter {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.025em;
}

h1 {
  margin-bottom: 0.72rem;
  color: var(--gold);
  font-size: clamp(3.35rem, 6.8vw, 6.95rem);
  line-height: 0.94;
  letter-spacing: 0.018em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1.05rem;
  font-size: clamp(2.45rem, 5vw, 4.95rem);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.012em;
}

.hero-lede {
  max-width: 570px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.gold-rule {
  width: 94px;
  height: 2px;
  margin: 1.4rem 0;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.script-line,
.italic {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
}

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

.hero-product {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  width: min(510px, 100%);
  max-height: calc(100vh - 130px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-product img {
  max-height: min(780px, calc(100vh - 150px));
  width: auto;
  border: 1px solid rgba(216, 177, 91, 0.18);
  background: #080705;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.54);
}

.age-panel select,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  min-height: 42px;
  border: 1px solid rgba(201, 162, 74, 0.34);
  border-radius: 0;
  background: rgba(7, 7, 5, 0.46);
  color: var(--ivory);
  padding: 0.72rem 0.78rem;
  font-size: 0.88rem;
  font-weight: 400;
  outline: none;
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
}

.age-modal.is-open {
  display: flex;
}

.age-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.72)),
    rgba(5, 4, 3, 0.78);
  backdrop-filter: blur(10px);
}

.age-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(216, 177, 91, 0.36);
  background:
    linear-gradient(135deg, rgba(16, 12, 7, 0.96), rgba(4, 3, 2, 0.96)),
    #050403;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
  text-align: center;
  text-transform: uppercase;
}

.age-logo {
  width: clamp(112px, 15vw, 170px);
  margin: 0 auto 1.4rem;
}

.age-panel h2 {
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: clamp(1.65rem, 4vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: 0.035em;
}

.age-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) minmax(150px, 0.95fr);
  gap: 0.85rem;
  align-items: stretch;
}

.age-panel select {
  width: 100%;
  min-height: 56px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.age-panel button {
  min-height: 56px;
  width: 100%;
  font-size: 0.82rem;
}

.age-message {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}

.age-message.is-error {
  color: #e0bf69;
}

.section-light {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 45%),
    var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  border-left: 1px solid rgba(74, 57, 33, 0.2);
  border-right: 1px solid rgba(74, 57, 33, 0.2);
}

.vodka-intro,
.serves-panel {
  padding: clamp(44px, 6vw, 88px) clamp(22px, 4.5vw, 62px);
}

.vodka-intro {
  border-right: 1px solid rgba(74, 57, 33, 0.25);
}

.vodka .section-kicker {
  color: var(--deep-gold);
}

.vodka h2 {
  max-width: 520px;
  color: #161008;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  line-height: 0.98;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.6rem);
  margin-top: clamp(2.4rem, 5vw, 4.4rem);
}

.pillars article {
  text-align: center;
}

.pillars svg {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  fill: none;
  stroke: #9b7135;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillars h3 {
  min-height: 44px;
  margin-bottom: 0.5rem;
  color: #5c3e18;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.pillars p,
.serve-card p,
.vodka-intro p {
  font-size: 0.92rem;
  line-height: 1.78;
}

.serves-panel {
  display: grid;
  gap: 0;
}

.serve-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 270px);
  gap: clamp(1.4rem, 3.5vw, 2.8rem);
  align-items: center;
  padding: 0 0 clamp(2.2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(74, 57, 33, 0.24);
}

.serve-card + .serve-card {
  padding-top: clamp(2.4rem, 4vw, 3.2rem);
  border-bottom: 0;
}

.serve-card h3 {
  margin-bottom: 0.35rem;
  color: #161008;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
}

.serve-image {
  width: 100%;
  max-height: 305px;
  object-fit: contain;
  border: 1px solid rgba(128, 87, 31, 0.1);
  background: rgba(246, 239, 226, 0.32);
  filter: drop-shadow(0 24px 22px rgba(41, 26, 13, 0.18));
}

.serve-image-clean {
  aspect-ratio: 1 / 1;
}

.serve-image-martini {
  max-height: 330px;
}

.recipe {
  display: grid;
  gap: 0.42rem;
  margin: 1.25rem 0 1.35rem;
}

.recipe div {
  display: grid;
  grid-template-columns: minmax(72px, 0.28fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
}

.recipe dt {
  color: var(--deep-gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.recipe dd {
  margin: 0;
  font-size: 0.92rem;
}

.dark-section {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.maker,
.origin,
.inquiry {
  display: grid;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.maker {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(46px, 7vw, 90px) 0;
}

.maker-copy {
  max-width: 620px;
}

.maker-copy p {
  color: #d8d1c4;
  font-size: 0.95rem;
  line-height: 1.82;
}

.maker-copy h2,
.origin h2,
.inquiry h2 {
  color: var(--gold);
}

.signature {
  margin-top: 2rem;
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  font-style: italic;
}

.maker-media {
  position: relative;
  min-height: 520px;
}

.maker-media video {
  width: min(380px, 80%);
  height: 520px;
  margin-left: auto;
  object-fit: cover;
  border: 1px solid rgba(216, 177, 91, 0.28);
  box-shadow: var(--shadow);
}

.maker-media img {
  position: absolute;
  left: 4%;
  bottom: -7%;
  width: min(270px, 40vw);
  opacity: 0.9;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
}

.origin {
  grid-template-columns: minmax(280px, 0.8fr) minmax(330px, 1.2fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(36px, 6vw, 82px) 0;
}

.chapter {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: clamp(4rem, 9vw, 7.5rem);
}

.origin-copy {
  position: relative;
  z-index: 1;
}

.origin-copy p {
  color: #d8d1c4;
  font-size: 0.95rem;
  line-height: 1.82;
}

.origin-image {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(216, 177, 91, 0.28);
}

.origin-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.65), rgba(5, 4, 3, 0.03));
}

.origin-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.inquiry {
  grid-template-columns: minmax(240px, 0.7fr) minmax(330px, 1fr) minmax(210px, 0.55fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(34px, 5vw, 72px) 0;
}

.benefits {
  display: grid;
  gap: 1.3rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.benefits li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
}

.benefits span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 177, 91, 0.48);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.benefits h3,
.offices h3 {
  margin-bottom: 0.15rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.benefits p,
.offices p,
.form-note {
  margin: 0;
  color: #c8beb0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.inquiry-form {
  align-self: start;
}

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

.inquiry-form label {
  display: grid;
  gap: 0.32rem;
  color: #bcae9c;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form .wide {
  grid-column: 1 / -1;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.age-panel select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 74, 0.14);
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .button {
  width: 100%;
  margin-top: 0.7rem;
}

.form-note {
  min-height: 1.4em;
  margin-top: 0.7rem;
}

.offices {
  padding-left: clamp(0rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(216, 177, 91, 0.22);
}

.offices p {
  margin-bottom: 1rem;
}

.offices strong,
.offices span,
.offices a {
  display: block;
}

.offices strong {
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offices a {
  margin-top: 0.6rem;
  color: var(--gold);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.social {
  border-top: 1px solid var(--line);
  background: #080705;
  text-align: center;
}

.social-heading {
  padding: 24px 20px 16px;
}

.social h2 {
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-size: clamp(2.1rem, 3.4vw, 3.6rem);
  letter-spacing: 0.035em;
}

.social p {
  margin: 0;
  color: #cabdab;
  font-size: 0.92rem;
  line-height: 1.55;
}

.social-strip {
  overflow: hidden;
  border-top: 1px solid rgba(216, 177, 91, 0.18);
  border-bottom: 1px solid rgba(216, 177, 91, 0.18);
}

.social-track {
  display: flex;
  width: max-content;
  animation: social-scroll 68s linear infinite;
}

.social-strip:hover .social-track {
  animation-play-state: paused;
}

.social-track img {
  width: clamp(280px, 33vw, 520px);
  height: clamp(190px, 28vw, 380px);
  flex: 0 0 auto;
  object-fit: cover;
  border-right: 1px solid rgba(216, 177, 91, 0.18);
}

@keyframes social-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.social-link {
  display: inline-flex;
  margin: 18px auto 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 22px clamp(20px, 4vw, 70px);
  color: #b8ad9e;
  background: #030302;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    background: rgba(5, 4, 3, 0.96);
    border: 1px solid rgba(216, 177, 91, 0.28);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 40px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-product {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 72px;
    width: min(300px, 44vw);
    opacity: 0.9;
  }

  .hero-copy {
    padding-right: min(170px, 32vw);
  }

  .split-layout,
  .maker,
  .origin,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .vodka-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 57, 33, 0.25);
  }

  .maker-media {
    min-height: 420px;
  }

  .maker-media video {
    width: min(360px, 72%);
    height: 420px;
  }

  .origin-image {
    order: -1;
  }

  .offices {
    padding-left: 0;
    border-left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .offices h3,
  .offices a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    line-height: 1.68;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .hero {
    min-height: 780px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.68) 54%, rgba(5, 4, 3, 0.9)),
      linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.28));
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-bottom: 36px;
  }

  .hero-copy {
    z-index: 3;
    padding-right: 0;
  }

  .hero-product {
    right: 0;
    bottom: 132px;
    width: 166px;
    opacity: 0.44;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 320px);
    gap: 0.75rem;
  }

  .age-panel {
    padding: 28px 18px;
  }

  .age-fields {
    grid-template-columns: 1fr;
  }

  .age-panel select,
  .age-panel button {
    min-height: 56px;
  }

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

  .serve-card {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .serve-image {
    order: -1;
    max-width: 250px;
    justify-self: center;
  }

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

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

  .social-track {
    animation-duration: 58s;
  }

  .social-track img {
    width: 82vw;
    height: 62vw;
    max-height: 360px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.85rem, 14.5vw, 3.9rem);
    line-height: 0.92;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 1.22rem;
    line-height: 1.12;
  }

  .button,
  .age-panel button {
    width: 100%;
  }

  .split-layout,
  .maker,
  .origin,
  .inquiry {
    width: min(100% - 28px, 1220px);
  }
}
