:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --ink: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.68);
  --navy: #0b0b0b;
  --navy-2: #0b0b0b;
  --navy-3: #1f8f45;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --line: rgba(11, 11, 11, 0.1);
  --accent: #1f8f45;
  --accent-deep: #0b0b0b;
  --accent-soft: rgba(31, 143, 69, 0.12);
  --teal: #1f8f45;
  --teal-soft: rgba(31, 143, 69, 0.14);
  --mint: #7fd4c3;
  --mint-deep: #57bdaa;
  --mint-ink: #13352d;
  --paper: #f3f1ed;
  --shadow: 0 24px 60px rgba(11, 11, 11, 0.12);
  --shadow-soft: 0 16px 34px rgba(11, 11, 11, 0.08);
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --shell: min(1160px, calc(100% - 1.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(31, 143, 69, 0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(11, 11, 11, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, rgba(31, 143, 69, 0.03) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.24;
  animation: blobFloat 16s ease-in-out infinite;
}

body::before {
  top: 8%;
  left: -6rem;
  background: rgba(31, 143, 69, 0.24);
}

body::after {
  bottom: 8%;
  right: -5rem;
  background: rgba(11, 11, 11, 0.14);
  animation-delay: -8s;
}

body.cart-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

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

img.lazy-image {
  opacity: 0;
  transition: opacity 380ms ease;
}

img.lazy-image.is-loaded {
  opacity: 1;
}

[data-media-shell] {
  position: relative;
  isolation: isolate;
}

[data-media-shell]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(11, 11, 11, 0.08) 14%,
    rgba(255, 255, 255, 0.88) 34%,
    rgba(31, 143, 69, 0.2) 52%,
    rgba(11, 11, 11, 0.08) 72%
  );
  background-size: 220% 100%;
  animation: mediaShimmer 1.35s linear infinite;
  transition: opacity 260ms ease;
}

[data-media-shell].is-loaded::before {
  opacity: 0;
}

[data-media-shell] > img {
  position: relative;
  z-index: 0;
}

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(31, 143, 69, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 143, 69, 0.12);
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

.shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
}

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

.top-strip {
  display: none;
}

.promo-marquee {
  overflow: hidden;
}

