:root {
  --ink: #08233d;
  --ink-soft: #284257;
  --paper: #fbf8ef;
  --porcelain: #fffdf8;
  --mist: #e7edf0;
  --sage: #6c7f63;
  --gold: #bd8b28;
  --gold-soft: #e8c874;
  --clay: #9b3f31;
  --line: rgba(8, 35, 61, 0.14);
  --glass: rgba(255, 253, 248, 0.68);
  --shadow: 0 24px 70px rgba(8, 35, 61, 0.12);
  --shadow-soft: 0 16px 42px rgba(8, 35, 61, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maintenance-height: 38px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 4%, rgba(232, 200, 116, 0.2), transparent 34rem),
    linear-gradient(180deg, #fbf8ef 0%, #fffdf8 44%, #eef3f0 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(189, 139, 40, 0.7);
  outline-offset: 4px;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  clip: auto;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--porcelain);
}

.maintenance-strip {
  position: fixed;
  z-index: 130;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--maintenance-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(189, 139, 40, 0.22);
  background: linear-gradient(90deg, rgba(8, 35, 61, 0.98), rgba(18, 58, 82, 0.98));
  color: var(--porcelain);
  box-shadow: 0 10px 32px rgba(8, 35, 61, 0.12);
}

.maintenance-track {
  display: inline-flex;
  min-width: max-content;
  animation: maintenance-marquee 28s linear infinite;
}

.maintenance-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-inline: 1.5rem;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.maintenance-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(232, 200, 116, 0.12);
}

@keyframes maintenance-marquee {
  from {
    transform: translateX(0);
  }

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

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: calc(var(--maintenance-height) + 14px);
  left: 0;
  width: 100%;
  pointer-events: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 32px));
  min-height: 78px;
  margin-inline: auto;
  padding: 0.55rem 0.75rem 0.55rem 0.9rem;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 55px rgba(8, 35, 61, 0.11);
  backdrop-filter: blur(24px);
  pointer-events: auto;
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled .navbar {
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(8, 35, 61, 0.12);
  transform: translateY(-4px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  min-width: 0;
}

.brand-logo-img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border: 1px solid rgba(189, 139, 40, 0.36);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 30px rgba(8, 35, 61, 0.14);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-word {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.92;
}

.brand-subword {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-panel > a {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.89rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-panel > a:hover {
  background: rgba(8, 35, 61, 0.07);
  color: var(--ink);
  transform: translateY(-1px);
}

.language-switch {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.24rem;
  margin-left: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.lang-button {
  min-width: 42px;
  padding: 0.54rem 0.62rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-button.is-active {
  background: var(--ink);
  color: var(--porcelain);
  box-shadow: 0 8px 22px rgba(8, 35, 61, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--porcelain);
  transition: transform 220ms ease, opacity 220ms 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);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(440px, 620px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(3.5rem, 7vw, 6rem);
  min-height: min(760px, 80svh);
  padding-top: clamp(11rem, 18vh, 12.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  isolation: isolate;
}

.hero__ambient {
  display: none;
}

.hero__content {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 9.3ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.7rem, 5.25vw, 5.95rem);
  line-height: 0.94;
}

h2 {
  max-width: 20ch;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5.2vw, 4.9rem);
  line-height: 0.94;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.hero__lead {
  max-width: 34rem;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--ink);
  color: var(--porcelain);
  box-shadow: 0 16px 36px rgba(8, 35, 61, 0.2);
}

.button--primary:hover {
  box-shadow: 0 20px 48px rgba(8, 35, 61, 0.25);
}

.button--ghost {
  border: 1px solid rgba(8, 35, 61, 0.14);
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 720;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 7px rgba(108, 127, 99, 0.12);
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 620px);
  margin: 0;
  border: 1px solid rgba(255, 253, 248, 0.64);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.45);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.42), transparent 26%, transparent 72%, rgba(8, 35, 61, 0.06));
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: clamp(390px, 48svh, 540px);
  object-fit: cover;
  object-position: center;
}

.intro-band,
.why-section,
.process-section,
.newsletter-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.intro-grid,
.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.intro-copy h2 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 4.7vw, 4.55rem);
}

.intro-text,
.newsletter-copy p {
  max-width: 38rem;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.story-section,
.products-section,
.faq-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 3.6rem);
}

.section-heading h2 {
  max-width: 20ch;
}

.products-section .section-heading h2 {
  max-width: 20ch;
}

