:root {
  --ink: #151715;
  --moss: #173f3a;
  --teal: #23a6a1;
  --sun: #f5c542;
  --coral: #d84e36;
  --paper: #f7f1e5;
  --sand: #e9ddc1;
  --line: rgba(21, 23, 21, 0.16);
  --shadow: 0 26px 70px rgba(21, 23, 21, 0.24);
  --display: "Fraunces", Georgia, serif;
  --body: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--teal), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff8e8;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 229, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(21, 23, 21, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  max-width: min(360px, 58vw);
}

.brand small {
  display: block;
  color: var(--sun);
  font-size: 0.78rem;
}

.brand span:last-child {
  overflow-wrap: anywhere;
}

.site-header.is-scrolled .brand small {
  color: var(--coral);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--coral);
  color: #fff8e8;
}

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

.site-nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: currentColor;
  background: rgba(245, 197, 66, 0.16);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 54px;
  color: #fff8e8;
  background: #101411;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% 18%;
  height: 52%;
  background:
    radial-gradient(circle at 38% 50%, rgba(35, 166, 161, 0.22), transparent 38%),
    radial-gradient(circle at 62% 30%, rgba(245, 197, 66, 0.2), transparent 34%);
  filter: blur(18px);
  transform: translate3d(0, var(--hero-drift, 0px), 0);
  pointer-events: none;
}

.hero-media,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  opacity: 0;
  transform: translate3d(0, var(--hero-image-drift, 0px), 0) scale(1.02);
  transition: opacity 900ms ease, transform 120ms linear;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  object-position: 56% 48%;
}

.hero-slide:nth-child(2) {
  object-position: 70% 76%;
}

.hero-slide:nth-child(3) {
  object-position: 38% 70%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 11, 0.92) 0%, rgba(10, 12, 11, 0.72) 42%, rgba(10, 12, 11, 0.18) 78%),
    linear-gradient(0deg, rgba(10, 12, 11, 0.92) 0%, rgba(10, 12, 11, 0.16) 48%, transparent 78%),
    linear-gradient(135deg, rgba(245, 197, 66, 0.16) 0%, transparent 34%, rgba(216, 78, 54, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  animation: rise 760ms ease both;
}

.hero-signal {
  position: absolute;
  z-index: 1;
  right: clamp(32px, 8vw, 130px);
  bottom: clamp(132px, 18vw, 250px);
  width: min(330px, 36vw);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero-signal span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(35, 166, 161, 0.42);
  border-radius: 50%;
  opacity: 0;
  animation: signalPulse 3.8s ease-out infinite;
}

.hero-signal span:nth-child(2) {
  animation-delay: 1.1s;
  border-color: rgba(245, 197, 66, 0.34);
}

.hero-signal span:nth-child(3) {
  animation-delay: 2.2s;
  border-color: rgba(216, 78, 54, 0.32);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 8vw, 8.4rem);
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 248, 232, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -70% -24%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 248, 232, 0.44), transparent 62%);
  transform: translateX(-130%) rotate(8deg);
  transition: transform 560ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
}

.button:hover::after {
  transform: translateX(130%) rotate(8deg);
}

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

.button.secondary {
  border-color: rgba(255, 248, 232, 0.8);
  color: #fff8e8;
  background: rgba(255, 248, 232, 0.08);
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(850px, 100%);
  margin-top: 54px;
  border: 1px solid rgba(255, 248, 232, 0.42);
  background: rgba(21, 23, 21, 0.45);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  padding: 20px;
  border-right: 1px solid rgba(255, 248, 232, 0.32);
}

.hero-metrics div:last-child {
  border-right: 0;
}

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

.hero-metrics strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 248, 232, 0.76);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: #fff8e8;
  border-top: 5px solid var(--sun);
}

.proof-strip div {
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 248, 232, 0.2);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  color: var(--teal);
  font-weight: 800;
}

.proof-strip strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.24rem;
}

.proof-strip p,
.section p,
.product-card li,
.site-footer span {
  line-height: 1.55;
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
  margin-bottom: 38px;
}

.section h2 {
  font-size: clamp(2.3rem, 5.4vw, 5.6rem);
}

