:root {
  --ink: #151310;
  --coal: #1d1a16;
  --coal-2: #25211b;
  --matte: #0f0e0c;
  --tile: #f4eee4;
  --paper: #eee3d2;
  --muted: rgba(238, 227, 210, 0.68);
  --hairline: rgba(238, 227, 210, 0.16);
  --amber: #e8a21a;
  --amber-2: #ffbf36;
  --ember: #b76722;
  --wood: #8a4f27;
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 88%, transparent);
}

::selection {
  background: rgba(232, 162, 26, 0.88);
  color: #15100a;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-shell {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(183, 103, 34, 0.2), transparent 24rem),
    linear-gradient(180deg, #101012 0%, var(--ink) 55%, #211810 100%);
}

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 4vw;
  transition: background-color 240ms ease, border-color 240ms ease, padding 240ms ease;
  border-bottom: 1px solid transparent;
}

.nav-shell.is-scrolled {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: rgba(15, 14, 12, 0.78);
  border-color: var(--hairline);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 6.5rem;
}

.brand-logo {
  width: 7.25rem;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-menu a {
  position: relative;
  padding: 0.7rem 0;
}

.site-menu a::after {
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  transition: transform 260ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.44);
  padding: 0.7rem 1.35rem !important;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--paper);
}

.hero-section {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 9rem 4vw 5rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.05), rgba(11, 10, 9, 0.38) 47%, rgba(11, 10, 9, 0.88)),
    linear-gradient(0deg, rgba(11, 10, 9, 0.9), rgba(11, 10, 9, 0.06) 48%),
    url("../images/hero-kitchbox-night-no-text.webp") center / cover no-repeat;
  filter: saturate(0.96) contrast(1.07);
}

.config-preview::before {
  position: absolute;
  left: 15%;
  right: 10%;
  bottom: 4%;
  z-index: 1;
  height: 4rem;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.68), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.side-rail {
  position: absolute;
  left: 4vw;
  top: 38%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.side-rail::after {
  width: 1px;
  height: 4.5rem;
  content: "";
  background: var(--amber);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(50rem, 100%);
  margin-left: auto;
  padding-right: 4vw;
  padding-bottom: 0.7rem;
  transform: translateY(3.4rem);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--amber-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Manrope, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 50rem;
  margin-bottom: 1.15rem;
  color: #fffaf2;
  font-size: 5.15rem;
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy h1 span {
  color: var(--amber-2);
}

.hero-lede {
  max-width: 34rem;
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.25rem;
  line-height: 1.6;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 0 2rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
  cursor: pointer;
}

.primary-action {
  border: 1px solid var(--amber);
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #1b1308;
}

.secondary-action {
  border: 1px solid rgba(232, 162, 26, 0.55);
  background: rgba(12, 10, 8, 0.42);
  color: #fffaf2;
}

.primary-action:hover,
.secondary-action:hover,
.module-option:hover {
  transform: translateY(-2px);
}

.primary-action:active,
.secondary-action:active,
.module-option:active {
  transform: translateY(1px) scale(0.99);
}

.scroll-hint {
  position: absolute;
  right: 4vw;
  bottom: 2.5rem;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.scroll-hint span {
  width: 1px;
  height: 4rem;
  background: linear-gradient(var(--amber), transparent);
}

.intro-section,
.aperture-section,
.configurator-section,
.gallery-section,
.quote-section {
  scroll-margin-top: 5.5rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 9rem 4vw;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.8fr);
  gap: 6vw;
  align-items: center;
}

.intro-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  aspect-ratio: 1 / 1;
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-copy h2,
.configurator-heading h2,
.gallery-heading h2,
.quote-card h2 {
  color: #fffaf2;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 700;
}

.intro-copy p:not(.eyebrow),
.configurator-heading p:not(.eyebrow),
.quote-card p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.aperture-section {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 162, 26, 0.1), transparent 26rem),
    linear-gradient(180deg, #11100e, #17120d 54%, #11100e);
}

.aperture-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(22rem, 0.28fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: end;
}

.aperture-copy {
  max-width: 56rem;
  padding-top: 0;
}

.aperture-copy h2 {
  margin-bottom: 1.4rem;
  color: #fffaf2;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.02;
  font-weight: 700;
}

.aperture-copy p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.aperture-visual {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.aperture-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 8.3;
  overflow: hidden;
  border: 1px solid rgba(238, 227, 210, 0.18);
  border-radius: var(--radius);
  background: #0f0e0c;
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.42);
}

