:root {
  color-scheme: only dark;
  --bg: #090b0d;
  --bg-soft: #101519;
  --surface: #151b20;
  --surface-2: #1c2429;
  --line: rgba(236, 231, 219, 0.14);
  --text: #f5f0e6;
  --muted: #b9b1a4;
  --warm: #ffe2ad;
  --amber: #d79f4a;
  --cyan: #55d5d8;
  --sage: #8fbca7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(85, 213, 216, 0.08), transparent 22rem),
    linear-gradient(135deg, #07090b 0%, #10151a 48%, #0a0d0f 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 226, 173, 0.09), transparent 16%, transparent 84%, rgba(85, 213, 216, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.45;
  z-index: -1;
}

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

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

main {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

:focus-visible {
  outline: 3px solid rgba(85, 213, 216, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(calc(-100% - 24px));
  border-radius: 8px;
  background: var(--warm);
  color: #111;
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1680px, calc(100% - 32px));
  min-height: 108px;
  margin: 0 auto;
  padding: 12px 0;
  transition: background 180ms ease, border-color 180ms ease, width 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  width: min(1720px, calc(100% - 24px));
  margin-top: 10px;
  padding: 10px 16px;
  min-height: 84px;
  background: rgba(9, 11, 13, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
}

.brand-wordmark {
  width: clamp(180px, 20vw, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.site-nav {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 230, 0.76);
  font-size: 1.03rem;
  font-weight: 700;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.language-link {
  min-width: 34px;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(245, 240, 230, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.language-link.is-active,
.language-link:hover,
.language-link:focus-visible {
  background: rgba(255, 226, 173, 0.16);
  color: var(--warm);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(255, 226, 173, 0.44);
  background: rgba(255, 226, 173, 0.1);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  padding: 118px 0 60px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.92) 0%, rgba(9, 11, 13, 0.68) 38%, rgba(9, 11, 13, 0.16) 72%),
    linear-gradient(180deg, rgba(9, 11, 13, 0.24) 0%, rgba(9, 11, 13, 0.84) 100%);
}

.hero-content {
  width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(245, 240, 230, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.product-meta,
.custom-points,
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button-primary {
  background: #ffe2ad;
  background-color: #ffe2ad;
  color: #101010;
  -webkit-text-fill-color: #101010;
  forced-color-adjust: none;
  box-shadow: 0 16px 42px rgba(255, 226, 173, 0.18);
}

.button-secondary {
  border-color: rgba(255, 226, 173, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.button-danger {
  border-color: rgba(215, 159, 74, 0.46);
  background: rgba(215, 159, 74, 0.12);
  color: var(--warm);
}

.button-compact {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.88rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 12px;
  max-width: 560px;
  margin: 34px 0 0;
}

.hero-metrics div {
  border-top: 1px solid rgba(255, 226, 173, 0.34);
  padding-top: 13px;
}

.hero-metrics dt {
  color: var(--warm);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-block: 1px solid var(--line);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 96px 0;
}

.split,
.custom-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.lead-stack,
.section-copy,
.custom-copy p,
.about-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.lead-stack p:last-child,
.custom-copy p:last-child,
.about-panel p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 34px;
}

.page-hero {
  padding-top: 86px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.page-hero h1,
.detail-info h1,
.detail-empty h1,
.admin-heading h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.98;
}

.page-hero-layout > p,
.detail-info > p,
.admin-form label,
.admin-product p:not(.product-type):not(.product-price) {
  color: var(--muted);
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--warm);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 226, 173, 0.44);
}

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

.category-item,
.product-card,
.contact-form,
.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 27, 32, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.category-item {
  min-height: 230px;
  padding: 22px;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  border: 1px solid rgba(85, 213, 216, 0.36);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-item p,
.product-info p,
.process-list p {
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-media-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 226, 173, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(85, 213, 216, 0.05) 46%, rgba(0, 0, 0, 0.18));
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-type {
  margin-bottom: 4px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-price,
.detail-price {
  color: var(--warm);
  font-weight: 800;
}

.product-price {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.detail-price {
  margin: 16px 0;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.product-meta span,
.custom-points span,
.values span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(245, 240, 230, 0.78);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-actions,
.detail-actions,
.admin-actions,
.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-actions {
  margin-top: auto;
  padding-top: 18px;
}

.listing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.listing-toolbar h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 240, 230, 0.76);
  padding: 8px 12px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: rgba(85, 213, 216, 0.5);
  background: rgba(85, 213, 216, 0.12);
  color: var(--text);
}

.empty-state {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.product-detail-page .section-shell {
  padding-top: 138px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(21, 27, 32, 0.72);
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.thumb-button {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.thumb-button.is-active {
  border-color: rgba(255, 226, 173, 0.72);
}

.thumb-button img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-info {
  padding-top: 8px;
}

.detail-lead {
  color: rgba(245, 240, 230, 0.9);
  font-size: 1.1rem;
  font-weight: 700;
}

.product-details {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 0;
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.product-details dt,
.product-details dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-details dt {
  color: rgba(245, 240, 230, 0.72);
  font-weight: 800;
}

.product-details dd {
  color: var(--text);
}

.detail-panel {
  margin: 22px 0;
}

.detail-panel h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.2;
}

.order-flow ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.detail-empty {
  grid-column: 1 / -1;
  max-width: 680px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list span {
  color: var(--amber);
  font-weight: 800;
}

.custom-layout {
  align-items: center;
}

.contact-form,
.admin-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-form h3,
.admin-form h2,
.admin-list-panel h2 {
  margin-bottom: 2px;
  font-size: 1rem;
  line-height: 1.2;
}

.contact-form label,
.admin-form label,
.admin-login-form label {
  display: grid;
  gap: 7px;
  color: rgba(245, 240, 230, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-login-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea,
.admin-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-login-form input:focus {
  border-color: rgba(85, 213, 216, 0.7);
  box-shadow: 0 0 0 3px rgba(85, 213, 216, 0.12);
}

.contact-form input:focus:invalid,
.contact-form select:focus:invalid,
.contact-form textarea:focus:invalid,
.admin-form input:focus:invalid,
.admin-form textarea:focus:invalid,
.admin-login-form input:focus:invalid {
  border-color: rgba(215, 159, 74, 0.82);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--amber);
}

.about-panel {
  padding: 26px;
}

.admin-page {
  padding-top: 86px;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.admin-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.admin-auth-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 27, 32, 0.74);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-login-form,
.admin-session-panel {
  display: grid;
  gap: 14px;
}

.admin-session-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.admin-login-form h2,
.admin-session-panel h2 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.admin-login-form label {
  display: grid;
  gap: 7px;
  color: rgba(245, 240, 230, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-form,
.admin-product {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 27, 32, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-form {
  position: sticky;
  top: 88px;
}

.admin-form[aria-disabled="true"],
.admin-list-panel[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.admin-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 46px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-image-preview img {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.admin-list-panel {
  display: grid;
  gap: 16px;
}

.admin-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-products {
  display: grid;
  gap: 12px;
}

.admin-product {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.admin-product img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-2);
}

.admin-product h3,
.admin-product p {
  margin-bottom: 4px;
}

.contact-layout {
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 10px;
  font-style: normal;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
}

.contact-list a,
.contact-list span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--warm);
}

.product-card img.is-fallback,
.detail-media img.is-fallback {
  object-fit: contain;
  padding: 18%;
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 11, 13, 0.94);
    backdrop-filter: blur(18px);
  }

  .language-switcher {
    margin-left: auto;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 11, 13, 0.94), rgba(9, 11, 13, 0.52)),
      linear-gradient(180deg, rgba(9, 11, 13, 0.12), rgba(9, 11, 13, 0.88));
  }

  .split,
  .custom-layout,
  .about-layout,
  .contact-layout,
  .page-hero-layout,
  .detail-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-form {
    position: static;
  }

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

  .listing-toolbar,
  .admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 92px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .brand-wordmark {
    width: 132px;
  }

  .hero {
    min-height: clamp(640px, 74svh, 760px);
    padding: 96px 0 32px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.9rem, 14.5vw, 4.25rem);
    line-height: 0.96;
    white-space: nowrap;
  }

  .hero-copy {
    max-width: 34rem;
    margin-bottom: 16px;
    font-size: clamp(0.96rem, 4.2vw, 1.08rem);
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 10px 16px;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions,
  .heading-row,
  .site-footer,
  .detail-actions,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .section-shell {
    padding: 68px 0;
  }

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

  .page-hero,
  .admin-page {
    padding-top: 72px;
  }

  .product-detail-page .section-shell {
    padding-top: 112px;
  }

  .page-hero h1,
  .detail-info h1,
  .detail-empty h1,
  .admin-heading h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

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

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

  .product-details dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .product-details dd {
    padding-top: 0;
  }

  .admin-product {
    grid-template-columns: 72px 1fr;
  }

  .admin-product img {
    width: 72px;
    height: 72px;
  }

  .admin-product-actions {
    grid-column: 1 / -1;
  }

  .admin-field-grid {
    grid-template-columns: 1fr;
  }

  .category-item {
    min-height: auto;
  }

  .category-icon {
    margin-bottom: 22px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 8px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-wordmark {
    width: 108px;
  }

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

  .language-link {
    min-width: 28px;
    padding: 7px 8px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

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

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

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