/* =================================================================
   OFFICINE ALLEGRA — HOMEPAGE
   Brand-aligned with Brand Guidelines 2025
   ================================================================= */

/* ============== BRAND FONTS ==============
   Archer (serif / body & italic accents) — local brand files
   Rubik (UI / labels) — loaded via Google Fonts in <head>
   Anton (display headlines) — loaded via Google Fonts in <head>
   NOTE: no Archer Italic file supplied — italic is browser-synthesised. */
@font-face {
  font-family: 'Archer';
  src: url('../fonts/ArcherLightPro.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archer';
  src: url('../fonts/ArcherBookPro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archer';
  src: url('../fonts/ArcherMediumPro.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archer';
  src: url('../fonts/ArcherSemiboldPro.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archer';
  src: url('../fonts/ArcherBoldPro.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* True italic (Archer Medium Italic) — brand italic for the orange accents.
   Registered across 300–700 so any italic element uses the real face, never a faux slant. */
@font-face {
  font-family: 'Archer';
  src: url('../fonts/ArcherMediumItalic.otf') format('opentype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Colors per Brand Guidelines */
  --orange: #fe5000; /* Pantone Orange 021 C */
  --orange-soft: #fbe7d8;
  --ivory: #f6f6ee;
  --ivory-2: #ecebe0;
  --ivory-3: #e2dfcd;
  --black: #000000;
  --ink-2: #1d1d1b;
  --muted: #6e6c63;
  --muted-2: #989481;
  --rule: #d6d4c5;
  --white: #ffffff;

  /* Type scale */
  --display: clamp(72px, 10vw, 140px);
  --h1: clamp(56px, 7vw, 112px);
  --h2: clamp(40px, 5vw, 72px);
  --h3: clamp(28px, 3vw, 44px);
  --h4: 22px;
  --body-l: 18px;
  --body: 16px;
  --body-s: 14px;
  --label: 11px;
  --tiny: 10px;

  /* Easing */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============== RESET ============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archer', Georgia, 'Times New Roman', serif;
  font-weight: 300; /* Archer Light Pro — body copy */
  line-height: 1.55;
  color: var(--black);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--body);
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

ul {
  list-style: none;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

/* ============== TYPE UTILITIES ============== */
.t-anton {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.t-serif {
  font-family: 'Archer', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.t-italic {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.t-mono-label {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.t-orange {
  color: var(--orange);
}

/* ============== STREAMLINE PRIMITIVES ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.eyebrow .num {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

/* Eyebrow section number in Archer Book (matches the big section num-block) */
.eyebrow .eb-num {
  font-family: 'Archer', Georgia, serif; /* Archer Book */
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0;
}

.crosshair-frame {
  position: relative;
}

.crosshair-frame::before,
.crosshair-frame::after,
.crosshair-frame>.ch-tl,
.crosshair-frame>.ch-tr,
.crosshair-frame>.ch-bl,
.crosshair-frame>.ch-br {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--black);
  pointer-events: none;
  z-index: 2;
}

.crosshair-frame .ch-tl {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.crosshair-frame .ch-tr {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}

.crosshair-frame .ch-bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.crosshair-frame .ch-br {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.dim-line {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.dim-line::before,
.dim-line::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--muted);
  margin: 0 10px;
}

.dim-line::before {
  margin-left: 0;
}

/* ============== CONTAINER ============== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ============== TICKER (top) ============== */
.ticker {
  background: var(--black);
  color: var(--ivory);
  border-bottom: 1px solid var(--black);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 0;
  animation: tickerSlide 38s linear infinite;
  width: max-content;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-track span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  margin-left: 60px;
}

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

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 246, 238, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(246, 246, 238, 0.92);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--e-out);
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link:hover::after,
.nav-item.is-active>.nav-link::after {
  transform: scaleX(1);
}

.nav-link .caret {
  width: 8px;
  height: 8px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--e-out);
  margin-bottom: 3px;
}

.nav-item.is-active .caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.nav-link .badge-soon {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: lowercase;
  color: var(--orange);
  padding: 2px 8px;
  background: var(--orange-soft);
  border-radius: 999px;
  margin-left: 4px;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 0;
  display: inline-flex;
  gap: 6px;
}

.lang-switch .active {
  color: var(--black);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--ivory);
  padding: 12px 22px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.btn-cta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s var(--e-out);
}

.btn-cta:hover {
  background: var(--orange);
}

.btn-cta:hover::before {
  background: var(--ivory);
  transform: scale(1.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 110;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle.is-open {
  position: fixed;
  top: 18px;
  right: 24px;
  background: var(--ivory);
  border: 1px solid var(--black);
  border-radius: 50%;
  z-index: 110;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1024px) {

  .nav,
  .header-actions .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Nav is hidden here, so use a 2-col grid: logo left, hamburger pinned right */
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .header-actions {
    justify-self: end;
  }
}

/* ============== MEGA MENU ============== */
.mega-menu {
  position: fixed;
  top: var(--header-bottom, 76px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(1100px, calc(100vw - 96px));
  background: var(--ivory);
  border: 1px solid var(--black);
  padding: 40px;
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--e-out), transform 0.28s var(--e-out), visibility 0s linear 0.28s;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.25);
  z-index: 80;
}

.nav-item.is-active .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.28s var(--e-out), transform 0.28s var(--e-out), visibility 0s;
}

.mega-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 28px;
  border-right: 1px solid var(--rule);
  grid-column: 1;
  grid-row: 1 / span 2;
}

/* Family concept heading — above the two Dinamica cards only (Lume stands alone) */
.mega-family-title {
  grid-column: 3 / span 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.mega-family-title h4 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
}

.mega-family-title .fam-note {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

.mega-card {
  grid-row: 2;
}

/* Explicit columns so the divider pseudo-item doesn't disrupt auto-placement */
.mega-menu a.mega-card:nth-of-type(1) { grid-column: 2; } /* Lume */
.mega-menu a.mega-card:nth-of-type(2) { grid-column: 3; } /* Dinamica One */
.mega-menu a.mega-card:nth-of-type(3) { grid-column: 4; } /* Dinamica Pro */

/* Vertical divider in the gap between Lume (standalone) and the Dinamica family group */
.mega-menu::before {
  content: "";
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: start;
  align-self: stretch;
  width: 1px;
  margin-left: -14px;
  background: var(--rule);
}

.mega-intro .label {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.mega-intro h4 {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.mega-intro p {
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.mega-intro .compare {
  margin-top: auto;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  align-self: flex-start;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mega-intro .compare::after {
  content: "→";
  transition: transform 0.25s var(--e-out);
}

.mega-intro .compare:hover::after {
  transform: translateX(4px);
}

.mega-card {
  background: var(--white);
  padding: 18px 18px 20px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.3s var(--e-out);
  position: relative;
  overflow: hidden;
}

.mega-card:hover {
  border-color: var(--black);
  transform: translateY(-3px);
}

.mega-card .preview {
  aspect-ratio: 4 / 3;
  background: var(--ivory-2);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.mega-card .preview img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.5s var(--e-out);
}

.mega-card:hover .preview img {
  transform: scale(1.04);
}

.mega-card .preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mega-card h5 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.mega-card .desc {
  font-family: 'Archer', Georgia, serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  font-style: italic;
}

.mega-card .meta {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-card .meta::after {
  content: "→";
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  color: var(--orange);
  transition: transform 0.25s var(--e-out);
}

.mega-card:hover .meta::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .mega-menu {
    display: none;
  }
}

/* ============== HERO ============== */
.hero {
  background: var(--ivory);
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.hero-headline-block {
  position: relative;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: var(--display);
  line-height: 1;
  text-transform: uppercase;
  
  color: var(--black);
}

.hero h1 .it {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  text-transform: none;
  letter-spacing: -0.015em;
}

.hero h1 .deco {
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  height: 0.7em;
  width: auto;
}

.hero-payoff {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  margin-top: 24px;
  letter-spacing: 0.005em;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 12px;
}

.hero-meta p {
  font-family: 'Archer', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 480px;
}

.hero-meta p:first-of-type::first-letter {
  font-family: 'Archer', Georgia, serif;
  font-size: 64px;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--orange);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--ivory);
  padding: 16px 28px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s var(--e-out);
}

.btn-primary:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.btn-primary .arrow {
  transition: transform 0.25s var(--e-out);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1.5px solid var(--black);
  transition: color 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Hero stage (machine showcase) */
.hero-stage {
  position: relative;
  background:
    radial-gradient(ellipse at 70% 70%, var(--ivory-3) 0%, transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  border: 1px solid var(--black);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-stage img {
  width: 65%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.18));
}

.hero-stage .stage-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--ivory);
  padding: 8px 14px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-stage .stage-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-stage .stage-coords {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  z-index: 3;
  display: flex;
  gap: 14px;
}

.hero-stage .stage-coords span {
  display: inline-flex;
  gap: 6px;
}

.hero-stage .stage-coords b {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--black);
}

.hero-stage .stage-dim {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  border: 1px solid var(--black);
  background: var(--white);
}

.hero-stat {
  padding: 22px 24px;
  border-right: 1px solid var(--black);
  position: relative;
}

.hero-stat:last-of-type {
  border-right: 1px solid var(--black);
}

.hero-stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero-stat .num small {
  font-size: 18px;
  color: var(--orange);
}

.hero-stat .lbl {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 6px;
}

.hero-stat .ix {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
}

.hero-place {
  padding: 22px 28px;
  background: var(--black);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hero-place .ttl {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 18px;
}

.hero-place .sub {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }

  .hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hero-place {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: none;
  }

  .hero-place {
    grid-column: span 1;
  }
}

/* ============== SECTION HEAD ============== */
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 60px;
}

.section-head .num-block {
  font-family: 'Archer', Georgia, serif; /* Archer Book */
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  color: var(--orange);
  border-top: 2px solid var(--orange);
  padding-top: 14px;
  line-height: 1;
}

.section-head .num-block small {
  display: block;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-size: 10px;
  /* letter-spacing: 0.22em; */
  text-transform: uppercase;
  color: var(--black);
  /* font-weight: 500; */
  margin-top: 12px;
}

.section-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: var(--h2);
  line-height: 0.95;
  
  text-transform: uppercase;
}

.section-head h2 .it {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  text-transform: none;
  letter-spacing: -0.015em;
}

.section-head .lead {
  font-family: 'Archer', Georgia, serif;
  font-size: 18px;
  color: var(--ink-2);
  margin-top: 18px;
  max-width: 600px;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============== MANIFESTO ============== */
.manifesto {
  background: var(--ivory);
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  
  text-transform: uppercase;
}

.manifesto-text h2 .it {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  text-transform: none;
  letter-spacing: -0.015em;
  display: inline-block;
}

.manifesto-text .body {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.manifesto-text .body p {
  font-family: 'Archer', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}

.manifesto-text .pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar .nm {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 6px;
  margin-bottom: 4px;
  align-self: flex-start;
}

.pillar h4 {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  /* letter-spacing: -0.02em; */
}

.pillar p {
  font-family: 'Archer', Georgia, serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.manifesto-aside {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--black);
  overflow: hidden;
  border: 1px solid var(--black);
}

.manifesto-aside .quote {
  position: absolute;
  inset: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ivory);
  z-index: 2;
}

.manifesto-aside .qr {
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.005em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}

.manifesto-aside .qr::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.manifesto-aside .qt {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--ivory);
  max-width: 90%;
}

.manifesto-aside .qt::before {
  content: "“";
  font-family: 'Archer', Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.manifesto-aside .att {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

.manifesto-aside .att b {
  display: block;
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--ivory);
  margin-bottom: 4px;
}

.manifesto-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 90%, rgba(254, 80, 0, 0.18) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
}

@media (max-width: 1024px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .manifesto-aside {
    aspect-ratio: 16 / 10;
  }

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

/* ============== PRODUCT SHOWCASE ============== */
.product {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.product--dinamica {
  background: var(--ivory-2);
}

.product--lume {
  background: var(--ivory);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product--reverse .product-image {
  order: 2;
}

.product--reverse .product-content {
  order: 1;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.product-content .meta {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.product-content .meta::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.product-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.88;
  
}

.product-content .tagline {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 500; /* Archer Medium Italic */
  font-size: 22px;
  color: var(--orange);
  line-height: 1.3;
}

.product-content p {
  font-family: 'Archer', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

.product-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  margin: 12px 0 8px;
}

.product-spec .item {
  padding: 16px 12px 16px 0;
  position: relative;
}

.product-spec .item+.item {
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}

.product-spec .v {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: var(--orange);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.product-spec .v small {
  font-size: 14px;
  color: var(--black);
}

.product-spec .l {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 6px;
}

.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--ivory);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--black);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.product-image img {
  width: 100%;
  max-width: 640px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.12));
  transition: transform 0.6s var(--e-out);
}

.product-image:hover img {
  transform: scale(1.03);
}

.product-image .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--ivory);
  border: 1px solid var(--black);
  padding: 7px 12px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
}

.product-image .badge.orange {
  background: var(--orange);
  color: var(--ivory);
  border-color: var(--orange);
}

.product-image .dim-h {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--orange);
  z-index: 4;
}

.product-image .dim-h::before,
.product-image .dim-h::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 9px;
  height: 1px;
  background: var(--orange);
}

.product-image .dim-h::before {
  top: 0;
}

.product-image .dim-h::after {
  bottom: 0;
}

.product-image .dim-h-l {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap;
  z-index: 4;
}

.product-image .dim-w {
  position: absolute;
  bottom: 14px;
  left: 22%;
  right: 22%;
  height: 1px;
  background: var(--orange);
  z-index: 4;
}

.product-image .dim-w::before,
.product-image .dim-w::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: var(--orange);
}

.product-image .dim-w::before {
  left: 0;
}

.product-image .dim-w::after {
  right: 0;
}

.product-image .dim-w-l {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 600;
  z-index: 4;
}

/* Color picker */
.product-finishes {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.product-finishes .lbl {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.finish-list {
  display: flex;
  gap: 10px;
}

.finish {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--black);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}

.finish:hover {
  transform: scale(1.12);
}

.finish.is-active {
  box-shadow: 0 0 0 2px var(--orange);
}

.finish[data-finish="artico"] {
  background: #ffffff;
}

.finish[data-finish="notturno"] {
  background: #1a1a1a;
}

.finish[data-finish="bronzo"] {
  background: #6b4f2f;
}

.finish[data-finish="navy"] {
  background: #1c2a44;
}

.finish[data-finish="terracotta"] {
  background: var(--orange);
}

.finish-name {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--black);
  min-width: 100px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product--reverse .product-image,
  .product--reverse .product-content {
    order: initial;
  }
}

/* ============== CRAFTSMANSHIP STRIP ============== */
.craft {
  background: var(--black);
  color: var(--ivory);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.craft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 0%, rgba(254, 80, 0, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 60px);
  pointer-events: none;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.craft-text {
  max-width: 520px;
}

.craft .eyebrow {
  color: var(--orange);
}

.craft .eyebrow::before {
  background: var(--orange);
}

.craft h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 0.92;
  
  text-transform: uppercase;
  margin: 22px 0 28px;
  color: var(--ivory);
}

.craft h2 .it {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  text-transform: none;
  letter-spacing: -0.015em;
}

.craft p {
  font-family: 'Archer', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(246, 246, 238, 0.78);
  margin-bottom: 20px;
}

.craft-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ivory);
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 6px;
  margin-top: 12px;
  transition: gap 0.25s;
}

.craft-cta:hover {
  gap: 18px;
}

.craft-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(246, 246, 238, 0.18);
}

.step {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(246, 246, 238, 0.18);
  transition: background 0.25s;
}

.step:last-child {
  border-bottom: none;
}

.step:hover {
  background: rgba(246, 246, 238, 0.04);
}

.step .ix {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.step .ttl {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
}

.step .ttl small {
  display: block;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
  font-weight: 500;
}

.step .dur {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 1024px) {
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============== DOMESTIC TEASER ============== */
.domestic {
  padding: 120px 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.domestic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.domestic-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, var(--ivory-2) 0%, var(--ivory-3) 100%);
  border: 1px solid var(--black);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.domestic-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.domestic-visual .silhouette {
  width: 60%;
  position: relative;
  z-index: 2;
  filter: blur(2px);
  opacity: 0.6;
}

.domestic-visual .stamp {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  border: 2px solid var(--orange);
  padding: 16px 24px;
  background: rgba(246, 246, 238, 0.92);
}

.domestic-visual .stamp .lg {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.domestic-visual .stamp .sm {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}

.domestic-visual .corner-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 4;
  font-weight: 500;
}

.domestic-visual .corner-tag-r {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--orange);
  z-index: 4;
}

.domestic-content {
  max-width: 540px;
}

.domestic-content .eyebrow {
  margin-bottom: 24px;
}

.domestic-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  
  text-transform: uppercase;
}

.domestic-content h2 .it {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  text-transform: none;
  letter-spacing: -0.015em;
}

.domestic-content .lead {
  font-family: 'Archer', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 24px 0 32px;
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--black);
  background: var(--white);
  margin-bottom: 16px;
}

.notify-form input {
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-family: 'Archer', Georgia, serif;
  font-size: 16px;
  outline: none;
}

.notify-form input::placeholder {
  color: var(--muted);
  font-style: italic;
}

.notify-form button {
  background: var(--black);
  color: var(--ivory);
  padding: 0 24px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.notify-form button:hover {
  background: var(--orange);
}

.notify-form.is-success {
  background: var(--orange);
  color: var(--ivory);
}

.notify-form.is-success input {
  color: var(--ivory);
}

.notify-note {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .domestic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============== TIMELINE / HERITAGE ============== */
.heritage {
  padding: 120px 0;
  background: var(--ivory-2);
  border-bottom: 1px solid var(--rule);
}

.heritage-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--black);
  margin-top: 48px;
  background: var(--ivory);
}

.heritage-pt {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--black);
  position: relative;
}

