:root {
  --ink: #191b1f;
  --ink-soft: #32363c;
  --muted: #636b74;
  --paper: #f5f2eb;
  --surface: #ffffff;
  --surface-warm: #ece7dc;
  --line: rgba(25, 27, 31, 0.14);
  --line-strong: rgba(25, 27, 31, 0.25);
  --brass: #b58a4a;
  --green: #1f655c;
  --blue: #2d536b;
  --shadow: 0 24px 70px rgba(25, 27, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(245, 242, 235, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.brand-word {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-category {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.45rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav .nav-cta {
  padding: 0.58rem 0.8rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.menu-toggle__bar {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: auto;
  padding: clamp(2.5rem, 5vw, 4rem) 5vw clamp(2.35rem, 5vw, 3.75rem);
  overflow: visible;
}

.hero__content {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5.7vw, 5.75rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 620px;
  margin: 1.45rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero__product {
  position: relative;
  display: grid;
  gap: 0.45rem;
  width: min(100%, 520px);
  margin: 0;
  padding: 0;
  justify-self: end;
  overflow: visible;
}

.hero__product::before {
  content: none;
}

.hero__product-image {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(25, 27, 31, 0.16));
}

.hero__product-stage {
  width: 100%;
  height: clamp(190px, 23vw, 260px);
  aspect-ratio: auto;
  background: transparent;
}

.hero__product-stage .hero__product-image {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  transform: scale(0.92);
}

.hero__product figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border-top: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__product .rotator-controls {
  right: -0.25rem;
  left: -0.25rem;
}

.hero__product .rotator-controls button {
  border-color: rgba(25, 27, 31, 0.15);
  background: rgba(25, 27, 31, 0.72);
  box-shadow: 0 8px 20px rgba(25, 27, 31, 0.18);
}

.hero__product figcaption span {
  color: var(--muted);
  font-weight: 750;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button--secondary {
  background: transparent;
  color: var(--ink);
}

.button--on-paper {
  border-color: rgba(255, 255, 255, 0.66);
  color: #fff;
}

.signal-strip,
.section,
.company-panel,
.cta-band,
.site-footer {
  padding-right: 5vw;
  padding-left: 5vw;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  color: #fff;
}

.signal-strip div {
  min-height: 132px;
  padding: 1.35rem;
  background: #25282d;
}

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

.signal-strip span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.company-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.company-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.copy-stack p {
  margin: 0;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 5vw clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.page-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.product-subnav {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 5vw;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.product-subnav a {
  flex: 0 0 auto;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-subnav a:hover {
  background: var(--surface-warm);
  color: var(--ink);
}

.section--contrast {
  background: var(--surface-warm);
}

.section--downloads {
  background: #20242a;
  color: #fff;
}

.section__intro {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section__intro h2,
.download-layout h2,
.split-section h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section__intro p:not(.eyebrow),
.download-layout p,
.copy-block,
.contact-card__details p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section--downloads .section__intro p:not(.eyebrow),
.section--downloads .download-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.product-summary,
.order-panel,
.variant-card,
.finish-panel,
.contact-card,
.status-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(25, 27, 31, 0.07);
}

.product-summary,
.order-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.product-summary--lead {
  min-height: 100%;
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.home-feature--rotator {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.home-product-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(25, 27, 31, 0.07);
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-product-media--rotator {
  width: min(100%, 680px);
  min-height: 0;
}

.rotator-stage {
  position: relative;
  aspect-ratio: 2550 / 3300;
  background: #fff;
}

.hero__product-stage.rotator-stage {
  aspect-ratio: auto;
  background: transparent;
}

.rotator-stage .rotator-image {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0;
  transform-origin: center;
  transition: opacity 700ms ease;
}

.rotator-stage .rotator-image.is-active {
  opacity: 1;
}

.home-product-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.home-product-media figcaption span {
  color: var(--muted);
  font-weight: 750;
}

.rotator-controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.rotator-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(25, 27, 31, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1;
  pointer-events: auto;
  transition: background 160ms ease, transform 160ms ease;
}

.rotator-controls button:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.status-card-grid,
.resource-grid,
.support-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.status-card-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.resource-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.status-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 280px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.status-card h3,
.resource-card h3 {
  margin: 0.95rem 0 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.status-card p,
.resource-card p {
  color: var(--muted);
}

.status-card .button,
.status-card .text-link {
  margin-top: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: rgba(45, 83, 107, 0.12);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-pill--custom {
  background: rgba(31, 101, 92, 0.13);
  color: var(--green);
}

.resource-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(25, 27, 31, 0.07);
}

.resource-card .button {
  margin-top: 1rem;
}

.resource-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.resource-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.resource-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--ink);
  color: #fff;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.02;
}

.cta-band__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-band .button--primary {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.cta-band .button--secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: #fff;
}

.product-summary__label {
  margin: 0 0 0.55rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-summary h2,
.product-summary h3,
.order-panel h3,
.variant-card h3,
.feature-band h3,
.finish-panel h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.product-summary p,
.variant-card p,
.feature-band p {
  color: var(--muted);
}

.facts-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.3rem 0 0;
}

.facts-list div {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.facts-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-weight: 750;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(145px, 1fr) repeat(3, minmax(92px, 0.7fr));
  margin-top: 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: auto;
}

.order-grid > * {
  min-width: 0;
  padding: 0.78rem 0.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
}

.order-grid > :nth-child(-n + 4) {
  background: #eef0f1;
  font-weight: 850;
}

.order-grid > :nth-child(4n) {
  border-right: 0;
}

.order-grid > :nth-last-child(-n + 4) {
  border-bottom: 0;
}

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

.variant-stack {
  display: grid;
  gap: 1rem;
}

.variant-card {
  overflow: hidden;
}

.variant-card--horizontal {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
  min-height: 260px;
}

.variant-card__media {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.variant-card--horizontal .variant-card__media {
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.variant-card__media img {
  width: 100%;
  height: clamp(240px, 34vw, 420px);
  object-fit: cover;
  object-position: 42% 0;
}

.variant-card--horizontal .variant-card__media img {
  height: 100%;
  min-height: 260px;
  object-position: 40% 0;
}

.variant-card--rose-pair {
  display: grid;
  grid-template-rows: auto 1fr;
}

.rose-pair-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.rose-pair-media figure {
  display: grid;
  align-content: space-between;
  min-width: 0;
  margin: 0;
  background: #fff;
}

.rose-pair-media img {
  width: 100%;
  height: clamp(210px, 18vw, 300px);
  object-fit: contain;
  object-position: center;
}

.rose-pair-media figcaption {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.function-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.function-mini-card {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  min-height: 92px;
  align-content: center;
  padding: 0.85rem;
  background: #fff;
}

.function-mini-card strong,
.function-mini-card span {
  display: block;
}

.function-mini-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.function-mini-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.25;
}

.variant-card__body {
  padding: 1.35rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  background: var(--line-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.feature-band article {
  min-height: 168px;
  padding: 1.25rem;
  background: #fff;
}

.support-path-grid .status-card {
  min-height: 250px;
}

.support-form-card,
.support-info-card {
  scroll-margin-top: 150px;
}

.warranty-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: 1rem;
}

.warranty-card {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(25, 27, 31, 0.07);
}

.warranty-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

.warranty-terms {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.warranty-terms div {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.warranty-terms dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.warranty-terms dd {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.warranty-card--fineprint {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.warranty-card--fineprint p {
  margin: 0 0 0.75rem;
}

.warranty-card--fineprint p:last-child {
  margin-bottom: 0;
}

.finish-groups {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.finish-panel {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.finish-list {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 0.85rem 0.9rem;
  align-items: center;
  margin-top: 1.25rem;
}

.finish-chip {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 7px;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.finish-chip--matte-black {
  background: linear-gradient(135deg, #101112, #373839);
}

.finish-chip--satin-nickel {
  background: linear-gradient(135deg, #d6d3cc, #8e8c86);
}

.finish-chip--chrome {
  background: linear-gradient(135deg, #f7f8f7, #b3b7b9 44%, #ffffff 56%, #8f9496);
}

.finish-chip--gun-metal {
  background: linear-gradient(135deg, #78797c, #393a3d);
}

.finish-chip--rose-gold {
  background: linear-gradient(135deg, #e5b47f, #9c672f);
}

.finish-chip--dark-bronze {
  background: linear-gradient(135deg, #3a2a20, #171514);
}

.finish-code {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sheet-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.sheet-preview-grid a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform 160ms ease;
}

.sheet-preview-grid a:hover {
  transform: translateY(-2px);
}

.sheet-preview-grid img {
  width: 100%;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  object-position: top;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.copy-block p:first-child {
  margin-top: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.audience-grid article {
  min-height: 250px;
  padding: 1.4rem;
  background: #fff;
}

.audience-grid__number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 850;
}

.audience-grid h3,
.inquiry-checklist h3 {
  margin: 0;
  font-size: 1.25rem;
}

.audience-grid p {
  color: var(--muted);
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.contact-card__details,
.contact-form,
.support-info-panel {
  background: #fff;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.support-info-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

.support-detail-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.45;
}

.support-detail-list li::marker {
  color: var(--green);
  font-weight: 850;
}

.contact-note {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f5;
  color: var(--ink-soft);
  font-weight: 750;
}

.inquiry-checklist {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.inquiry-checklist ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.label-wide,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.contact-form input,
.contact-form select {
  min-height: 44px;
  padding: 0 0.75rem;
}

.contact-form textarea {
  resize: vertical;
  padding: 0.75rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer span:first-child {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 850;
}

.site-footer small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 750;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

@media (max-width: 1080px) {
  .hero,
  .company-panel,
  .home-feature,
  .product-overview,
  .download-layout,
  .split-section,
  .contact-card,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__product {
    max-width: 620px;
    width: 100%;
    justify-self: start;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .product-subnav {
    top: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 18px 50px rgba(25, 27, 31, 0.12);
  }

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

  .site-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: #f3f3f0;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .signal-strip,
  .variant-grid,
  .status-card-grid,
  .resource-grid,
  .support-path-grid,
  .warranty-layout,
  .finish-groups,
  .sheet-preview-grid {
    grid-template-columns: 1fr;
  }

  .variant-card--horizontal {
    grid-template-columns: 1fr;
  }

  .rose-pair-media {
    grid-template-columns: 1fr;
  }

  .function-mini-grid {
    grid-template-columns: 1fr;
  }

  .variant-card--horizontal .variant-card__media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .order-grid {
    min-width: 620px;
  }

  .order-panel {
    overflow-x: auto;
  }

  .download-layout {
    gap: 2rem;
  }

  .home-product-media--rotator {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.5rem);
  }

  .button {
    width: 100%;
  }

  .home-product-media figcaption {
    position: static;
    flex-direction: column;
    border-radius: 0;
  }

  .cta-band__actions {
    width: 100%;
  }

  .feature-band,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .finish-list {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .finish-code {
    grid-column: 2;
    margin-top: -0.7rem;
  }
}