.section-heading p,
.wholesale-copy p,
.region-copy p,
.quote > div p {
  margin: 0;
  color: rgba(21, 23, 21, 0.74);
  font-size: 1.08rem;
}

.catalog-count {
  margin: -14px 0 24px;
  color: rgba(21, 23, 21, 0.66);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-card {
  display: grid;
  position: relative;
  grid-template-rows: 330px 1fr;
  min-height: 720px;
  border: 2px solid var(--ink);
  background: #fff8e8;
  box-shadow: 9px 9px 0 var(--ink);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 20%), rgba(245, 197, 66, 0.22), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-card:hover {
  --lift: -7px;
  box-shadow: 13px 16px 0 var(--ink);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  transition: transform 260ms ease;
}

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

.product-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  background: var(--teal);
  color: #fff8e8;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3,
.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.product-code {
  min-height: 0 !important;
  margin: 8px 0 0;
  color: var(--coral);
  font-weight: 800;
}

.product-card p {
  min-height: 100px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.product-meta span {
  border: 1px solid currentColor;
  padding: 7px 9px;
  font-size: 0.84rem;
  font-weight: 800;
}

.product-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding: 10px 0;
  border-top: 1px solid currentColor;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.product-detail,
.product-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 2px solid currentColor;
  padding: 12px 13px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.product-detail:hover,
.product-inquiry:hover {
  background: var(--sun);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 rgba(21, 23, 21, 0.25);
}

.product-inquiry span {
  transition: transform 160ms ease;
}

.product-inquiry:hover span {
  transform: translateX(4px);
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.catalog-actions > .catalog-more {
  border-color: var(--ink) !important;
  background: var(--ink) !important;
  color: #fff8e8 !important;
  box-shadow: 7px 7px 0 var(--sun);
}

.catalog-actions > .catalog-more:hover {
  background: var(--sun) !important;
  color: var(--ink) !important;
  box-shadow: 8px 8px 0 var(--ink);
}

.catalog-actions > .catalog-more:disabled {
  opacity: 1;
  cursor: default;
  background: var(--sand) !important;
  color: var(--ink) !important;
  box-shadow: 5px 5px 0 rgba(21, 23, 21, 0.18);
}

.catalog-actions > .catalog-more:disabled:hover {
  transform: none;
  background: var(--sand) !important;
  color: var(--ink) !important;
  box-shadow: 5px 5px 0 rgba(21, 23, 21, 0.18);
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid var(--ink);
  background: #fff8e8;
  text-align: center;
}

.catalog-empty strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
}

.catalog-empty p {
  min-height: 0;
  margin: 12px auto 0;
  max-width: 520px;
}

.wholesale {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  background: var(--sand);
}

.wholesale-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-board {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  position: relative;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.process-step:hover {
  transform: translateX(8px);
  box-shadow: -8px 8px 0 var(--sun);
  background: #fff8e8;
}

.process-step span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff8e8;
  font-family: var(--display);
  font-size: 2rem;
}

.process-step p {
  grid-column: 2;
  margin: -4px 0 0;
}

.region {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: center;
  background: var(--moss);
  color: #fff8e8;
}

.region .section-kicker {
  color: var(--sun);
}

.region-copy p {
  color: rgba(255, 248, 232, 0.76);
  margin-top: 24px;
}

.region-visual img {
  border: 2px solid #fff8e8;
  box-shadow: 13px 13px 0 var(--sun);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.country-list span {
  border: 1px solid rgba(255, 248, 232, 0.5);
  padding: 9px 12px;
  color: #fff8e8;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.country-list span:hover {
  background: var(--sun);
  color: var(--ink);
  transform: translateY(-3px);
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding: 22px;
  border: 2px solid var(--ink);
  background: var(--sand);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: 9px 9px 0 var(--ink);
}

.contact-panel p,
.contact-panel a,
.contact-panel span {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-name {
  color: var(--coral);
}

.contact-action {
  color: var(--moss);
}

.quote-form {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 34px);
  background: var(--ink);
  color: #fff8e8;
  box-shadow: 12px 12px 0 var(--coral);
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--sun), var(--teal), var(--coral));
  transform: scaleX(var(--form-progress, 0));
  transform-origin: left;
  transition: transform 220ms ease;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 13px 12px;
  background: #fff8e8;
  color: var(--ink);
  font: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--sun);
  outline: 0;
  box-shadow: 5px 5px 0 rgba(245, 197, 66, 0.38);
  transform: translateY(-2px);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 248, 232, 0.74);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff8e8;
}

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

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