.process-section .section-heading h2,
.faq-section .section-heading h2,
.newsletter-copy h2 {
  max-width: 18ch;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 1rem;
  align-items: stretch;
}

.glass-card,
.launch-card,
.newsletter-form {
  border: 1px solid rgba(255, 253, 248, 0.66);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.story-card {
  display: grid;
  gap: 1rem;
  min-height: 330px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.story-card p {
  max-width: 58rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.story-stat {
  position: relative;
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  min-height: 330px;
  padding: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.story-stat__image {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(8, 35, 61, 0.02), rgba(8, 35, 61, 0.18)),
    url("assets/images/lifestyle-kitchen.png") center 46% / cover;
}

.story-stat p {
  margin: 0;
  padding: 1.35rem 1.45rem 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.why-section {
  background: linear-gradient(180deg, rgba(231, 237, 240, 0.46), rgba(255, 253, 248, 0.4));
}

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

.feature-card,
.product-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 14px 38px rgba(8, 35, 61, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover,
.product-card:hover,
.faq-item:hover {
  border-color: rgba(189, 139, 40, 0.28);
  box-shadow: 0 20px 52px rgba(8, 35, 61, 0.11);
  transform: translateY(-4px);
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 1.5rem;
}

.feature-card h3 {
  max-width: 10ch;
  margin: auto 0 0.75rem;
}

.feature-card p {
  margin-bottom: 0;
}

.feature-icon {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  border: 1px solid rgba(189, 139, 40, 0.28);
  border-radius: 50%;
  background: rgba(232, 200, 116, 0.16);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--ink);
}

.feature-icon.leaf::before {
  border-radius: 100% 0 100% 0;
  transform: rotate(-35deg);
}

.feature-icon.shield::before {
  inset: 12px 14px 10px;
  border-radius: 14px 14px 18px 18px;
}

.feature-icon.drop::before {
  border-radius: 70% 70% 70% 0;
  transform: rotate(-45deg);
}

.feature-icon.flame::before {
  border-radius: 80% 20% 80% 20%;
  transform: rotate(20deg);
}

.feature-icon.family::before {
  inset: 13px 12px 22px;
  border-radius: 50%;
  box-shadow: -8px 8px 0 -2px var(--ink), 8px 8px 0 -2px var(--ink);
}

.feature-icon.family::after {
  inset: 27px 9px 10px;
  border-radius: 15px 15px 7px 7px;
}

.feature-icon.grain::before {
  inset: 12px 19px;
  border-width: 0 0 0 2px;
}

.feature-icon.grain::after {
  inset: 12px 14px;
  border-radius: 80% 0 80% 0;
  transform: rotate(35deg);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.82);
}

.product-card > div:last-child {
  display: grid;
  align-content: start;
  padding: 1.65rem 1.7rem 1.75rem;
}

.product-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.product-card p:last-child {
  margin-bottom: 0;
}

.product-meta {
  display: inline-flex;
  width: fit-content;
  margin: 1.15rem 0 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(189, 139, 40, 0.26);
  border-radius: 999px;
  background: rgba(189, 139, 40, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-image {
  position: relative;
  height: clamp(340px, 33vw, 500px);
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(231, 237, 240, 0.72), rgba(255, 253, 248, 0.8));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-image--jar img {
  object-position: center 50%;
}

.product-image--tin img {
  object-position: center 50%;
}

.process-section {
  background: linear-gradient(180deg, rgba(8, 35, 61, 0.96), rgba(14, 55, 78, 0.95));
}

.process-section h2,
.process-section h3 {
  color: var(--porcelain);
}

.process-section p {
  color: rgba(255, 253, 248, 0.72);
}

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

.timeline-item {
  position: relative;
  min-height: 300px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.timeline-item span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
}

.timeline-item h3 {
  margin: 4rem 0 0.65rem;
}

.launch-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.launch-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.launch-card h2 {
  max-width: 9ch;
}

.launch-card p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1.25rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 780;
}

.faq-item button span:first-child {
  padding-right: 1rem;
}

.faq-item button span:last-child {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(8, 35, 61, 0.07);
}

.faq-item button span:last-child::before,
.faq-item button span:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-item button span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open button span:last-child::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.25rem;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.2rem;
}

.newsletter-section {
  background:
    linear-gradient(90deg, rgba(8, 35, 61, 0.06), rgba(108, 127, 99, 0.12)),
    linear-gradient(180deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0.72));
}

.newsletter-grid {
  align-items: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 999px;
}

.newsletter-form input {
  min-width: 0;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  padding: 0 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(40, 66, 87, 0.68);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0.15rem 0.75rem 0;
  font-size: 0.86rem;
}

.site-footer {
  padding-block: 2rem;
  background: var(--ink);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-mark--footer .brand-word,
.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--porcelain);
}

.brand-mark--footer .brand-logo-img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  color: rgba(255, 253, 248, 0.72);
}