.heritage-pt:last-child {
  border-right: none;
}

.heritage-pt .yr {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.heritage-pt .ttl {
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 6px;
}

.heritage-pt .desc {
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.heritage-pt::before {
  content: attr(data-mark);
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .heritage-line {
    grid-template-columns: 1fr 1fr;
  }

  .heritage-pt:nth-child(2) {
    border-right: none;
  }

  .heritage-pt:nth-child(1),
  .heritage-pt:nth-child(2) {
    border-bottom: 1px solid var(--black);
  }
}

@media (max-width: 600px) {
  .heritage-line {
    grid-template-columns: 1fr;
  }

  .heritage-pt {
    border-right: none;
    border-bottom: 1px solid var(--black);
  }

  .heritage-pt:last-child {
    border-bottom: none;
  }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--black);
  color: var(--ivory);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 90px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 246, 238, 0.18);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col {
  min-width: 0;
}

.footer-note {
  max-width: 320px;
  font-family: 'Archer', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(246, 246, 238, 0.65);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.footer-bottom .right {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom .right a {
  margin-left: 0;
}


.footer-brand .footer-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-brand h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.footer-brand h3 small {
  display: block;
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
  margin-top: 4px;
}

.footer-brand p {
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246, 246, 238, 0.6);
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246, 246, 238, 0.18);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: 'Archer', Georgia, serif;
  font-size: 15px;
  color: rgba(246, 246, 238, 0.78);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-col a small {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  padding: 2px 6px;
  background: rgba(254, 80, 0, 0.15);
  border-radius: 999px;
}

.footer-newsletter h4 {
  color: var(--orange);
}

.footer-newsletter p {
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246, 246, 238, 0.7);
  margin-bottom: 16px;
}

.footer-newsletter .nl-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(246, 246, 238, 0.3);
  margin-bottom: 18px;
}

