:root {
  --ink-950: #0b1326;
  --ink-900: #121f37;
  --ink-800: #1f2f4f;
  --ink-600: #43567a;
  --foam-50: #fdfbf8;
  --foam-100: #f7f1e7;
  --foam-200: #ebdfcf;
  --sand-500: #c18b5f;
  --sage-500: #738d72;
  --sky-500: #4d74b4;
  --accent-500: #b45c45;
  --text-main: #1a2335;
  --text-muted: #5c667a;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 20px 50px rgba(17, 27, 45, 0.08);
  --shadow-card: 0 14px 34px rgba(17, 27, 45, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 0% 0%, #fffdf9 0%, #f7f2e9 35%, #f5f7fb 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: var(--ink-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-600);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sand-500), var(--accent-500));
}

.section {
  padding: 6.5rem 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink-950);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(247, 241, 231, 0.8);
  border-bottom: 1px solid rgba(18, 31, 55, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(145deg, var(--ink-900), var(--sky-500));
  box-shadow: 0 8px 18px rgba(29, 50, 86, 0.28);
}

.brand-text {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-950);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.3rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
}

.site-nav ul a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-900);
  padding: 4px 0;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sand-500), var(--accent-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink-800);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 31, 55, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-900);
  margin: 4px 0;
  border-radius: 999px;
}

.hero {
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(193, 139, 95, 0.26), rgba(193, 139, 95, 0));
}

.hero::after {
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(77, 116, 180, 0.26), rgba(77, 116, 180, 0));
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink-950);
}

.hero-lead {
  margin: 1.3rem 0 0;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink-900), var(--sky-500));
  color: var(--white);
  box-shadow: 0 12px 20px rgba(33, 55, 91, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(18, 31, 55, 0.24);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.78);
}

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

.hero-metrics li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 31, 55, 0.08);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(17, 27, 45, 0.06);
}

.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-900);
}

.metric-label {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.hero-main-image,
.hero-support-image {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-main-image {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 11;
}

.hero-main-image img,
.hero-support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-support-image {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
}

.support-top {
  position: absolute;
  top: -1.5rem;
  right: 1rem;
  width: min(38%, 180px);
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  border: 5px solid rgba(255, 255, 255, 0.8);
}

.support-left {
  border-radius: 22px 10px 26px 18px;
}

.support-right {
  border-radius: 10px 22px 18px 26px;
}

.value-strip {
  padding: 1.4rem 0;
  background: linear-gradient(115deg, var(--ink-950), var(--ink-800));
  color: var(--white);
}

.value-strip-content {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.value-strip-content > p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.value-list li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.products {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.product-stage {
  margin-bottom: 2.2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 31, 55, 0.09);
  box-shadow: var(--shadow-soft);
}

.stage-image {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f3ea, #ebe1d3);
  padding: 1rem;
}

.stage-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.stage-copy h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.18;
  color: var(--ink-950);
}

.stage-copy > p {
  margin: 0;
  color: var(--text-muted);
}

.stage-label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand-500);
}

.stage-copy ul {
  margin: 1.15rem 0 1.3rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.stage-copy li {
  position: relative;
  padding-left: 1.1rem;
  color: #4f596e;
}

.stage-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--sand-500), var(--accent-500));
}

.stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.stage-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--foam-100);
  border: 1px solid rgba(18, 31, 55, 0.08);
  color: var(--ink-900);
  font-size: 0.8rem;
  font-weight: 600;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 31, 55, 0.08);
  box-shadow: var(--shadow-soft);
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--tone, var(--sky-500));
}

.product-card figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.product-content {
  padding: 1rem 1rem 1.15rem;
}

.product-content h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink-900);
}

.product-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.tone-caramel {
  --tone: #bd7f51;
}

.tone-sage {
  --tone: #728f73;
}

.tone-ash {
  --tone: #8a92a4;
}

.tone-cream {
  --tone: #c5a883;
}

.tone-night {
  --tone: #556ea6;
}

.spaces {
  background: var(--ink-950);
  color: var(--white);
}

.spaces .eyebrow {
  color: var(--foam-200);
}

.spaces .section-header h2 {
  color: var(--white);
}

.spaces .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

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

.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 240px;
  grid-column: span 4;
  background: #192644;
}

.space-card.large {
  grid-column: span 7;
  min-height: 500px;
}

.space-card.wide {
  grid-column: span 8;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 30, 0.08), rgba(10, 17, 30, 0.72));
}

.space-card-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.space-card-content h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.3;
}

.space-card-content p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.manufacturing {
  background: linear-gradient(130deg, #152644 0%, #0f1d34 58%, #1c3159 100%);
  color: var(--white);
}

.manufacturing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.manufacturing-copy .eyebrow {
  color: var(--foam-200);
}

.manufacturing-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.2;
}

