:root {
  --bg: #050607;
  --bg-deep: #030405;
  --surface-1: #0b0d0f;
  --surface-2: #111417;
  --surface-3: #181c1f;
  --paper: #eee9df;
  --paper-soft: #f7f3eb;
  --ink: #141719;
  --ink-muted: #5d6468;
  --text-strong: #f2efe8;
  --text: #d6d8d7;
  --text-muted: #a2a8a9;
  --brass: #c09a55;
  --brass-light: #e0c484;
  --brass-dark: #8b6a32;
  --steel: #c2c8ca;
  --border: rgba(242, 239, 232, 0.15);
  --border-soft: rgba(242, 239, 232, 0.09);
  --border-strong: rgba(185, 149, 93, 0.44);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 28px 72px rgba(0, 0, 0, 0.44);
  --radius-xs: 3px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --page-gutter: clamp(20px, 5vw, 64px);
  --section-space: clamp(88px, 9vw, 136px);
  --container: 1280px;
  --nav-height: 82px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--bg);
  color: var(--text-strong);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(1, 2, 3, 0.72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms var(--ease), visibility 220ms;
}

body.menu-open::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

::selection {
  background: var(--brass);
  color: var(--bg-deep);
}

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

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

button {
  color: inherit;
}

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

figure,
p,
h1,
h2,
h3,
ul,
dl,
dd {
  margin: 0;
}

ul,
dl {
  padding: 0;
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(214, 189, 138, 0.16);
}

:where(main, section, article)[tabindex="-1"]:focus {
  outline: none;
}

#produtos,
#engate-flexivel,
#valvula-retencao,
#anel-vedacao,
#aplicacoes,
#materiais,
#duvidas,
#contato {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: var(--text-strong);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.section-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
}

/* Header and navigation */
.hero-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--nav-height);
  isolation: isolate;
}

.hero-nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 4, 5, 0.82), rgba(3, 4, 5, 0));
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

body.is-scrolled .hero-nav::before,
body.menu-open .hero-nav::before {
  border-bottom-color: var(--border-soft);
  background: rgba(6, 7, 8, 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
}

.brand span {
  display: none;
}

.menu-button {
  position: relative;
  z-index: 104;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--brass-light);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 160ms ease;
}

.menu-button span {
  top: 23px;
}

.menu-button::before {
  top: 17px;
}

.menu-button::after {
  top: 29px;
}

body.menu-open .menu-button span {
  opacity: 0;
}

body.menu-open .menu-button::before {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-button::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  z-index: 103;
  top: calc(var(--nav-height) + 10px);
  right: var(--page-gutter);
  width: min(360px, calc(100% - 40px));
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(13, 15, 17, 0.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
}

body.menu-open .site-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.site-menu a {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.site-menu a::after {
  content: "→";
  color: var(--brass);
  font-size: 0.9rem;
  transition: transform 180ms var(--ease);
}

.site-menu a:hover,
.site-menu a[aria-current="location"] {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-strong);
}

.site-menu a:hover::after {
  transform: translateX(3px);
}

.no-js .menu-button {
  display: none;
}

.no-js .site-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 740px;
  background: var(--bg-deep);
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.97) 0%, rgba(3, 4, 5, 0.88) 31%, rgba(3, 4, 5, 0.4) 59%, rgba(3, 4, 5, 0.08) 82%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.22), transparent 32%, transparent 66%, rgba(3, 4, 5, 0.94));
}

.hero-stage::after {
  z-index: 3;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.45);
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 50%;
  filter: saturate(0.72) contrast(1.1) brightness(0.72);
  transform: scale(1.025);
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: 52%;
  left: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
  width: min(760px, calc(100% - (var(--page-gutter) * 2)));
  transform: translateY(-50%);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--brass-light);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}