.footer-newsletter input {
  padding: 12px 14px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: rgba(246, 246, 238, 0.4);
  font-style: italic;
}

.footer-newsletter button {
  padding: 0 18px;
  background: var(--orange);
  color: var(--ivory);
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s;
}

.footer-newsletter button:hover {
  background: var(--ivory);
  color: var(--black);
}

.footer-newsletter .badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-newsletter .badge {
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 9px;
  border: 1px solid rgba(246, 246, 238, 0.3);
  color: rgba(246, 246, 238, 0.8);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 36px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 246, 238, 0.6);
  font-weight: 500;
}

.footer-bottom .center {
  text-align: center;
  font-family: 'Archer', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--orange);
}

.footer-bottom .right {
  text-align: right;
}

.footer-bottom .right a {
  margin-left: 22px;
  transition: color 0.25s;
}

.footer-bottom .right a:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom .right,
  .footer-bottom .center {
    text-align: center;
  }
}

/* ============== MOBILE DRAWER ============== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 100;
  padding: 88px 24px 48px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--e-out), transform 0.45s var(--e-out), visibility 0s linear 0.45s;
  overflow-y: auto;
  display: none;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer::before {
  content: "— Menu";
  position: absolute;
  top: 28px;
  left: 24px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s var(--e-out), transform 0.45s var(--e-out), visibility 0s;
}

@media (max-width: 1024px) {
  .mobile-drawer {
    display: block;
  }
}

/* Staggered entrance for drawer contents (only while open) */
.mobile-drawer .nav-list > li,
.mobile-drawer .drawer-cta,
.mobile-drawer .drawer-meta {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--e-out), transform 0.45s var(--e-out);
}