.aperture-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 7, 6, 0.88)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.14), transparent 36%);
}

.aperture-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aperture-shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.aperture-frame-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.35rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.aperture-frame-copy span {
  color: var(--amber-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.aperture-frame-copy strong {
  max-width: 20rem;
  color: #fffaf2;
  font-family: "Space Grotesk", Manrope, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1;
  text-align: right;
}

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

.aperture-step {
  position: relative;
  min-height: 12rem;
  border-top: 1px solid rgba(238, 227, 210, 0.18);
  padding: 1rem 1.1rem 1.3rem;
  background: linear-gradient(90deg, rgba(232, 162, 26, 0), rgba(232, 162, 26, 0));
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aperture-step::before {
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.4rem;
  width: 2px;
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  background: var(--amber);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aperture-step span {
  display: block;
  margin-bottom: 2.2rem;
  color: rgba(232, 162, 26, 0.72);
  font-family: "Space Grotesk", Manrope, Arial, sans-serif;
  font-weight: 800;
}

.aperture-step h3 {
  margin-bottom: 0.65rem;
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.35rem;
  line-height: 1;
}

.aperture-step p {
  max-width: 26rem;
  color: rgba(238, 227, 210, 0.54);
  line-height: 1.6;
}

.aperture-step.is-active {
  border-color: rgba(232, 162, 26, 0.5);
  background: linear-gradient(90deg, rgba(232, 162, 26, 0.12), rgba(232, 162, 26, 0));
}

.aperture-step.is-active::before {
  transform: scaleY(1);
}

.aperture-step.is-active h3,
.aperture-step.is-active p {
  color: #fffaf2;
}

.configurator-section {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background:
    linear-gradient(180deg, rgba(21, 19, 16, 0), rgba(37, 33, 27, 0.78) 18%, rgba(21, 19, 16, 0) 100%);
}

.configurator-heading,
.gallery-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 3rem;
  padding: 0 4vw;
}

.configurator-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  gap: 1rem;
  padding: 0 4vw;
}

.config-preview {
  position: relative;
  min-height: 40rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 58%),
    radial-gradient(circle at 50% 60%, rgba(232, 162, 26, 0.13), transparent 32rem),
    #11100e;
  box-shadow: 0 3.5rem 7rem rgba(0, 0, 0, 0.34);
}

.config-preview img {
  width: 100%;
  height: 100%;
  min-height: 40rem;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
}

.config-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.02), rgba(10, 9, 8, 0.2)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.2), transparent 26%, transparent 72%, rgba(8, 7, 6, 0.18));
}

.config-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.config-caption span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 191, 54, 0.58);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  color: #fffaf2;
  background: rgba(13, 11, 9, 0.72);
  box-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.32);
  font-size: 0.76rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease;
}

.config-caption span::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--amber-2);
  content: "";
  box-shadow: 0 0 0 0.32rem rgba(255, 191, 54, 0.16);
}

.config-caption span.is-muted {
  opacity: 0.24;
  border-color: rgba(238, 227, 210, 0.18);
  transform: translate(-50%, -50%) scale(0.94);
}

.config-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(14, 13, 11, 0.76);
  backdrop-filter: blur(18px);
}

.panel-header,
.config-summary {
  border-bottom: 1px solid var(--hairline);
  padding: 0.8rem 0.6rem 1rem;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.panel-header strong {
  color: #fffaf2;
}

.module-list {
  display: grid;
  gap: 0.75rem;
}

.module-option {
  display: grid;
  grid-template-columns: 5.8rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.32rem;
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem 0.7rem 0.65rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.module-thumb {
  grid-row: 1 / 3;
  width: 5.8rem;
  height: 4.35rem;
  object-fit: contain;
  align-self: center;
  border: 1px solid rgba(238, 227, 210, 0.13);
  border-radius: 6px;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.24);
  filter: drop-shadow(0 0.75rem 0.9rem rgba(0, 0, 0, 0.36));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease, border-color 220ms ease;
}

.module-option > span {
  align-self: end;
  font-weight: 800;
  color: #fffaf2;
}

.module-option small {
  align-self: start;
  color: var(--muted);
  line-height: 1.4;
}

.module-option.is-active {
  border-color: rgba(232, 162, 26, 0.72);
  background: rgba(232, 162, 26, 0.12);
}

.module-option.is-active .module-thumb {
  border-color: rgba(232, 162, 26, 0.78);
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 0.95rem 1rem rgba(0, 0, 0, 0.42));
}