.quick-contact {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  border: 2px solid #0f8f48;
  background: #25d366;
  color: #082b19;
  box-shadow: 7px 7px 0 rgba(8, 43, 25, 0.32);
  font-weight: 800;
  transform: translateY(110px);
  transition: transform 220ms ease, box-shadow 180ms ease;
}

.quick-contact.is-visible {
  transform: translateY(0);
}

.quick-contact:hover {
  box-shadow: 10px 10px 0 rgba(8, 43, 25, 0.46);
}

.quick-contact span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #128c4a;
}

.quick-contact svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.modal-open {
  overflow: hidden;
}

.modal-open .quick-contact {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 11, 0.72);
  backdrop-filter: blur(12px);
}

.product-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  width: min(1040px, 100%);
  max-height: min(780px, 92vh);
  border: 2px solid var(--ink);
  background: #fff8e8;
  box-shadow: 14px 14px 0 var(--sun);
  overflow: auto;
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.product-modal.is-open .product-modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--sun);
  color: var(--ink);
  font: inherit;
  font-size: 1.7rem;
  font-weight: 800;
  cursor: pointer;
}

.product-modal-media {
  min-height: 100%;
  background: var(--ink);
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.product-modal-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 42px);
}

.product-modal-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.94;
}

.product-modal-copy p {
  min-height: 0;
  margin: 18px 0 0;
  color: rgba(21, 23, 21, 0.76);
  font-size: 1.04rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.product-specs div {
  border: 1px solid var(--ink);
  padding: 12px;
  background: var(--paper);
}

.product-specs dt {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 5px 0 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.modal-features {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.modal-features li {
  border-left: 5px solid var(--teal);
  padding: 9px 12px;
  background: var(--sand);
  font-weight: 800;
}

.modal-whatsapp {
  margin-top: 24px;
}

.js-enabled .reveal {
  opacity: 0.001;
  transform: translateY(20px);
}

.quick-contact.is-compact strong {
  display: none;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.is-sent {
  color: var(--sun);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signalPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.18);
  }
  82% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    background: transparent;
    color: currentColor;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .hero {
    min-height: 860px;
  }

  .hero-image {
    object-position: 50% center;
  }

  .hero-slide:nth-child(1) {
    object-position: 54% 48%;
  }

  .hero-slide:nth-child(2) {
    object-position: 72% 76%;
  }

  .hero-slide:nth-child(3) {
    object-position: 32% 72%;
  }

  .hero-signal {
    right: -40px;
    bottom: 210px;
    width: 220px;
  }

  .hero-metrics,
  .proof-strip,
  .section-heading,
  .product-grid,
  .wholesale,
  .region,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 232, 0.24);
  }

  .product-card {
    min-height: 0;
  }

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

  .wholesale-copy {
    position: static;
  }

  .product-modal-panel {
    display: block;
    background: #fff8e8;
  }

  .product-modal-media {
    min-height: 0;
  }

  .product-modal-media img {
    height: 300px;
    min-height: 300px;
    max-height: 38vh;
  }

  .product-modal-copy {
    background: #fff8e8;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip div,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-card {
    grid-template-rows: 260px auto;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .product-card img {
    height: 260px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step p {
    grid-column: 1;
  }

  .quote-form {
    grid-template-columns: 1fr;
    box-shadow: 7px 7px 0 var(--coral);
  }

  .footer-contact {
    text-align: left;
  }

  .quick-contact strong {
    display: none;
  }

  .product-modal {
    align-items: end;
    padding: 10px;
  }

  .product-modal-panel {
    width: 100%;
    max-height: 92vh;
    box-shadow: 7px 7px 0 var(--sun);
  }

  .product-modal-media img {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  .product-modal-copy {
    padding: 20px;
  }

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

  .modal-close {
    top: 10px;
    right: 10px;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .hero-image,
  .hero::after,
  .product-card {
    transform: none !important;
  }
}