.mobile-drawer.is-open .nav-list > li,
.mobile-drawer.is-open .drawer-cta,
.mobile-drawer.is-open .drawer-meta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.is-open .nav-list > li:nth-child(1) { transition-delay: 0.10s; }
.mobile-drawer.is-open .nav-list > li:nth-child(2) { transition-delay: 0.16s; }
.mobile-drawer.is-open .nav-list > li:nth-child(3) { transition-delay: 0.22s; }
.mobile-drawer.is-open .nav-list > li:nth-child(4) { transition-delay: 0.28s; }
.mobile-drawer.is-open .drawer-cta { transition-delay: 0.34s; }
.mobile-drawer.is-open .drawer-meta { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer,
  .mobile-drawer .nav-list > li,
  .mobile-drawer .drawer-cta,
  .mobile-drawer .drawer-meta { transition-duration: 0.01ms; transition-delay: 0s; }
}

.mobile-drawer .nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-drawer .nav-list>li {
  border-bottom: 1px solid var(--rule);
}

.mobile-drawer .nav-list>li:first-child {
  border-top: 1px solid var(--rule);
}

.mobile-drawer .nav-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--black);
  text-transform: uppercase;
  transition: color 0.2s, padding-left 0.25s var(--e-out);
}

.mobile-drawer .nav-list a:active,
.mobile-drawer .nav-list a:hover {
  color: var(--orange);
  padding-left: 10px;
}