.config-summary {
  margin-top: auto;
}

.config-summary p {
  margin-bottom: 0.45rem;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.config-summary strong {
  color: #fffaf2;
  line-height: 1.5;
}

.panel-action {
  width: 100%;
}

.gallery-section {
  max-width: none;
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(22rem, 34vw);
  gap: 1rem;
  overflow-x: auto;
  padding: 0 4vw 1.4rem;
  scroll-snap-type: x mandatory;
}

.gallery-track figure {
  margin: 0;
  scroll-snap-align: start;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  filter: saturate(0.94) contrast(1.04);
}

.gallery-track figcaption {
  padding-top: 1rem;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.95rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 0.66fr);
  gap: 1rem;
  align-items: stretch;
}

.quote-image {
  min-height: 48rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(238, 227, 210, 0.08), rgba(238, 227, 210, 0.02)),
    #171411;
}

.quote-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.9rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--amber);
}

.quote-form textarea {
  resize: vertical;
}

.footer-shell {
  position: relative;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: 38rem;
  padding: 4rem 4vw 2.2rem;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(232, 162, 26, 0.13), transparent 28rem),
    linear-gradient(180deg, #11100e, #0d0c0b);
}

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

.footer-logo {
  width: 5.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
  color: rgba(255, 250, 242, 0.72);
}

.footer-statement {
  max-width: 40rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
}

.footer-wordmark {
  display: block;
  margin-top: auto;
  color: #fffaf2;
  font-family: "Space Grotesk", Manrope, Arial, sans-serif;
  font-size: clamp(4.2rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
  opacity: 0.96;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.6rem;
  }

  .hero-copy {
    width: min(44rem, 100%);
  }

  .intro-copy h2,
  .configurator-heading h2,
  .gallery-heading h2,
  .quote-card h2 {
    font-size: 3.2rem;
  }

}

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

  .site-menu {
    position: fixed;
    top: 5.2rem;
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 0.8rem;
    background: rgba(15, 14, 12, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 1rem !important;
    border-bottom: 1px solid var(--hairline);
  }

  .site-menu a:last-child {
    border-bottom: 0;
  }

  .hero-section {
    min-height: 100dvh;
    padding-top: 8rem;
  }

  .hero-backdrop {
    background:
      linear-gradient(0deg, rgba(11, 10, 9, 0.94), rgba(11, 10, 9, 0.38) 58%),
      url("../images/hero-kitchbox-night-no-text.webp") 43% center / cover no-repeat;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    transform: none;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .side-rail,
  .scroll-hint {
    display: none;
  }

  .intro-section,
  .aperture-inner,
  .configurator-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .aperture-section,
  .configurator-section,
  .gallery-section,
  .quote-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .aperture-copy {
    position: static;
  }

  .aperture-visual {
    grid-template-columns: 1fr;
  }

  .aperture-steps {
    grid-template-columns: 1fr;
  }

  .aperture-frame {
    position: relative;
    top: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .config-preview,
  .config-preview img {
    min-height: 34rem;
  }

  .quote-image {
    min-height: 28rem;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-logo {
    width: 5.8rem;
  }

  .hero-section {
    padding: 7rem 1rem 3rem;
  }

  h1 {
    font-size: 2.95rem;
  }

  .intro-copy h2,
  .aperture-copy h2,
  .configurator-heading h2,
  .gallery-heading h2,
  .quote-card h2 {
    font-size: 2.45rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .intro-section,
  .aperture-inner,
  .configurator-heading,
  .configurator-grid,
  .gallery-heading,
  .quote-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gallery-track {
    grid-auto-columns: 82vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .quote-card {
    padding: 1.4rem;
  }

  .footer-shell {
    min-height: 28rem;
    padding: 2rem 1rem 1.3rem;
  }

  .footer-topline {
    flex-direction: column;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
