:root {
  --ink: #201711;
  --muted: #75685f;
  --cream: #fff8ec;
  --paper: #f6ead8;
  --gold: #d99a2b;
  --berry: #9f304f;
  --sage: #6f7f5b;
  --cocoa: #3a2418;
  --white: #ffffff;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 70px rgba(54, 34, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

body.nav-open,
body.cart-open {
  overflow: hidden;
  touch-action: none;
}

.nav-open .site-header {
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 248, 236, 0.92);
  box-shadow: 0 12px 30px rgba(33, 22, 14, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  align-content: start;
  gap: 20px;
  width: min(88vw, 380px);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  padding: 104px 32px max(36px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background: var(--cream);
  box-shadow: -24px 0 60px rgba(33, 22, 14, 0.18);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.nav-open .site-nav {
  pointer-events: auto;
  transform: translateX(0);
}

.site-nav a {
  position: relative;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(32, 23, 17, 0.16);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.social-link {
  display: inline-grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 0;
}

.social-link::after {
  display: none;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  display: grid;
  gap: 6px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

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

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 150px clamp(20px, 6vw, 84px) 80px;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(22, 12, 7, 0.76), rgba(22, 12, 7, 0.24) 54%, rgba(22, 12, 7, 0.1));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
}

.hero .eyebrow,
.contact .eyebrow,
.cart-drawer .eyebrow {
  color: #ffd67a;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.01em;
}

h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 610px;
  font-size: 1.12rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button.ghost {
  color: var(--white);
}

.button.dark {
  width: fit-content;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  color: var(--white);
  background: var(--berry);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: drift 30s linear infinite;
}

.marquee-track span {
  padding-left: 42px;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 84px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.about-copy {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stats div {
  padding: 18px 12px;
  border-top: 1px solid rgba(32, 23, 17, 0.2);
  border-radius: var(--radius-sm);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cocoa);
  color: var(--white);
}

.split-feature img {
  height: 100%;
  object-fit: cover;
}

.split-feature div {
  align-self: center;
  padding: clamp(36px, 7vw, 96px);
}

.split-feature p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  max-width: 1200px;
  margin-bottom: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-top: 1px solid rgba(32, 23, 17, 0.2);
  border-left: 1px solid rgba(32, 23, 17, 0.2);
  border-radius: var(--radius-lg);
}

.service-card {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid rgba(32, 23, 17, 0.2);
  border-bottom: 1px solid rgba(32, 23, 17, 0.2);
  background: rgba(255, 255, 255, 0.28);
}

.service-card span {
  display: block;
  margin-bottom: 74px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--berry);
}

.service-card p,
.product-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.products {
  background: var(--paper);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.product-image-frame {
  display: grid;
  aspect-ratio: 4 / 3;
  width: 100%;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 340px;
  border-radius: var(--radius-md);
  object-fit: contain;
  object-position: center center;
  transition: transform 400ms ease;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.025);
}

.product-info {
  display: grid;
  align-content: start;
  padding: 24px;
}

.product-price {
  display: inline-block;
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid rgba(159, 48, 79, 0.28);
  padding-bottom: 3px;
  color: var(--berry);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-cart-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: end;
  margin-top: 24px;
}

.product-cart-controls label {
  display: grid;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-name-field {
  display: grid;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-cart-controls label {
  grid-column: 1 / -1;
  color: var(--muted);
}

.quantity-selector {
  display: grid;
  grid-template-columns: 52px minmax(64px, 1fr) 52px;
  width: 100%;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid rgba(32, 23, 17, 0.16);
  border-radius: var(--radius-md);
  background: var(--white);
}

.quantity-selector button {
  display: grid;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: rgba(217, 154, 43, 0.16);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.quantity-selector button:hover,
.quantity-selector button:focus-visible {
  background: rgba(217, 154, 43, 0.28);
}

.quantity-selector input {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  border-left: 1px solid rgba(32, 23, 17, 0.12);
  border-right: 1px solid rgba(32, 23, 17, 0.12);
  padding: 0 8px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 52px;
  text-align: center;
  outline: none;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-selector input[type="number"] {
  appearance: textfield;
}

.product-cart-controls .button {
  min-height: 52px;
  border-radius: var(--radius-md);
}

.product-message {
  min-height: 0;
  margin: 10px 0 0;
  color: var(--berry);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.product-message[hidden] {
  display: none;
}

.cart-fab {
  position: fixed;
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 13px 16px 13px 18px;
  color: var(--ink);
  background: #ffd67a;
  box-shadow: 0 18px 46px rgba(32, 23, 17, 0.24);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-fab[hidden],
.cart-backdrop[hidden] {
  display: none;
}

.cart-fab svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.cart-fab strong {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--berry);
  font-size: 0.76rem;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: rgba(32, 23, 17, 0.46);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto auto;
  gap: 18px;
  width: min(100%, 460px);
  height: 100vh;
  height: 100dvh;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  color: var(--white);
  background: var(--cocoa);
  box-shadow: -24px 0 70px rgba(32, 23, 17, 0.28);
  font-family: var(--font-body);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cart-drawer-header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 0.92;
}

.cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-empty,
.cart-status {
  margin: 0;
  color: #ffd67a;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.cart-item-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cart-item-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.cart-item h4 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
}

.cart-item p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  line-height: 1.45;
}

.cart-item strong {
  color: #ffd67a;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cart-item-actions button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--white);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-item-actions span {
  min-width: 30px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cart-summary strong {
  color: #ffd67a;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: right;
}

.cart-name-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: 400 1.02rem/1.4 var(--font-body);
  outline: none;
}

.cart-name-field input:focus {
  border-color: #ffd67a;
}

.cart-name-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.cart-send {
  width: 100%;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 7vw, 90px);
  overflow: hidden;
  padding: clamp(26px, 5vw, 68px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--cocoa);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 14px;
  margin-top: 42px;
}

.contact-details p,
.contact-card p {
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-details strong,
.contact-card h3 {
  color: var(--white);
}

.contact-card {
  align-self: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.contact-card h3 {
  max-width: 620px;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 0.98;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: 400 1.02rem/1.5 var(--font-body);
  outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffd67a;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #ffd67a;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

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

@media (max-width: 1020px) {
  .service-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .split-feature,
  .contact-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .split-feature {
    min-height: 0;
  }

  .split-feature img {
    height: 440px;
  }
}

@media (min-width: 761px) {
  h1 {
    font-size: 7.25rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .hero-copy {
    font-size: 1.26rem;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 11.75rem;
  }

  h2 {
    font-size: 5.2rem;
  }

  .hero-copy {
    font-size: 1.42rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 14px 18px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    gap: 18px;
    width: min(86vw, 360px);
    padding: 96px 28px max(34px, env(safe-area-inset-bottom));
    font-size: 1.08rem;
  }

  .site-nav .social-link {
    display: inline-grid;
    width: 48px;
    min-height: 48px;
    border-bottom: 1px solid currentColor;
  }

  .hero {
    min-height: 88vh;
    padding: 120px 20px 82px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(22, 12, 7, 0.52), rgba(22, 12, 7, 0.78));
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .stats,
  .contact-details,
  .service-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }

  .service-card span {
    margin-bottom: 38px;
  }

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

  .product-cart-controls .button,
  .contact-form .button {
    width: 100%;
  }

  .cart-fab {
    right: 16px;
    bottom: 16px;
  }

  .cart-drawer {
    width: 100%;
    border-radius: 0;
    padding: 24px 18px max(24px, env(safe-area-inset-bottom));
  }

  .site-footer {
    flex-direction: column;
  }
}

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