.mobile-drawer .submenu {
  padding: 4px 0 20px 18px;
  display: none;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--rule);
  margin-left: 4px;
}

.mobile-drawer .nav-list>li.is-open .submenu {
  display: flex;
}

.mobile-drawer .submenu a {
  font-family: 'Archer', Georgia, serif;
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 0;
  color: var(--orange);
}

.mobile-drawer .drawer-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--ivory);
  padding: 18px;
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--orange);
  transition: background 0.2s, color 0.2s;
}

.mobile-drawer .drawer-cta:active {
  background: var(--ivory);
  color: var(--orange);
}

.mobile-drawer .drawer-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: 'Archer', Georgia, serif;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
}

/* ============== FX (reveal) ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--e-out), transform 0.7s var(--e-out);
}

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

/* ============== UTILS ============== */
.section-divider {
  height: 0;
  border: none;
  border-top: 1px solid var(--rule);
}

/* ============== HERO STAGE — PHOTO MODE ============== */
.hero-stage--photo {
  background:
    radial-gradient(ellipse at 50% 60%, #f3f1e6 0%, var(--ivory-2) 70%, var(--ivory-3) 100%);
  aspect-ratio: 16 / 9;
}

.hero-stage--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.04);
}

/* ============== PRODUCT IMAGE — PHOTO MODE ============== */
.product-image--photo {
  background:
    radial-gradient(ellipse at 50% 65%, #f3f1e6 0%, var(--ivory) 70%, var(--ivory-2) 100%);
}

.product-image--photo img {
  width: 100%;
  max-width: 100%;
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.22)) contrast(1.02) saturate(1.04);
}