.promo-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.promo-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.8rem;
  padding: 0.6rem 0.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-track span::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(31, 143, 69, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 0.85rem;
  background: linear-gradient(180deg, var(--mint-deep), var(--mint));
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.3rem;
  padding: 1rem 1.2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 22px 42px rgba(11, 11, 11, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  object-fit: contain;
  padding: 0.35rem;
  background: #ffffff;
  border: 1px solid rgba(11, 11, 11, 0.06);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-toggle {
  display: inline-grid;
  gap: 0.22rem;
  width: 3rem;
  height: 3rem;
  padding: 0.72rem;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: var(--ink);
}

.site-nav {
  position: absolute;
  inset: calc(100% + 0.75rem) 0 auto;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.7rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__links,
.site-nav__actions {
  display: grid;
  gap: 0.6rem;
}

.site-nav__links {
  padding: 0.5rem;
  border-radius: 1.5rem;
  background: #090909;
}

.site-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-selection {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-selection {
  justify-content: space-between;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.nav-selection:hover,
.nav-selection:focus-visible {
  transform: translateY(-1px);
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-selection:hover,
.nav-selection:focus-visible {
  background: rgba(127, 212, 195, 0.18);
  border-color: rgba(19, 53, 45, 0.16);
  color: var(--ink);
}

.site-nav__links a.is-active {
  background: linear-gradient(135deg, var(--mint), var(--mint-deep));
  color: var(--mint-ink);
  box-shadow: none;
}

.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 34px rgba(31, 143, 69, 0.24);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(11, 11, 11, 0.12);
}

.button--ghost-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button--nav {
  width: 100%;
  min-height: 3.15rem;
  color: var(--mint-ink);
  background: linear-gradient(135deg, var(--mint), var(--mint-deep));
  box-shadow: none;
}

.button[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

.section {
  padding: 4.3rem 0;
}

.section--tight {
  padding: 2.8rem 0;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(31, 143, 69, 0.05));
}

.hero-sales {
  padding-top: 0.35rem;
  padding-bottom: 2.7rem;
  background: linear-gradient(180deg, var(--mint) 0%, rgba(127, 212, 195, 0.28) 74%, transparent 100%);
}

.page-banner {
  padding-top: 1.2rem;
  background: linear-gradient(180deg, rgba(127, 212, 195, 0.62) 0%, rgba(127, 212, 195, 0.12) 70%, transparent 100%);
}

.hero-grid,
.shop-hero {
  display: grid;
  gap: 1rem;
}

.hero-showroom {
  padding: clamp(1rem, 2vw, 1.45rem);
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 24px 60px rgba(11, 11, 11, 0.12);
}

.hero-showroom__stage {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 3.4rem);
  border-radius: 1.9rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.hero-showroom__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(243, 241, 237, 0.96) 0 34%, transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(127, 212, 195, 0.32), transparent 18%);
  pointer-events: none;
}

.hero-showroom__stage > * {
  position: relative;
  z-index: 1;
}

.hero-showroom__eyebrow {
  background: rgba(127, 212, 195, 0.24);
  color: var(--mint-ink);
}

.hero-showroom__stage .title {
  max-width: 11ch;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2.55rem, 7vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.hero-showroom__stage .lead {
  max-width: 39rem;
  color: rgba(11, 11, 11, 0.68);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-showroom__actions {
  display: flex;
  justify-content: center;
}

.hero-showroom__button {
  min-height: 3.35rem;
  padding-inline: 1.6rem;
  color: var(--mint-ink);
  background: linear-gradient(135deg, var(--mint), var(--mint-deep));
  box-shadow: 0 18px 30px rgba(87, 189, 170, 0.24);
}

.hero-showroom__note {
  margin: 0;
  max-width: 34rem;
  color: rgba(11, 11, 11, 0.54);
  font-size: 0.95rem;
}

.hero-showroom__stage--about .title {
  max-width: 15ch;
}

.hero-showroom__stage--about .lead {
  max-width: 50rem;
}

.hero-poster {
  width: min(100%, 46rem);
  display: grid;
  gap: 1rem;
  padding: 1rem;
  margin-top: 0.4rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
}

.hero-poster__copy {
  display: grid;
  gap: 0.45rem;
}

.hero-poster__eyebrow {
  margin: 0;
  color: rgba(11, 11, 11, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-poster__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-poster__copy p {
  margin: 0;
  color: rgba(11, 11, 11, 0.58);
}

.hero-poster__media {
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(11, 11, 11, 0.04);
}

.hero-poster__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-offers {
  width: min(100%, 58rem);
  display: grid;
  gap: 1rem;
  margin-top: 0.4rem;
  padding: 1.1rem;
  border-radius: 1.6rem;
  background: rgba(243, 241, 237, 0.82);
  border: 1px solid rgba(11, 11, 11, 0.08);
}

.hero-offers__intro {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.hero-offers__eyebrow {
  margin: 0 0 0.3rem;
  color: rgba(11, 11, 11, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-offers__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.hero-offers__link {
  font-weight: 700;
  color: var(--mint-ink);
}

.hero-offers__list {
  display: grid;
  gap: 0.8rem;
}

.hero-offer-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 11, 11, 0.08);
  text-align: left;
}

.hero-offer-card img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-offer-card__copy {
  display: grid;
  gap: 0.18rem;
}

.hero-offer-card__copy span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer-card__copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-offer-card__copy p {
  margin: 0;
  color: rgba(11, 11, 11, 0.58);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-showroom__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-tile {
  overflow: hidden;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(127, 212, 195, 0.12), rgba(11, 11, 11, 0.04));
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 260ms ease;
}

.hero-tile:hover img {
  transform: scale(1.04);
}

.service-story-grid {
  display: grid;
  gap: 1.15rem;
}

.service-story {
  overflow: hidden;
  display: grid;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.service-story__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(127, 212, 195, 0.12), rgba(11, 11, 11, 0.05));
  overflow: hidden;
}

.service-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-story:hover img {
  transform: scale(1.03);
}

.service-story__body {
  display: grid;
  gap: 0.72rem;
  padding: 1.05rem;
}

.service-story__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.9vw, 1.45rem);
  line-height: 1.12;
}

.service-story__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 0.2rem;
}

.service-story__meta strong {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-story__meta a {
  font-weight: 800;
  color: var(--mint-ink);
}

.ceo-message {
  overflow: hidden;
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.ceo-message__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(127, 212, 195, 0.12), rgba(11, 11, 11, 0.05));
}

.ceo-message__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ceo-message__body {
  display: grid;
  gap: 0.95rem;
  padding: 1.35rem;
}

.ceo-message__body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.ceo-message__body p {
  margin: 0;
  color: var(--muted);
}

.ceo-message__signature {
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel,
.surface-panel,
.shop-toolbar,
.collection-card,
.product-card,
.showcase-card,
.selling-card,
.step-card,
.cta-band,
.quick-card,
.info-card,
.selection-summary,
.order-panel {
  background: var(--panel);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(31, 143, 69, 0.22), transparent 38%),
    radial-gradient(circle at top right, rgba(31, 143, 69, 0.16), transparent 32%),
    linear-gradient(160deg, var(--navy), var(--navy-2));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%);
  animation: pulseGlow 7s ease-in-out infinite;
}

.hero-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.title,
.section-heading h2,
.selection-summary h2,
.info-card h2,
.cta-band h2,
.order-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.title {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.section-heading h2,
.selection-summary h2,
.info-card h2,
.cta-band h2,
.order-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.lead,
.hero-panel .lead,
.section-heading p,
.toolbar-copy,
.selling-card p,
.step-card p,
.showcase-card p,
.collection-card p,
.product-card p,
.quick-card p,
.info-card p,
.selection-summary p,
.cta-band p,
.toolbar-note {
  margin: 0;
  color: var(--muted);
}

.hero-panel .lead {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.section-heading--compact {
  margin-bottom: 1rem;
}

.hero-actions,
.cta-band__actions,
.product-card__actions,
.selection-summary__actions,
.form-actions,
.side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-metrics {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-metric {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric strong {
  color: #ffffff;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #ffffff, rgba(31, 143, 69, 0.08));
  animation: floatY 8s ease-in-out infinite;
}

.hero-card--feature {
  aspect-ratio: 5 / 4;
}

.hero-card--mini {
  aspect-ratio: 1 / 1;
}

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

.hero-card__copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.16), rgba(11, 11, 11, 0.92));
}

.hero-card__copy span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card__copy strong {
  font-size: 1rem;
}

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

.collection-grid,
.product-grid,
.showcase-grid,
.steps-grid,
.selling-grid,
.quick-grid {
  display: grid;
  gap: 1rem;
}

.collection-card,
.product-card,
.showcase-card,
.selling-card,
.step-card,
.quick-card,
.info-card {
  overflow: hidden;
}

.collection-card__media,
.product-card__media,
.showcase-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(31, 143, 69, 0.08), #ffffff);
  overflow: hidden;
}

.collection-card__media img,
.product-card__media img,
.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.collection-card:hover img,
.product-card:hover img,
.showcase-card:hover img {
  transform: scale(1.04);
}

.collection-card__body,
.product-card__body,
.showcase-card__body,
.selling-card,
.step-card,
.quick-card,
.info-card,
.order-panel {
  padding: 1.25rem;
}

.collection-card__body,
.product-card__body,
.showcase-card__body {
  display: grid;
  gap: 0.8rem;
}

.collection-card h3,
.product-card h3,
.showcase-card h3,
.selling-card h3,
.step-card h3,
.quick-card h3,
.selection-summary h3 {
  margin: 0;
  font-size: 1.18rem;
}

.collection-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  color: var(--ink);
}

.collection-card__footer strong {
  font-size: 0.86rem;
  color: var(--accent);
}

.collection-card__footer a,
.showcase-card__body a {
  font-weight: 800;
  color: var(--navy-2);
}

.collection-card--compact .collection-card__media {
  aspect-ratio: 16 / 10;
}

.product-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(11, 11, 11, 0.14);
}

.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(31, 143, 69, 0.22);
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card__meta strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card__specs {
  display: grid;
  gap: 0.65rem;
}

.product-card__specs span {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: rgba(11, 11, 11, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card__specs strong {
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__gallery-note {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card__actions .button,
.selection-summary__actions .button,
.side-actions .button {
  flex: 1 1 11rem;
}

.selling-card,
.step-card,
.quick-card,
.info-card,
.selection-summary,
.shop-toolbar,
.surface-panel,
.cta-band,
.order-panel {
  background: rgba(255, 255, 255, 0.9);
}

.selling-card h3,
.quick-card h3,
.info-card h2,
.selection-summary h2 {
  color: var(--ink);
}

.step-card {
  display: grid;
  gap: 0.75rem;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 12px 22px rgba(11, 11, 11, 0.18);
}

.cta-band {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(31, 143, 69, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(31, 143, 69, 0.08), rgba(11, 11, 11, 0.04)),
    rgba(255, 255, 255, 0.94);
}

.shop-toolbar {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.toolbar-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.toolbar-note strong {
  color: var(--ink);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-weight: 800;
  font-size: 0.9rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 700;
}

.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-color: transparent;
}

.empty-state,
.empty-selection {
  padding: 1.5rem;
  border: 1px dashed rgba(11, 11, 11, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.empty-state h2,
.empty-state h3,
.empty-selection h3,
.empty-selection h2 {
  margin: 0;
}

.empty-state p,
.empty-selection p {
  margin: 0.55rem 0 0;
}

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

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-main,
.contact-side {
  display: grid;
  gap: 1rem;
}

.selection-summary__list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
}

.selection-summary__item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(11, 11, 11, 0.04);
}

.selection-summary__thumb {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 0.9rem;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(31, 143, 69, 0.08), #ffffff);
}

.selection-summary__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-summary__item p {
  margin-top: 0.2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

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

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 4rem;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, var(--navy), var(--navy-3));
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-grid h3,
.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

.footer-grid p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  position: relative;
  padding-left: 1rem;
}

.footer-links li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.footer-bottom {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 18px 34px rgba(11, 11, 11, 0.24);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 36;
  background: rgba(11, 11, 11, 0.54);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 37;
  width: min(26rem, 100%);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: -20px 0 50px rgba(11, 11, 11, 0.18);
}

.cart-drawer__header,
.cart-drawer__footer {
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: auto;
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.cart-drawer__body {
  padding: 1rem;
  overflow: auto;
  display: grid;
  gap: 0.9rem;
}

.drawer-close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(11, 11, 11, 0.04);
}

.cart-item__media img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 0.95rem;
}

.cart-item__media {
  width: 5rem;
  height: 5rem;
  border-radius: 0.95rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31, 143, 69, 0.08), #ffffff);
}

.gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(11, 11, 11, 0.56);
}

.product-gallery {
  position: fixed;
  inset: 4% 4% 4% 4%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(11, 11, 11, 0.28);
  overflow: hidden;
}

.product-gallery__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.product-gallery__header h2,
.product-gallery__header p {
  margin: 0;
}

.product-gallery__body {
  flex: 1 1 auto;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: rgba(11, 11, 11, 0.02);
}

.product-gallery__item {
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 11, 11, 0.08);
}

