@font-face {
  font-family: "Libre Baskerville";
  src: url("../public/assets/fonts/libre-baskerville-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("../public/assets/fonts/libre-baskerville-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("../public/assets/fonts/baskervville-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("../public/assets/fonts/baskervville-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../public/assets/fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111411;
  --graphite: #313835;
  --muted: #65706a;
  --paper: #f6f7f2;
  --white: #ffffff;
  --mist: #dfe7df;
  --lichen: #7f8e72;
  --clay: #ae684f;
  --cedar: #684a35;
  --line: rgba(17, 20, 17, 0.12);
  --shadow: 0 18px 48px rgba(17, 20, 17, 0.12);
  --container: 1180px;
  --radius: 8px;
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
  --body-serif: "Baskervville", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-serif);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 22px;
  transition: padding 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(17, 20, 17, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
}

.brand img,
.footer-brand img {
  width: 126px;
  height: auto;
}

.brand span,
.footer-brand span {
  color: var(--muted);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--graphite);
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.site-nav .nav-cta {
  padding: 0.82rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

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

.language-select {
  position: relative;
  flex: 0 0 auto;
  font-family: var(--sans);
}

.language-select-mobile {
  display: none;
}

.language-current {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  list-style: none;
}

.language-current::-webkit-details-marker {
  display: none;
}

.language-current::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-select[open] .language-current::after {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 130;
  min-width: 92px;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.language-option {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 0 9px;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.language-current span:first-child,
.language-option span:first-child {
  font-size: 0.92rem;
  line-height: 1;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--ink);
  background: rgba(17, 20, 17, 0.06);
}

.language-option.is-active {
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  padding: 0;
  line-height: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-shell {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 20, 17, 0.76) 0%, rgba(17, 20, 17, 0.45) 46%, rgba(17, 20, 17, 0.16) 100%),
    linear-gradient(180deg, rgba(17, 20, 17, 0.35) 0%, rgba(17, 20, 17, 0) 42%, rgba(17, 20, 17, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 190px 0 92px;
  color: var(--white);
  max-width: 790px;
  margin-left: max(22px, calc((100% - var(--container)) / 2));
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mist);
}

.eyebrow.dark {
  color: var(--clay);
}

.eyebrow.light {
  color: var(--mist);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.04;
  font-weight: 700;
}

h1 {
  font-size: 5.4rem;
}

h2 {
  font-size: 3.3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-line {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.2;
}

.hero-copy {
  width: min(100%, 650px);
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "->";
  margin-left: 10px;
  font-weight: 700;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.hero .button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button-outline {
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  flex: 0 0 auto;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 10px auto 0;
  background: currentColor;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}

.signal-item {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--white);
}

.signal-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.section {
  padding: 104px 0;
}

.intro-section,
.craft-section {
  background: var(--paper);
}

.split-grid,
.image-story-grid,
.atelier-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.story-panel h2,
.atelier-copy h2,
.contact-copy h2 {
  max-width: 800px;
}

.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: var(--graphite);
}

.copy-columns p,
.story-panel p,
.section-heading p,
.atelier-copy p,
.contact-copy p,
.product-card p,
.value-card p {
  margin: 0;
}

.image-story {
  background: var(--white);
}

.image-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.story-panel {
  padding: 0 0 0 18px;
}

.story-panel p {
  margin-top: 1.3rem;
  color: var(--graphite);
}

.text-list {
  display: grid;
  gap: 10px;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex: 0 0 auto;
}

.collection-section,
.atelier-section,
.contact-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  gap: 18px;
  width: min(100%, 840px);
  margin-bottom: 48px;
}

.section-heading p {
  color: var(--graphite);
  width: min(100%, 680px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 20, 17, 0.2);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

.product-card div {
  padding: 22px;
}

.product-kicker {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--clay);
}

.product-card h3 {
  margin-top: 0.35rem;
}

.product-card p:last-of-type {
  margin-top: 0.8rem;
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.5;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  transition: opacity 240ms ease, transform 240ms ease, color 240ms ease;
}

.collection-link::after {
  content: "->";
  margin-left: 8px;
  transition: opacity 240ms ease, transform 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .collection-link {
    opacity: 0;
    transform: translateY(8px);
  }

  .collection-link::after {
    opacity: 0.4;
    transform: translateX(-5px);
  }

  .product-card:hover .collection-link,
  .product-card:focus-visible .collection-link {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card:hover .collection-link::after,
  .product-card:focus-visible .collection-link::after {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-band {
  background: var(--graphite);
  color: var(--white);
  padding: 64px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  font-size: 2.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 274px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lichen);
}

.value-card p {
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.52;
}

.atelier-copy {
  display: grid;
  gap: 22px;
}

.atelier-copy p {
  color: var(--graphite);
}

.image-frame.tall img {
  min-height: 560px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.metric-row strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.metric-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-wide {
  grid-column: span 2;
}

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
}

.contact-copy p {
  color: var(--graphite);
}

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

.dealer-card {
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.dealer-card p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clay);
}

.dealer-card a {
  color: var(--graphite);
  overflow-wrap: break-word;
}

.dealer-card a:hover {
  color: var(--clay);
}

@media (min-width: 1081px) {
  .contact-section .section-shell {
    width: min(100% - 96px, 1800px);
  }

  .contact-grid {
    gap: 84px;
  }

  .contact-copy h2 {
    max-width: 690px;
    font-size: clamp(3.15rem, 3.85vw, 4.35rem);
    line-height: 1.06;
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: 590px;
    font-size: 1.22rem;
    line-height: 1.62;
  }

  .contact-copy .direct-actions {
    margin-top: 3.4rem;
  }

  .contact-section .button {
    min-height: 58px;
    padding-inline: 1.45rem;
  }

  .dealer-card {
    min-height: 306px;
    padding: clamp(28px, 2.1vw, 38px);
  }

  .dealer-card h3 {
    max-width: 10ch;
    font-size: clamp(1.55rem, 1.7vw, 2rem);
    line-height: 1.05;
  }

  .dealer-card a {
    font-size: clamp(1.02rem, 1.06vw, 1.28rem);
    line-height: 1.45;
  }
}

@media (min-width: 1081px) and (max-width: 1279px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-copy h2 {
    max-width: 760px;
    font-size: clamp(2.85rem, 4.6vw, 3.55rem);
  }

  .contact-copy .direct-actions {
    margin-top: 2.4rem;
  }
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 32px 22px;
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  filter: invert(1);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:last-child {
  color: var(--white);
}

.error-page {
  min-height: 100vh;
  background: var(--paper);
}

.error-shell {
  width: min(100% - 44px, 760px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 20px;
}

.error-shell .footer-brand {
  color: var(--ink);
}

.error-shell .footer-brand img {
  filter: none;
}

.error-shell h1 {
  font-size: 3.4rem;
}

.error-shell p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--graphite);
}

.lightbox {
  width: min(92vw, 1120px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ink);
}

.lightbox p {
  margin: 0;
  padding: 16px 20px 20px;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  h2 {
    font-size: 2.7rem;
  }

  .site-nav {
    gap: 16px;
  }

  .signal-strip,
  .product-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .image-story-grid,
  .atelier-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .copy-columns,
  .dealer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-panel {
    padding-left: 0;
  }
}

@media (max-width: 940px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .nav-shell {
    min-height: 58px;
    border-radius: 999px;
    padding: 8px 10px 8px 16px;
    gap: 14px;
  }

  .brand img {
    width: 100px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .language-select-desktop {
    display: none;
  }

  .site-nav {
    margin-left: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

  .site-nav .language-select-mobile {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 8px 0 6px;
    padding: 0.72rem 0.7rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .site-nav .language-option {
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--graphite);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 18px rgba(17, 20, 17, 0.05);
  }

  .site-nav .language-option:hover,
  .site-nav .language-option:focus-visible {
    color: var(--ink);
    background: var(--paper);
    border-color: rgba(17, 20, 17, 0.2);
  }

  .site-nav .language-option.is-active {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero-media {
    object-position: 56% center;
    transform: scale(1.01);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 20, 17, 0.1) 0%, rgba(17, 20, 17, 0.28) 34%, rgba(17, 20, 17, 0.74) 76%, rgba(17, 20, 17, 0.9) 100%),
      linear-gradient(90deg, rgba(17, 20, 17, 0.7) 0%, rgba(17, 20, 17, 0.36) 58%, rgba(17, 20, 17, 0.2) 100%);
  }

  .hero-content {
    padding: 148px 0 64px;
    max-width: 660px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-line {
    font-size: 1.55rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .section {
    padding: 74px 0;
  }

  .signal-strip,
  .product-grid,
  .values-grid,
  .copy-columns,
  .dealer-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .cta-band-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 9px 12px;
  }

  .nav-shell {
    min-height: 56px;
    padding: 8px 9px 8px 15px;
    gap: 10px;
  }

  .brand img {
    width: 98px;
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding-left: 8px;
    border-left: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .language-current {
    min-height: 34px;
    gap: 5px;
    padding: 0 8px;
  }

  .language-menu {
    left: auto;
    right: 0;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    gap: 4px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 0;
    background: var(--ink);
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    height: clamp(270px, 42svh, 360px);
    aspect-ratio: auto;
    margin: 0;
    object-fit: cover;
    object-position: 50% 74%;
    transform: none;
  }

  .hero-shade {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(17, 20, 17, 0) 0%, rgba(17, 20, 17, 0.06) 34%, rgba(17, 20, 17, 0.58) 74%, rgba(17, 20, 17, 0.92) 100%),
      linear-gradient(90deg, rgba(17, 20, 17, 0.36) 0%, rgba(17, 20, 17, 0.14) 58%, rgba(17, 20, 17, 0.08) 100%);
    pointer-events: none;
  }

  h1 {
    font-size: 2.18rem;
    max-width: none;
  }

  h2,
  .cta-band h2 {
    font-size: 1.95rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-content {
    z-index: 3;
    width: min(100% - 28px, var(--container));
    max-width: none;
    margin: 0 auto;
    padding: 20px 0 34px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
  }

  .hero .eyebrow {
    margin-bottom: 0.72rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-line {
    max-width: none;
    margin-top: 0.62rem;
    font-size: 1.18rem;
    line-height: 1.24;
  }

  .hero-copy {
    max-width: none;
    margin-top: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .hero-actions,
  .direct-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 1rem;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0.72rem 0.9rem;
    font-size: 0.72rem;
  }

  .scroll-cue {
    display: none;
  }

  .image-frame img,
  .image-frame.tall img {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .value-card,
  .dealer-card {
    min-height: auto;
  }
}

@media (max-width: 360px) {
  .nav-shell {
    padding-left: 12px;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    width: 88px;
  }

  .brand span {
    padding-left: 6px;
    font-size: 0.62rem;
  }

  .language-current {
    min-height: 32px;
    padding: 0 7px;
  }

  .language-current span:last-child {
    display: none;
  }
}

@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;
  }
}