.footer-links a {
  color: var(--gold-soft);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.maintenance-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.maintenance-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.maintenance-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 35, 61, 0.52);
  backdrop-filter: blur(14px);
}

.maintenance-modal__card {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 520px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 253, 248, 0.68);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(251, 248, 239, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(232, 200, 116, 0.22), transparent 18rem);
  box-shadow: 0 30px 90px rgba(8, 35, 61, 0.26);
  text-align: center;
}

.maintenance-modal__card img {
  width: 86px;
  height: 86px;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(189, 139, 40, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(8, 35, 61, 0.14);
}

.maintenance-modal__card h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 7vw, 4.5rem);
}

.maintenance-modal__card p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--maintenance-height) + 84px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 253, 248, 0.7);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel > a {
    padding: 0.95rem 1rem;
  }

  .language-switch {
    justify-self: start;
    margin: 0.5rem 0 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
    padding-top: 10rem;
  }

  h1 {
    max-width: 9.3ch;
  }

  .hero__visual {
    justify-self: stretch;
    width: 100%;
  }

  .intro-grid,
  .story-layout,
  .launch-card,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .section-heading,
  .newsletter-copy {
    justify-items: center;
    text-align: center;
  }

  .intro-text,
  .newsletter-copy p {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
  }

  .section-heading h2,
  .products-section .section-heading h2,
  .process-section .section-heading h2,
  .faq-section .section-heading h2,
  .newsletter-copy h2 {
    max-width: 15ch;
  }

  .launch-card {
    align-items: start;
  }

  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --maintenance-height: 34px;
  }

  .maintenance-track span {
    padding-inline: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .navbar {
    width: min(100% - 20px, 1160px);
    min-height: 68px;
  }

  .brand-logo-img {
    width: 48px;
    height: 48px;
  }

  .brand-word {
    font-size: 1.28rem;
  }

  .brand-subword {
    display: none;
  }

  .hero {
    padding-top: 9.4rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 0.98;
  }

  .intro-copy h2,
  .section-heading h2,
  .products-section .section-heading h2,
  .process-section .section-heading h2,
  .faq-section .section-heading h2,
  .newsletter-copy h2 {
    max-width: 12.5ch;
    margin-inline: auto;
  }

  .newsletter-section {
    padding-block: 4.25rem;
  }

  .newsletter-grid {
    gap: 1.65rem;
  }

  .newsletter-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10vw, 3.35rem);
    line-height: 0.98;
  }

  .newsletter-copy p {
    max-width: 20rem;
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
    width: min(100%, 420px);
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 18px 48px rgba(8, 35, 61, 0.1);
    backdrop-filter: blur(18px);
  }

  .newsletter-form input {
    min-height: 58px;
    padding-inline: 1.05rem;
    border: 1px solid rgba(8, 35, 61, 0.08);
    background: rgba(255, 253, 248, 0.92);
    font-size: 1rem;
  }

  .newsletter-form .button {
    min-height: 58px;
    padding-inline: 1rem;
  }

  .form-note {
    margin: 0.25rem 0.35rem 0;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    border-radius: 22px;
  }

  .hero__visual img {
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .feature-grid,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: auto auto;
  }

  .product-image {
    height: clamp(300px, 74vw, 430px);
  }

  .timeline-item,
  .feature-card,
  .story-card,
  .story-stat {
    min-height: auto;
  }

  .footer-grid {
    display: grid;
    align-items: start;
    gap: 1.75rem;
  }

  .footer-links {
    justify-items: start;
  }

  .site-footer {
    padding-block: 2.4rem 2.8rem;
  }

  .brand-mark--footer {
    gap: 0.75rem;
  }

  .brand-mark--footer .brand-logo-img {
    width: 56px;
    height: 56px;
  }

  .brand-mark--footer .brand-word {
    font-size: 1.45rem;
  }

  .site-footer p {
    max-width: 19rem;
    margin-top: 1.05rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .footer-links {
    gap: 0.55rem;
    font-size: 0.98rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .maintenance-track {
    animation: none;
    transform: none;
  }
}