.product-gallery__image {
  overflow: hidden;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(31, 143, 69, 0.08), #ffffff);
}

.product-gallery__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.cart-item__copy {
  display: grid;
  gap: 0.35rem;
}

.cart-item__copy h3,
.cart-item__copy p {
  margin: 0;
}

.cart-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cart-controls button {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.65rem;
  background: rgba(11, 11, 11, 0.09);
  color: var(--ink);
  font-weight: 800;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  font-weight: 800;
}

.cart-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.status-toast {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 38;
  min-width: 14rem;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: var(--shadow);
}

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

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

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.8rem, -1rem, 0);
  }
}

@keyframes mediaShimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -20% 0;
  }
}

@media (min-width: 700px) {
  .hero-poster {
    grid-template-columns: minmax(15rem, 0.74fr) minmax(0, 1.26fr);
    align-items: center;
  }

  .hero-offers__intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-items: stretch;
    text-align: left;
  }

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

  .hero-offer-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-offer-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

  .hero-metrics,
  .quick-grid,
  .selling-grid,
  .steps-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 960px) {
  .ceo-message {
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .ceo-message__media img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .service-story {
    grid-template-rows: auto 1fr;
  }

  .nav-toggle {
    display: none;
  }

  .cart-fab {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
    min-width: 0;
    margin-inline: auto;
    padding: 0.32rem;
    border-radius: 999px;
    background: #090909;
  }

  .site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: 0;
  }

  .site-nav__links a,
  .nav-selection {
    min-height: 3rem;
    padding: 0.8rem 1.1rem;
  }

  .nav-selection {
    min-width: 9.5rem;
    background: #ffffff;
    border-color: rgba(11, 11, 11, 0.12);
  }

  .button--nav {
    width: auto;
  }

  .hero-grid,
  .shop-hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: start;
  }

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

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

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

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

  .product-grid--full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.8fr 0.9fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1180px) {
  .nav-shell {
    padding-inline: 1.5rem;
  }

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

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

@media (max-width: 959px) {
  .site-header {
    padding-top: 0.8rem;
  }

  .nav-shell {
    padding: 0.95rem 1rem;
    border-radius: 1.6rem;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 699px) {
  .hero-poster {
    padding: 0.95rem;
  }

  .hero-offers {
    padding: 0.95rem;
    border-radius: 1.3rem;
  }

  .hero-showroom__stage {
    border-radius: 1.45rem;
  }

  .hero-tile {
    border-radius: 1.15rem;
  }
}

html,
body {
  min-width: 1280px;
}

:root {
  --shell: 1160px;
}

.title {
  font-size: 5rem;
}

.section-heading h2,
.selection-summary h2,
.info-card h2,
.cta-band h2,
.order-panel h2 {
  font-size: 2.9rem;
}

.hero-showroom {
  padding: 1.45rem;
}

.hero-showroom__stage {
  padding: 5rem 3rem 3.4rem;
}

.hero-showroom__stage .title {
  font-size: 4.9rem;
}

.hero-showroom__stage .lead {
  font-size: 1.16rem;
}

.hero-poster {
  grid-template-columns: minmax(15rem, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
}

.hero-panel {
  padding: 2.5rem;
}

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

.service-story__body h3 {
  font-size: 1.45rem;
}

.ceo-message {
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.ceo-message__media img {
  aspect-ratio: auto;
  min-height: 100%;
}

.ceo-message__body h2 {
  font-size: 2.4rem;
}

.cta-band {
  padding: 2rem;
}

.nav-toggle,
.cart-fab {
  display: none !important;
}

.brand-copy span {
  display: block;
}

.site-nav {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  min-width: 0;
  margin-inline: auto;
  padding: 0.32rem;
  border-radius: 999px;
  background: #090909;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0;
}

.site-nav__links a,
.nav-selection {
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
}

.nav-selection {
  min-width: 9.5rem;
  background: #ffffff;
  border-color: rgba(11, 11, 11, 0.12);
}

.button--nav {
  width: auto;
}

.hero-grid,
.shop-hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: start;
}

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

.hero-offers__intro {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  justify-items: stretch;
  text-align: left;
}

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

.hero-offer-card {
  grid-template-columns: 1fr;
  align-items: start;
}

.hero-offer-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

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

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

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

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

.product-grid--full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.contact-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  align-items: start;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