/* ============== MOBILE POLISH ============== */
@media (max-width: 768px) {
  body.drawer-open { overflow: hidden; }

  .ticker-track { gap: 36px; font-size: 9px; padding: 7px 0; }
  .ticker-track span::after { margin-left: 36px; }

  .hero { padding: 32px 0 56px; }
  .hero h1 { font-size: clamp(56px, 14vw, 96px); line-height: 0.92; }
  .hero-grid { gap: 28px; margin-bottom: 36px; }
  .hero-meta p { font-size: 15px; line-height: 1.6; }
  .hero-payoff { font-size: 18px; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }

  .hero-stage { aspect-ratio: 4 / 3; }
  .hero-stage .stage-tag { top: 14px; left: 14px; padding: 6px 10px; font-size: 9px; }
  .hero-stage .stage-coords { right: 14px; bottom: 14px; gap: 10px; font-size: 9px; }

  .hero-stats { gap: 0; }
  .hero-stat { padding: 16px 14px; }
  .hero-stat .num { font-size: 32px; }

  .manifesto, .product, .craft, .heritage, .domestic { padding: 72px 0; }
  .manifesto-text h2, .product h2, .craft-text h2, .heritage h2, .domestic-content h2 {
    font-size: clamp(40px, 9vw, 64px);
  }
  .product-grid { gap: 32px; }
  .product-content .tagline { font-size: 18px; }
  .product-actions { flex-wrap: wrap; gap: 10px; }
  .product-actions .btn-primary,
  .product-actions .btn-outline { width: 100%; justify-content: center; }

  .craft-grid { gap: 40px; }
  .craft-steps .step { padding: 16px 0; }
  .craft-steps .step .ttl { font-size: 16px; }

  .heritage-pt { padding: 24px 0; }

  .domestic-grid { gap: 32px; }
  .notify-form { grid-template-columns: 1fr; gap: 10px; }
  .notify-form button { width: 100%; padding: 14px; }

  .footer { padding: 56px 0 28px; }
  .footer-top { gap: 32px; padding-bottom: 36px; }
  .footer-brand h3 { font-size: 24px; }
  .footer-bottom { padding-top: 24px; font-size: 10px; gap: 10px; }
  .footer-newsletter .nl-form { grid-template-columns: 1fr; }
  .footer-newsletter button { padding: 12px 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(48px, 13vw, 72px); }
  .hero-eyebrow { font-size: 10px; }
  .container { padding: 0 20px; }
  .mobile-drawer { padding: 84px 20px 36px; }
  .mobile-drawer .nav-list a { font-size: 26px; padding: 18px 4px; }
}