.hero-copy h1 {
  max-width: 750px;
  margin-top: 22px;
  color: var(--text-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 7.4vw, 7.35rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.042em;
  text-wrap: balance;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
}

.hero-copy h1 em {
  color: var(--brass-light);
  font-style: normal;
  font-weight: inherit;
}

.hero-subtitle {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(242, 239, 232, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.76;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-cta,
.contact-action {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 24px;
  border: 1px solid var(--brass);
  border-radius: var(--radius-sm);
  background: var(--brass);
  color: #090909;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 15px 36px rgba(185, 149, 93, 0.13);
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.hero-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 200ms var(--ease);
}

.hero-cta-secondary {
  border-color: rgba(242, 239, 232, 0.24);
  background: rgba(6, 7, 8, 0.48);
  color: var(--text-strong);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-media-note {
  position: absolute;
  z-index: 5;
  right: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
  bottom: 34px;
  min-width: 218px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid rgba(224, 196, 132, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(5, 6, 7, 0.55);
  color: rgba(242, 239, 232, 0.64);
  font-size: 0.69rem;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-media-note strong {
  color: var(--text-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-media-note small {
  color: var(--brass-light);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brass-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 180ms var(--ease);
}

/* Proof strip */
.proof-strip {
  padding: 0 var(--page-gutter);
  border-block: 1px solid var(--border-soft);
  background: linear-gradient(90deg, #090b0c, var(--surface-1) 50%, #090b0c);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.proof-grid li {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 26px clamp(18px, 2.3vw, 32px);
  border-left: 1px solid var(--border-soft);
}

.proof-grid li:last-child {
  border-right: 1px solid var(--border-soft);
}

.proof-grid li > span {
  align-self: start;
  padding-top: 2px;
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.proof-grid li > div {
  display: grid;
  gap: 6px;
}

.proof-grid h3 {
  color: var(--text-strong);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.4;
}

.proof-grid p {
  color: var(--text-muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

/* Shared sections */
.section {
  position: relative;
  padding: var(--section-space) var(--page-gutter);
  overflow: clip;
}

.section-head,
.applications-head,
.faq-head {
  position: relative;
  z-index: 2;
}

.section-title {
  color: var(--text-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 5.25vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.section-title span {
  color: var(--brass-light);
}

.section-copy,
.materials-copy > p {
  max-width: 650px;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.8;
  text-wrap: pretty;
}

/* Products */
.products-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(192, 154, 85, 0.07), transparent 31rem),
    var(--bg);
}

.products-section .section-head {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(52px, 6.5vw, 86px);
}

.products-section .section-title {
  max-width: 980px;
}

.products-section .section-copy {
  margin-left: 0;
}

.product-stack {
  display: grid;
  gap: 28px;
}

.product-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(430px, 1.16fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
  padding: clamp(34px, 4.6vw, 66px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(192, 154, 85, 0.07), transparent 24rem),
    linear-gradient(145deg, rgba(17, 20, 23, 0.96), rgba(8, 10, 11, 0.96));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
}

.product-row:nth-child(even) {
  grid-template-columns: minmax(430px, 1.16fr) minmax(300px, 0.84fr);
  background:
    radial-gradient(circle at 10% 14%, rgba(194, 200, 202, 0.06), transparent 25rem),
    linear-gradient(215deg, rgba(17, 20, 23, 0.96), rgba(8, 10, 11, 0.96));
}

.product-row:nth-child(even) .product-copy {
  order: 2;
}

.product-row:nth-child(even) .product-media {
  order: 1;
}

.product-copy {
  max-width: 510px;
}

.product-number {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.product-number::after {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--brass-dark);
}

.product-copy h3 {
  margin-top: 22px;
  color: var(--text-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.product-lead {
  max-width: 490px;
  margin-top: 21px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.76;
}

.product-facts {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid var(--border);
}

.product-facts > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.product-facts dt {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.product-facts dd {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
}

.product-link {
  width: max-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 29px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.product-link svg {
  width: 20px;
  fill: none;
  stroke: var(--brass-light);
  stroke-width: 1.6;
  transition: transform 180ms var(--ease);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.product-media::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 30px;
  height: 30px;
  border-right: 1px solid var(--brass-dark);
  border-bottom: 1px solid var(--brass-dark);
  pointer-events: none;
}

.product-media img {
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}

.product-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08) brightness(0.88);
}

.product-media-light {
  border-color: rgba(20, 23, 25, 0.13);
  background: radial-gradient(circle at 50% 38%, #fff 0%, var(--paper-soft) 56%, #d8dddf 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.product-media-object img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(0.86) contrast(1.04) drop-shadow(0 24px 25px rgba(26, 38, 54, 0.16));
}

.product-media-ring img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: none;
}

.product-media-ring {
  background: #fff;
}

.product-media-object:hover img {
  transform: none;
}

.product-media figcaption {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(6, 7, 8, 0.66);
  color: rgba(242, 239, 232, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.product-media-light figcaption {
  border-color: rgba(20, 23, 25, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #3b4347;
}

/* Applications */
.applications-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 0%, rgba(192, 154, 85, 0.12), transparent 24rem),
    var(--paper);
}

.applications-section .eyebrow {
  color: var(--brass-dark);
}

.applications-section .eyebrow::before {
  background: var(--brass-dark);
}

.applications-section .section-title {
  max-width: 1000px;
  color: var(--ink);
}

.applications-section .section-title span {
  color: var(--brass-dark);
}

.applications-section .section-copy {
  color: var(--ink-muted);
}

.applications-head {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: 22px 52px;
}

.applications-head .section-title {
  grid-column: 1 / -1;
}

.applications-head .section-copy {
  grid-column: 2;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(52px, 6vw, 78px);
  border: 0;
}

.application-card {
  min-height: 290px;
  display: grid;
  align-content: end;
  gap: 15px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(20, 23, 25, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 50px rgba(20, 23, 25, 0.06);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.application-card:last-child {
  border-right: 1px solid rgba(20, 23, 25, 0.13);
}

.application-card > span {
  align-self: start;
  margin-bottom: auto;
  color: var(--brass-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.application-card h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.application-card p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Materials */
.materials-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(194, 200, 202, 0.07), transparent 27rem),
    linear-gradient(180deg, #0a0c0e, var(--surface-1));
}

.materials-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.materials-copy {
  display: grid;
  gap: 24px;
}

.materials-copy .section-title {
  font-size: clamp(3.15rem, 5.4vw, 5.25rem);
}

.materials-note {
  padding-left: 16px;
  border-left: 2px solid var(--brass-dark);
  color: var(--text-muted) !important;
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
}

.material-visual {
  position: relative;
  min-height: 480px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #0b0d0f;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.material-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.02), rgba(5, 6, 7, 0.72)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.74), transparent 68%);
}

.material-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 22px;
  border: 1px solid rgba(194, 200, 202, 0.11);
  border-radius: var(--radius-sm);
}

.material-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
  filter: saturate(0.72) contrast(1.1) brightness(0.82);
}

.material-visual-copy {
  position: absolute;
  z-index: 2;
  inset: auto 42px 38px;
  display: grid;
  justify-items: start;
}

.material-visual-copy > span {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.material-visual-copy > strong {
  color: var(--text-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(6.5rem, 11vw, 9.5rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
}

.material-visual-copy > small {
  margin-top: 15px;
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.material-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4.2vw, 58px);
  padding-top: clamp(44px, 5vw, 68px);
  border-top: 1px solid var(--border);
  list-style: none;
}

.material-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 14px;
}

.material-points li > span {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.material-points li > div {
  display: grid;
  gap: 9px;
}

.material-points h3 {
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.material-points p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

/* FAQ */
.faq-section {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(430px, 1.22fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.faq-head {
  position: sticky;
  top: calc(var(--nav-height) + 34px);
  display: grid;
  gap: 24px;
}

.faq-head .section-title {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.faq-list summary {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  color: var(--text-strong);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 1px;
  background: var(--brass-light);
  transition: transform 180ms var(--ease);
}

.faq-list summary > span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--brass-light);
}

.faq-list details > p {
  max-width: 660px;
  padding: 0 52px 24px 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-list details > p a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(214, 189, 138, 0.48);
  text-underline-offset: 3px;
}

.faq-list details > p a:hover {
  color: var(--brass-light);
  text-decoration-color: currentColor;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 78% 13%, rgba(185, 149, 93, 0.07), transparent 28rem),
    linear-gradient(180deg, var(--bg-deep), #090b0c);
}

.contact-layout .section-head {
  width: min(900px, 100%);
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-inline: auto;
  text-align: center;
}

.contact-layout .section-copy {
  max-width: 650px;
}

.contact-panel {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  margin: clamp(52px, 6vw, 78px) auto 0;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 154, 85, 0.07), transparent 24rem),
    rgba(13, 15, 17, 0.9);
  box-shadow: var(--shadow-md);
}

.contact-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(185, 149, 93, 0.06);
}

.contact-card-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--brass-light);
  stroke-width: 1.4;
}

.contact-card > h3 {
  color: var(--text-strong);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.contact-card-subtitle {
  margin-top: 8px;
  color: var(--brass-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.contact-data {
  width: 100%;
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--border);
  font-style: normal;
}

.contact-line {
  min-height: 67px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.contact-line > svg {
  width: 18px;
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.45;
}

.contact-line > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.contact-line span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.contact-line strong,
.contact-line a {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.48;
}

.contact-line a {
  text-decoration: underline;
  text-decoration-color: rgba(214, 189, 138, 0.45);
  text-underline-offset: 3px;
}

.contact-line a:hover {
  color: var(--brass-light);
  text-decoration-color: currentColor;
}

.contact-action {
  width: 100%;
  margin-top: auto;
}

.contact-action span {
  font-size: 1rem;
  transition: transform 180ms var(--ease);
}

.contact-divider {
  width: 1px;
  min-height: 100%;
  background: linear-gradient(transparent, var(--border), var(--border), transparent);
}

/* Footer */
.site-footer {
  padding: 0 var(--page-gutter) 34px;
  background: #07090a;
}

.contact-footer {
  width: min(100%, 1400px);
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) repeat(4, minmax(130px, 0.75fr));
  gap: clamp(28px, 4vw, 54px);
  margin-inline: auto;
  padding: 52px 0 44px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: auto;
  height: 118px;
  object-fit: contain;
}

.footer-brand span {
  display: none;
}

.footer-brand p {
  max-width: 300px;
  color: var(--text-muted);
  font-size: 0.81rem;
  line-height: 1.7;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-col strong {
  margin-bottom: 5px;
  color: var(--text-strong);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  width: max-content;
  max-width: 100%;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 180ms var(--ease), text-decoration-color 180ms var(--ease);
}

.footer-col a:hover {
  color: var(--brass-light);
  text-decoration-color: currentColor;
}

.footer-bottom {
  width: min(100%, 1400px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.footer-bottom small {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .menu-button:hover {
    border-color: var(--border-strong);
    background: rgba(185, 149, 93, 0.08);
    transform: translateY(-1px);
  }

  .hero-cta:hover,
  .contact-action:hover {
    border-color: var(--brass-light);
    background: var(--brass-light);
    box-shadow: 0 18px 42px rgba(185, 149, 93, 0.2);
    transform: translateY(-2px);
  }

  .hero-cta-secondary:hover {
    border-color: rgba(242, 239, 232, 0.4);
    background: rgba(242, 239, 232, 0.08);
    box-shadow: none;
  }

  .hero-cta:hover svg,
  .product-link:hover svg,
  .contact-action:hover span {
    transform: translateX(4px);
  }

  .scroll-cue:hover svg {
    transform: translateY(3px);
  }

  .product-link:hover {
    border-color: var(--brass-light);
    color: var(--brass-light);
  }

  .product-media:hover img {
    transform: scale(1.018);
  }

  .application-card:hover {
    border-color: rgba(139, 106, 50, 0.34);
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
  }
}

/* Desktop navigation */
@media (min-width: 1024px) {
  .menu-button {
    display: none;
  }

  .site-menu {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-menu a {
    min-height: 42px;
    padding-inline: 13px;
  }

  .site-menu a::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 5px;
    left: 13px;
    width: auto;
    height: 1px;
    background: var(--brass);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .site-menu a:hover,
  .site-menu a[aria-current="location"] {
    background: transparent;
  }

  .site-menu a:hover::after,
  .site-menu a[aria-current="location"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .site-menu a:last-child {
    margin-left: 7px;
    padding-inline: 17px;
    border: 1px solid var(--brass);
    background: var(--brass);
    color: #080909;
  }

  .site-menu a:last-child::after {
    display: none;
  }

  .site-menu a:last-child:hover {
    border-color: var(--brass-light);
    background: var(--brass-light);
  }
}

@media (max-width: 1100px) {
  .contact-footer {
    grid-template-columns: minmax(240px, 1.25fr) repeat(2, minmax(150px, 1fr));
  }

  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: clamp(76px, 10vw, 104px);
  }

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

  .proof-grid li:nth-child(2) {
    border-right: 1px solid var(--border-soft);
  }

  .proof-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-soft);
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-row:nth-child(even) .product-copy,
  .product-row:nth-child(even) .product-media {
    order: initial;
  }

  .product-copy {
    max-width: 680px;
  }

  .product-media {
    width: min(100%, 760px);
  }

  .applications-head {
    grid-template-columns: 1fr;
  }

  .applications-head .section-title,
  .applications-head .section-copy {
    grid-column: 1;
  }

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

  .application-card {
    min-height: 220px;
    border: 1px solid rgba(20, 23, 25, 0.13);
  }

  .application-card:last-child {
    border-bottom: 1px solid rgba(20, 23, 25, 0.13);
  }

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

  .materials-copy {
    max-width: 720px;
  }

  .material-visual {
    min-height: 420px;
  }

  .material-points {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-head {
    position: static;
    max-width: 760px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-divider {
    width: 100%;
    min-height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 74px;
    --section-space: 72px;
  }

  .nav-shell {
    width: calc(100% - 36px);
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: auto;
    height: 54px;
  }

  .site-menu {
    right: 18px;
    width: min(360px, calc(100% - 36px));
  }

  .hero {
    min-height: 700px;
  }

  .hero-stage::before {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, 0.93), rgba(3, 4, 5, 0.74) 66%, rgba(3, 4, 5, 0.24)),
      linear-gradient(180deg, rgba(3, 4, 5, 0.22), transparent 35%, transparent 65%, rgba(3, 4, 5, 0.88));
  }

  .hero-visual img {
    object-position: 63% 50%;
    filter: saturate(0.72) contrast(1.05) brightness(0.66);
  }

  .hero-copy {
    top: 51%;
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-kicker,
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }

  .hero-kicker::before,
  .eyebrow::before {
    width: 24px;
  }

  .hero-copy h1 {
    max-width: 560px;
    margin-top: 17px;
    font-size: clamp(3.05rem, 14vw, 4.45rem);
    line-height: 0.93;
  }

  .hero-subtitle {
    max-width: 540px;
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .hero-actions {
    width: min(100%, 390px);
    display: grid;
    gap: 10px;
    margin-top: 23px;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-media-note {
    display: none;
  }

  .scroll-cue {
    left: 20px;
    bottom: 18px;
  }

  .proof-grid li {
    min-height: 124px;
    padding: 22px 17px;
  }

  .section {
    padding-inline: 20px;
  }

  .section-title {
    font-size: clamp(2.75rem, 11.5vw, 3.9rem);
  }

  .products-section .section-head {
    margin-bottom: 42px;
  }

  .products-section .section-copy {
    margin-left: 0;
  }

  .product-row {
    gap: 32px;
    padding: 26px 20px 22px;
    border-radius: 18px;
  }

  .product-copy h3 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .product-facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-media {
    aspect-ratio: 4 / 3;
  }

  .product-media figcaption {
    top: 13px;
    right: 13px;
  }

  .application-card {
    min-height: 195px;
    padding: 28px 22px;
  }

  .material-visual {
    min-height: 340px;
  }

  .material-visual-copy {
    inset: auto 26px 28px;
  }

  .material-visual-copy > strong {
    font-size: clamp(7.4rem, 36vw, 10rem);
  }

  .material-visual-copy > small {
    max-width: 230px;
    text-align: center;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.9rem;
  }

  .contact-layout .section-head {
    justify-items: start;
    text-align: left;
  }

  .contact-panel {
    margin-top: 42px;
    padding: 24px 19px;
  }

  .contact-card > h3 {
    font-size: 1.9rem;
  }

  .contact-line {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .contact-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px 34px;
  }

  .footer-col {
    padding-top: 23px;
    border-top: 1px solid var(--border-soft);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Product dropdown navigation */
.nav-products {
  display: grid;
}

.nav-products-trigger {
  position: relative;
  min-height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav-products-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--brass-light);
  border-bottom: 1px solid var(--brass-light);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms var(--ease);
}

.nav-products-trigger:hover,
.nav-products-trigger:focus-visible,
.nav-products-trigger[aria-current="page"] {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-strong);
}

.nav-products.is-open .nav-products-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.products-dropdown {
  display: grid;
  gap: 3px;
  max-height: 0;
  padding-inline: 7px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 220ms var(--ease), opacity 180ms var(--ease), visibility 180ms;
}

.nav-products.is-open .products-dropdown {
  max-height: 320px;
  padding-block: 4px 8px;
  opacity: 1;
  visibility: visible;
}

.products-dropdown a,
.products-dropdown a:last-child {
  min-height: 46px;
  margin: 0;
  padding: 7px 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  letter-spacing: 0.035em;
  text-transform: none;
}

.products-dropdown a::after,
.products-dropdown a:last-child::after {
  content: "→";
  position: static;
  display: block;
  width: auto;
  height: auto;
  background: none;
  color: var(--brass);
  opacity: 1;
  transform: none;
}

.products-dropdown a:hover,
.products-dropdown a:focus-visible,
.products-dropdown a[aria-current="page"] {
  border: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-strong);
}

.products-dropdown a span {
  display: grid;
  gap: 2px;
}

.products-dropdown a small {
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .nav-products {
    position: relative;
    display: block;
  }

  .nav-products-trigger {
    min-height: 42px;
    padding-inline: 13px;
    border-radius: 0;
  }

  .nav-products-trigger::before {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 5px;
    left: 13px;
    height: 1px;
    background: var(--brass);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .nav-products-trigger::after {
    width: 6px;
    height: 6px;
    margin-left: 2px;
  }

  .nav-products-trigger:hover,
  .nav-products-trigger:focus-visible,
  .nav-products-trigger[aria-current="page"] {
    background: transparent;
  }

  .nav-products-trigger:hover::before,
  .nav-products-trigger:focus-visible::before,
  .nav-products-trigger[aria-current="page"]::before,
  .nav-products.is-open .nav-products-trigger::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .products-dropdown {
    position: absolute;
    z-index: 120;
    top: calc(100% + 8px);
    left: 50%;
    width: 310px;
    max-height: none;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: visible;
    background: rgba(10, 12, 13, 0.985);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
  }

  .products-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
  }

  .nav-products:hover .products-dropdown,
  .nav-products:focus-within .products-dropdown,
  .nav-products.is-open .products-dropdown {
    padding: 10px;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .products-dropdown a,
  .products-dropdown a:last-child {
    min-height: 54px;
    padding: 8px 12px;
    border-radius: 9px;
  }

  .site-menu > .nav-cta {
    margin-left: 7px;
    padding-inline: 17px;
    border: 1px solid var(--brass);
    background: var(--brass);
    color: #080909;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(2.85rem, 14vw, 3.75rem);
  }

  .proof-grid li {
    min-height: 114px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 7px;
  }

  .proof-grid li > span {
    padding: 0;
  }

  .proof-grid h3 {
    font-size: 0.82rem;
  }

  .proof-grid p {
    font-size: 0.76rem;
  }

  .product-media {
    aspect-ratio: 4 / 3;
  }

  .product-media-object img {
    width: 100%;
    height: 100%;
  }

  .product-media-ring img {
    width: 100%;
    height: 100%;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    height: 620px;
    min-height: 620px;
  }

  .hero-copy {
    top: 54%;
    width: min(610px, 68vw);
  }

  .hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(2.8rem, 7.5vw, 4.5rem);
  }

  .hero-subtitle {
    max-width: 580px;
    margin-top: 13px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 15px;
  }

  .hero-cta {
    min-height: 48px;
  }

  .scroll-cue,
  .hero-media-note {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual img {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --border: rgba(242, 239, 232, 0.3);
    --border-soft: rgba(242, 239, 232, 0.2);
    --text-muted: #c5c9c9;
  }
}