.manufacturing-copy > p {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.82);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.85rem;
}

.process-list li {
  position: relative;
  padding: 0.95rem 0.95rem 0.95rem 3.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(130deg, var(--sand-500), var(--accent-500));
  color: var(--white);
}

.process-list h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--white);
}

.process-list p {
  margin: 0.35rem 0 0;
  font-size: 0.89rem;
  color: rgba(255, 255, 255, 0.83);
}

.ops-metrics {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.ops-metrics div {
  border-radius: 14px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.ops-metrics span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.ops-metrics p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.gallery-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
  box-shadow: 0 14px 28px rgba(6, 12, 21, 0.28);
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 390px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.story-image {
  margin: 0;
  border-radius: 34px 18px 34px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.story-copy h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-950);
}

.story-copy > p {
  margin: 0;
  color: var(--text-muted);
}

.story-copy > p + p {
  margin-top: 1rem;
}

.principles {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.principles article {
  border-radius: 16px;
  padding: 0.95rem;
  background: var(--foam-50);
  border: 1px solid rgba(18, 31, 55, 0.08);
}

.principles h3 {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  color: var(--ink-900);
}

.principles p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.proof {
  background: var(--foam-100);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

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

.proof-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.proof-image.large {
  grid-column: span 2;
  min-height: 300px;
}

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

.testimonial-grid {
  display: grid;
  gap: 0.85rem;
}

.testimonial-card {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 31, 55, 0.09);
  box-shadow: 0 8px 20px rgba(17, 27, 45, 0.06);
}

.quote {
  margin: 0;
  color: #3f4a5f;
  font-size: 0.95rem;
  font-style: italic;
}

.author {
  margin: 0.85rem 0 0;
  font-weight: 700;
  color: var(--ink-900);
  font-size: 0.91rem;
}

.role {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.contact {
  background: linear-gradient(130deg, #121f37 0%, #0d1729 100%);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.2rem;
}

.contact-panel {
  padding: 1.7rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 34px rgba(8, 13, 24, 0.28);
}

.contact-panel .eyebrow {
  color: var(--foam-200);
}

.contact-panel h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.contact-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.contact-list {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list div {
  border-radius: 14px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-list dt {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.25rem;
}

.contact-list dd {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.95);
}

.contact-list a {
  color: rgba(255, 255, 255, 0.95);
}

.contact-form {
  border-radius: 24px;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  box-shadow: 0 22px 34px rgba(7, 11, 21, 0.3);
}

.contact-form h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--ink-950);
}

.contact-form label {
  display: block;
  margin: 0.7rem 0 0.35rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-900);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 31, 55, 0.16);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(77, 116, 180, 0.35);
  border-color: rgba(77, 116, 180, 0.6);
}

.contact-form button {
  margin-top: 1rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(130deg, var(--ink-900), var(--sky-500));
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: linear-gradient(130deg, var(--ink-800), #5b7ebb);
}

.site-footer {
  background: #070d1a;
  color: rgba(255, 255, 255, 0.85);
  padding: 3.2rem 0 1.2rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1.5rem;
}

.footer-layout h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-layout p {
  margin: 0.8rem 0 0;
  max-width: 48ch;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-layout ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-layout li a {
  font-size: 0.87rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.73);
}

.footer-layout li a:hover,
.footer-layout li a:focus-visible {
  color: var(--white);
}

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

.footer-bottom {
  margin-top: 1.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .space-card {
    grid-column: span 6;
  }

  .space-card.large,
  .space-card.wide {
    grid-column: span 12;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .manufacturing-layout,
  .story-layout,
  .proof-layout,
  .contact-layout,
  .footer-layout,
  .product-stage {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .hero-visual {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-main-image {
    aspect-ratio: 16 / 10;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .manufacturing-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card.tall {
    grid-row: span 1;
    grid-column: span 3;
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100% - 2rem));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(18, 31, 55, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 32px rgba(17, 27, 45, 0.14);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding: 5rem 0 4.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.8rem 0;
  }

  .section-header {
    margin-bottom: 2.3rem;
  }

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

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

  .gallery-card.tall {
    grid-column: span 2;
  }

  .ops-metrics {
    grid-template-columns: 1fr;
  }

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

  .proof-images {
    grid-template-columns: 1fr;
  }

  .proof-image.large {
    grid-column: span 1;
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

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

  .space-card,
  .space-card.large,
  .space-card.wide {
    grid-column: span 12;
  }

  .support-top {
    width: 130px;
    top: -1rem;
    right: 0.6rem;
  }

  .contact-form,
  .contact-panel {
    padding: 1.2rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