/* =================================================================
   PDF REVISIONS — Stephanie
   1) Hero: full headline left, copy right (see index.html markup)
   2) Looser leading on UPPERCASE Anton headlines
   3) Tighter leading on the orange italic (Archer) sentences
   ================================================================= */

/* Hero — give the headline more room on the left column */
.hero-grid {
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
}

/* (2) Increase line spacing for all uppercase black (Anton) headlines */
.t-anton { line-height: 1.02; }
.hero h1 { line-height: 1.06; }
.section-head h2 { line-height: 1.04; }
.manifesto-text h2 { line-height: 1.02; }
.product-content h2 { line-height: 1.0; }
.craft h2 { line-height: 1.02; }
.domestic-content h2 { line-height: 1.02; }
.mega-intro h4 { line-height: 1.02; }

/* (3) Reduce line spacing for the orange italic sentences */
.hero h1 .it,
.section-head h2 .it,
.manifesto-text h2 .it,
.product-content h2 .it,
.craft h2 .it,
.domestic-content h2 .it {
  line-height: 0.73;
  display: inline-block;
}

/* (4) Body copy = Archer Book (400, set on `body` above); leads/intro = Archer Light (300) */
.section-head .lead,
.domestic-content .lead,
.hero-meta p { font-weight: 300; }

.text-subhead { font-size: 120px; }
/* =================================================================
   MOBILE TIDY-UP — only applies ≤768px; desktop (≥769px) unchanged
   ================================================================= */
@media (max-width: 768px) {
  /* Hero must stack in ONE column on mobile.
     (Overrides the non-media .hero-grid 2-col rule from the PDF-revision block.) */
  .hero-grid { grid-template-columns: 1fr; align-items: start; }

  /* Oversized italic subhead ("with purpose.") must fit the viewport, not 120px */
  .text-subhead { font-size: 14vw; line-height: 0.92; }
}

/* Mobile drawer close (×) button */
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  color: var(--black);
  font-family: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
.drawer-close:hover { color: var(--orange); }

@media (max-width: 1024px) {
  /* Hamburger/drawer is active here and the drawer has its own CTA — drop the header one */
  .header-actions .btn-cta { display: none; }
}

@media (max-width: 768px) {
  /* Craft steps: keep number + title clear of the divider lines */
  .craft-steps .step { padding: 16px 10px; }
  /* Heritage points (Precision / Craft / Character …): clear the big title from the top border */
  .heritage-pt { padding: 16px 10px; }
  /* "A note from the workshop": let the black box grow so the quote isn't clipped */
  .manifesto-aside { aspect-ratio: auto; padding: 32px 26px; }
  .manifesto-aside .quote { position: static; justify-content: flex-start; gap: 22px; }
}
