:root {
  --bg: #f4f1eb;
  --paper: #fffdf9;
  --ink: #13201d;
  --muted: #68706a;
  --line: rgba(19, 32, 29, 0.12);
  --accent: #d89a55;
  --accent-dark: #b87832;
  --dark: #17362f;
  --dark-2: #102722;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(18, 18, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wordmark-more {
  color: var(--accent-dark);
}

.wordmark-modular {
  color: var(--dark);
}

.wordmark-inline {
  vertical-align: baseline;
  white-space: nowrap;
}

.brand em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  min-width: 68px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.language-flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(19, 32, 29, 0.1);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu button {
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-pressed='true'] {
  background: rgba(216, 154, 85, 0.14);
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  animation: hero-pan 28s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 28, 24, 0.8) 0%, rgba(13, 28, 24, 0.58) 34%, rgba(13, 28, 24, 0.16) 72%),
    linear-gradient(180deg, rgba(4, 12, 10, 0.24) 0%, rgba(4, 12, 10, 0) 48%, rgba(4, 12, 10, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 78px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.split-copy h2,
.cta-band h2,
.contact h2,
.page-hero h1,
.process-callout h2,
.catalogue-item h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(42px, 6vw, 72px);
}

.typed-word {
  display: inline-flex;
  align-items: flex-end;
  color: var(--accent);
  min-width: 0;
}

.typed-word::after {
  content: '';
  display: inline-block;
  margin-left: 0.08em;
  width: 2px;
  height: 0.8em;
  background: currentColor;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

@keyframes hero-pan {
  from {
    object-position: 68% center;
  }

  to {
    object-position: 54% center;
  }
}

@keyframes hero-pan-mobile {
  from {
    object-position: 72% center;
  }

  to {
    object-position: 56% center;
  }
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 28px rgba(184, 120, 50, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.14);
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -34px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.intro,
.projects,
.models,
.factories,
.process-preview,
.manufacturing-network,
.audiences,
.markets,
.testimonials,
.split,
.faq,
.contact {
  padding-top: 128px;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.contact h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.intro > p,
.split-copy p,
.contact-inner > div p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-story {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background:
    linear-gradient(135deg, rgba(216, 154, 85, 0.14), rgba(255, 253, 249, 0.92)),
    var(--paper);
  box-shadow: 0 18px 45px rgba(18, 18, 16, 0.06);
}

.intro-story span {
  display: block;
}

.intro-story strong {
  color: var(--ink);
}

.section-heading {
  margin-bottom: 30px;
}

.projects {
  padding-top: 128px;
}

.project-grid,
.network-grid,
.testimonial-grid,
.steps {
  display: grid;
  gap: 22px;
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card,
.testimonial-grid article {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(18, 18, 16, 0.08);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.15 / 0.82;
  object-fit: cover;
}

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

.project-card span,
.network-grid span,
.testimonial-grid span {
  display: block;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3,
.network-grid h3 {
  margin: 10px 0 10px;
  font-size: 22px;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.model-gallery {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.gallery-viewport {
  overflow: hidden;
  padding: 10px 0 18px;
}

.card-grid {
  display: flex;
  gap: 22px;
  align-items: stretch;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.model-card {
  display: block;
  flex: 0 0 clamp(300px, 54vw, 560px);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(18, 18, 16, 0.08);
  opacity: 0.56;
  transform: scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.model-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(18, 18, 16, 0.08);
}

.gallery-button:hover {
  color: var(--accent-dark);
}

.gallery-button:disabled {
  cursor: default;
  opacity: 0.4;
}

.model-card:hover,
.factory-grid article:hover,
.benefits article:hover,
.audiences article:hover {
  transform: translateY(-4px);
}

.model-card img {
  width: 100%;
  aspect-ratio: 1.15 / 0.82;
  object-fit: cover;
}

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

.model-card h3,
.steps h3,
.benefits h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.model-card p,
.benefits p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-specs span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(163, 108, 63, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.model-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
}

.model-card li::before {
  content: '—';
  margin-right: 8px;
  color: var(--accent);
}

.audiences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.process-preview {
  padding-top: 128px;
}

.steps {
  grid-template-columns: repeat(5, 1fr);
}

.steps article {
  padding: 22px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.steps span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(216, 154, 85, 0.18);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.factory-grid article {
  min-height: 150px;
  padding: 24px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.factory-grid strong,
.factory-grid span {
  display: block;
}

.factory-grid strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.factory-grid span {
  color: var(--muted);
}

.factory-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.manufacturing-network {
  padding-top: 128px;
}

.network-grid {
  grid-template-columns: repeat(3, 1fr);
}

.network-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}

.network-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.audiences article {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.audiences h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.audiences p:last-child {
  margin: 0;
  color: var(--muted);
}

.markets {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
}

.markets-summary h2 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.markets-summary p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.country-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 700;
}

.country-list img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(19, 32, 29, 0.1);
}

.testimonials {
  padding-top: 128px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid article {
  padding: 24px;
}

.testimonial-grid p {
  margin: 0 0 18px;
  font-size: 18px;
}

.testimonial-grid strong {
  display: block;
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.split-copy p {
  margin-top: 18px;
}

.benefits {
  display: grid;
  gap: 16px;
}

.benefits article {
  padding: 24px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.cta-band {
  margin-top: 110px;
  padding: 88px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.cta-band .shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 180ms ease, transform 180ms ease;
}

.faq details:hover {
  border-color: rgba(19, 32, 29, 0.22);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  margin-top: 128px;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(216, 154, 85, 0.2), transparent 34%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.contact-inner {
  display: grid;
  gap: 28px;
}

.contact-inner > div {
  max-width: 760px;
}

.contact-inner > div p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-cta .contact-inner {
  align-items: start;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 34px;
  padding-top: 56px;
}

.contact-page-layout > div p {
  color: var(--muted);
}

.contact-page-layout h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
}

.contact-disclosure {
  align-self: start;
  justify-self: start;
}

.contact-disclosure summary {
  list-style: none;
  cursor: pointer;
}

.contact-disclosure summary::-webkit-details-marker {
  display: none;
}

.contact-disclosure[open] summary {
  margin-bottom: 16px;
}

.contact-disclosure[open] form {
  animation: panel-fade 240ms ease both;
}

@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(18, 18, 16, 0.08);
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

form .button {
  justify-self: start;
}

.form-note {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-pending {
  color: var(--muted);
}

.form-status.is-success {
  color: #1d7a48;
}

.form-status.is-error {
  color: #b03a2e;
}

.site-footer nav,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.site-footer nav {
  gap: 18px;
}

.site-footer nav a {
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer nav a:hover {
  color: var(--accent-dark);
}

.whatsapp-end {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 42px;
}

.whatsapp-button {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.24);
}

.whatsapp-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: inherit;
}

.site-footer .footer-contact {
  font-size: 12px;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.legal-back {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.legal-shell {
  max-width: 760px;
  padding: 110px 0 96px;
}

.legal-shell h1,
.legal-shell h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.legal-shell h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 58px);
}

.legal-shell h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.legal-shell h3 {
  margin: 26px 0 10px;
  font-size: 19px;
}

.legal-shell > p,
.legal-shell section p {
  color: var(--muted);
  font-size: 17px;
}

.legal-shell section {
  margin-top: 34px;
}

.legal-shell a {
  color: var(--accent-dark);
}

.legal-shell ol,
.legal-shell ul {
  color: var(--muted);
  padding-left: 22px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
  text-decoration: none;
  font-weight: 800;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.inner-page {
  min-height: 100vh;
}

.inner-shell {
  padding-top: 150px;
  padding-bottom: 110px;
}

.page-hero {
  max-width: 860px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 60px);
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.catalogue-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.catalogue-filters article {
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.catalogue-filters strong,
.catalogue-filters span {
  display: block;
}

.catalogue-filters strong {
  margin-bottom: 8px;
}

.catalogue-filters span {
  color: var(--muted);
}

.catalogue-list {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.catalogue-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(18, 18, 16, 0.08);
}

.catalogue-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  object-fit: cover;
}

.catalogue-item h2 {
  margin: 8px 0 16px;
  font-size: clamp(30px, 3vw, 40px);
}

.price-band {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.price-band strong {
  font-size: 20px;
}

.price-band span {
  color: var(--muted);
}

.catalogue-item dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.catalogue-item dl div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(216, 154, 85, 0.09);
}

.catalogue-item dt {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogue-item dd {
  margin: 0;
  font-weight: 700;
}

.catalogue-item ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
  margin-top: 48px;
}

.about-story h2,
.about-grid h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.about-story p,
.about-grid p {
  margin: 0;
  color: var(--muted);
}

.about-story div:last-child {
  display: grid;
  gap: 16px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.about-metrics article,
.about-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}

.about-metrics strong,
.about-metrics span {
  display: block;
}

.about-metrics strong {
  margin-bottom: 6px;
  font-size: 24px;
}

.about-metrics span {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-grid article {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}

.timeline h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.timeline p {
  margin: 0 0 10px;
  color: var(--muted);
}

.timeline strong {
  color: var(--accent-dark);
}

.process-callout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.process-callout h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-shell li + li {
  margin-top: 8px;
}

.legal-shell table {
  display: block;
  width: 100%;
  margin-top: 16px;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  font-size: 15px;
}

.legal-shell th,
.legal-shell td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.legal-shell th {
  background: rgba(216, 154, 85, 0.14);
  color: var(--ink);
  font-weight: 800;
}

.legal-shell tbody tr:last-child td {
  border-bottom: 0;
}

.legal-shell blockquote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: rgba(216, 154, 85, 0.1);
}

.legal-shell blockquote p {
  margin: 0;
}

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

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

@media (max-width: 1024px) {
  .hero,
  .hero-content {
    min-height: 700px;
  }

  .country-list,
  .project-grid,
  .network-grid,
  .testimonial-grid,
  .catalogue-filters,
  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .audiences,
  .markets,
  .split,
  .about-story {
    grid-template-columns: 1fr;
  }

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

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

  .catalogue-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    inset: 14px 14px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 24px;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 253, 249, 0.94);
  }

  .brand {
    min-width: 0;
    justify-self: start;
  }

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .menu-toggle::before {
    content: '☰';
    font-size: 18px;
    line-height: 1;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

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

  .site-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 10px 12px;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 124px;
    padding-bottom: 96px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero > img {
    object-position: 72% center;
    animation: hero-pan-mobile 28s ease-in-out infinite alternate;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 28, 24, 0.58) 0%, rgba(13, 28, 24, 0.2) 34%, rgba(13, 28, 24, 0.74) 100%),
      linear-gradient(90deg, rgba(13, 28, 24, 0.72) 0%, rgba(13, 28, 24, 0.3) 100%);
  }

  .hero-actions,
  .trust-strip,
  form {
    grid-template-columns: 1fr;
  }

  .header-actions {
    order: 0;
  }

  .language-toggle {
    min-width: 68px;
    min-height: 46px;
  }

  .language-menu {
    min-width: 142px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    min-height: 48px;
  }

  .trust-strip {
    margin-top: 0;
    border-radius: 0;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .intro,
  .models,
  .factories,
  .audiences,
  .markets,
  .split,
  .faq {
    padding-top: 88px;
  }

  .projects,
  .process-preview,
  .manufacturing-network,
  .testimonials {
    padding-top: 88px;
  }

  .contact {
    margin-top: 88px;
    padding: 68px 0 76px;
  }

  .cta-band {
    margin-top: 76px;
    padding: 68px 0;
  }

  .audiences h3 {
    font-size: 24px;
  }

  .model-card div,
  .benefits article,
  .audiences article,
  .factory-grid article,
  form {
    padding: 20px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .intro > p,
  .split-copy p,
  .contact-inner > div p,
  .factory-note {
    font-size: 16px;
  }

  .markets {
    gap: 24px;
  }

  .country-list {
    justify-content: flex-start;
  }

  .model-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-button {
    position: absolute;
    z-index: 2;
    top: calc(50% - 26px);
  }

  .gallery-prev {
    left: -2px;
  }

  .gallery-next {
    right: -2px;
  }

  .gallery-viewport {
    padding-inline: 34px;
  }

  .model-card {
    flex-basis: min(78vw, 420px);
  }

  .site-footer {
    display: grid;
    padding-bottom: 24px;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
  }

  .contact-disclosure {
    width: 100%;
  }

  .contact-disclosure summary {
    width: 100%;
  }

  .legal-header {
    display: grid;
    gap: 18px;
  }

  .legal-shell {
    padding: 72px 0 72px;
  }

  .project-grid,
  .network-grid,
  .testimonial-grid,
  .catalogue-filters,
  .about-metrics,
  .about-grid,
  .steps,
  .catalogue-item dl {
    grid-template-columns: 1fr;
  }

  .inner-shell {
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .page-hero p:last-child {
    font-size: 16px;
  }

  .process-callout {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  body,
  .button,
  .model-card,
  .factory-grid article,
  .benefits article,
  .audiences article,
  .faq details,
  .whatsapp-button,
  .reveal {
    transition: none;
  }

  .typed-word::after {
    animation: none;
  }

  .hero > img {
    animation: none;
    object-position: center;
  }
}
