:root {
  --color-graphite: #171717;
  --color-charcoal: #2A2725;
  --color-ivory: #F7F1E8;
  --color-paper: #FFFDF8;
  --color-gold: #B8914B;
  --color-burgundy: #6E1F2E;
  --color-disabled: #9A9288;
  --color-green: #2F4A3C;
  --color-white: #FFFDF8;
  --transition: 180ms ease;

  --font-heading: "Cormorant Garamond", "Literata", "Spectral", Georgia, serif;
  --font-body: "Manrope", "Source Sans 3", "Noto Sans", Arial, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 72px;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 50px rgba(42, 39, 37, 0.10);
  --shadow-card: 0 14px 34px rgba(42, 39, 37, 0.08);
  --shadow-focus: 0 0 0 4px rgba(184, 145, 75, 0.24);

  --graphite: var(--color-graphite);
  --charcoal: var(--color-charcoal);
  --ink: var(--color-charcoal);
  --paper: var(--color-paper);
  --ivory: var(--color-ivory);
  --line: #E8DCCA;
  --muted: #655D55;
  --gold: var(--color-gold);
  --gold-light: #D8B56D;
  --burgundy: var(--color-burgundy);
  --navy: var(--color-graphite);
  --shadow: var(--shadow-soft);
  --radius: var(--radius-sm);
  --container: min(1120px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-ivory) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

h1,
h2,
h3 {
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.015em;
}

p,
li,
label,
input,
select,
textarea,
button {
  color: var(--color-charcoal);
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(197, 143, 43, 0.55);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(17, 17, 17, 0.88);
  border-bottom: 1px solid rgba(227, 189, 104, 0.16);
  color: white;
  display: flex;
  gap: 32px;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, height 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.96);
  height: 74px;
}

.brand {
  align-items: center;
  color: var(--gold-light);
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  height: 44px;
  width: 39px;
}

.brand strong {
  color: #fff8eb;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  color: #ead4a2;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin-top: 5px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.header-call {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
}

.header-call svg,
.button svg {
  height: 20px;
  width: 20px;
}

.header-call svg,
.button-primary svg {
  fill: currentColor;
}

.menu-button {
  background: transparent;
  border: 0;
  color: white;
  display: none;
  height: 44px;
  padding: 9px;
  width: 44px;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.mobile-menu {
  background: rgba(16, 16, 16, 0.98);
  border-bottom: 1px solid rgba(227, 189, 104, 0.18);
  color: white;
  display: none;
  left: 0;
  padding: 88px 24px 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}

.mobile-menu.is-open {
  display: grid;
  gap: 18px;
}

.section-dark {
  background:
    radial-gradient(circle at 74% 16%, rgba(197, 143, 43, 0.18), transparent 34%),
    linear-gradient(135deg, #101112 0%, #171311 48%, #0c0d0f 100%);
  color: #fff8eb;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  overflow: hidden;
  padding: 154px max(24px, calc((100vw - 1120px) / 2)) 74px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-bg {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  align-self: center;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.96;
  max-width: 600px;
}

.hero p {
  color: #f5e9d6;
  font-size: 18px;
  margin: 28px 0 32px;
  max-width: 470px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #d9a23a, #b77914);
  box-shadow: 0 14px 32px rgba(197, 143, 43, 0.27);
  color: #fffaf1;
}

.button-secondary,
.button-outline {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(227, 189, 104, 0.68);
  color: #fff8eb;
}

.button-outline {
  background: transparent;
  color: var(--gold);
}

.full {
  width: 100%;
}

.text-link {
  align-items: center;
  color: var(--gold-light);
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
}

.text-link.burgundy {
  color: var(--burgundy);
}

.hero-visual {
  align-items: center;
  display: none;
  grid-template-columns: 120px minmax(280px, 1fr);
  position: relative;
  z-index: 1;
}

.candle {
  align-self: end;
  background: linear-gradient(#fff7df, #d5ad70);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 0 60px rgba(227, 189, 104, 0.35);
  height: 190px;
  justify-self: center;
  margin-bottom: 86px;
  position: relative;
  width: 48px;
}

.candle span {
  background: radial-gradient(circle, #fff7b0 0 22%, #e78425 56%, transparent 68%);
  border-radius: 999px 999px 999px 0;
  height: 46px;
  left: 50%;
  position: absolute;
  top: -41px;
  transform: translateX(-50%) rotate(-34deg);
  width: 25px;
}

.hero-card {
  border: 1px solid rgba(227, 189, 104, 0.28);
  border-radius: 0 0 0 90px;
  box-shadow: var(--shadow);
  margin-top: 24px;
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.hero-card img {
  aspect-ratio: 4 / 5;
  filter: saturate(0.82) brightness(0.76);
  height: 480px;
  object-fit: cover;
  width: 100%;
}

.section {
  margin: 0 auto;
  max-width: var(--container);
  padding: 58px 0;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading h2 {
  color: #2a221f;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.steps-grid,
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.step-card,
.service-card,
.product-card,
.request-form,
details {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(78, 56, 32, 0.05);
}

.step-card {
  min-height: 198px;
  padding: 24px 22px;
  position: relative;
}

.step-number {
  align-items: center;
  background: #eadfcd;
  border-radius: 999px;
  color: #7b6650;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.step-card svg {
  color: var(--gold);
  height: 42px;
  margin: 22px 0;
  width: 42px;
}

.step-card h3,
.service-card h3 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.step-card p,
.service-card p,
.product-card p,
.product-card li,
.request-form label,
details p {
  color: #4d443d;
  font-size: 14px;
}

.service-card {
  min-height: 214px;
  padding: 28px 22px 22px;
}

.service-card a {
  color: var(--burgundy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  margin-top: 18px;
}

.service-icon-img {
  height: 54px;
  margin-bottom: 22px;
  width: 68px;
}

.service-icon {
  display: block;
  height: 54px;
  margin-bottom: 22px;
  position: relative;
  width: 68px;
}

.service-icon::before,
.service-icon::after {
  border: 2px solid var(--navy);
  content: "";
  position: absolute;
}

.service-icon.hearse::before,
.service-icon.transport::before {
  border-radius: 8px 12px 3px 3px;
  bottom: 14px;
  height: 22px;
  left: 4px;
  width: 52px;
}

.service-icon.hearse::after,
.service-icon.transport::after {
  border-radius: 999px;
  bottom: 5px;
  box-shadow: 36px 0 0 -2px var(--paper), 36px 0 0 0 var(--navy);
  height: 12px;
  left: 11px;
  width: 12px;
}

.service-icon.document::before {
  border-radius: 4px;
  height: 46px;
  left: 16px;
  top: 0;
  width: 35px;
}

.service-icon.document::after {
  border-width: 0 0 2px;
  box-shadow: 0 10px 0 var(--navy), 0 20px 0 var(--navy);
  height: 0;
  left: 24px;
  top: 16px;
  width: 20px;
}

.service-icon.wreath::before {
  border-radius: 50%;
  height: 42px;
  left: 11px;
  top: 5px;
  width: 42px;
}

.service-icon.wreath::after {
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: 12px -10px 0 var(--navy), 24px 0 0 var(--navy), 12px 10px 0 var(--navy);
  height: 6px;
  left: 17px;
  top: 24px;
  width: 6px;
}

.products-section {
  padding-top: 32px;
}

.category-rail {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}

.category-card {
  background: #121820;
  border-radius: 8px;
  color: white;
  min-height: 212px;
  overflow: hidden;
  padding: 0 0 18px;
  position: relative;
}

.category-card::after {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  content: "";
  inset: 0;
  position: absolute;
}

.category-card img {
  height: 212px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 300ms ease;
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card span,
.category-card small {
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.category-card span {
  bottom: 49px;
  font-weight: 800;
}

.category-card small {
  bottom: 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.product-preview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.mini-product-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(78, 56, 32, 0.06);
  overflow: hidden;
}

.mini-product-card img {
  aspect-ratio: 4 / 3;
  background: var(--ivory);
  object-fit: cover;
  width: 100%;
}

.mini-product-card div {
  padding: 16px;
}

.mini-product-card p {
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px;
}

.mini-product-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
}

.mini-product-card a {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 900;
}

.trust-band {
  padding: 44px max(24px, calc((100vw - 1120px) / 2));
}

.trust-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: grid;
  gap: 8px;
}

.trust-icon {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.trust-grid h3 {
  color: white;
  font-size: 16px;
}

.trust-grid p {
  color: #eadfcd;
  font-size: 14px;
  margin: 0;
}

.office-strip {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.92fr;
  margin: 0 auto;
  max-width: 1260px;
}

.office-photo img,
.office-photo picture,
.map-card {
  height: 260px;
}

.office-photo img {
  object-fit: cover;
  width: 100%;
}

.office-photo picture {
  display: block;
}

.office-copy {
  background: #fffaf1;
  padding: 48px 44px;
}

.office-copy h2 {
  font-size: 34px;
  line-height: 1.05;
}

.office-copy p {
  margin: 20px 0 0;
}

.muted {
  color: var(--muted);
}

.map-card {
  background:
    linear-gradient(33deg, transparent 49%, rgba(95, 117, 139, 0.22) 50%, transparent 51%),
    linear-gradient(100deg, transparent 47%, rgba(95, 117, 139, 0.22) 48%, transparent 49%),
    linear-gradient(0deg, rgba(197, 143, 43, 0.16) 0 1px, transparent 1px 46px),
    linear-gradient(90deg, rgba(197, 143, 43, 0.14) 0 1px, transparent 1px 58px),
    #ece5d8;
  position: relative;
}

.map-pin {
  background: #15202d;
  border-radius: 50% 50% 50% 0;
  height: 38px;
  left: 50%;
  position: absolute;
  top: 44%;
  transform: rotate(-45deg);
  width: 38px;
}

.map-pin::after {
  background: var(--paper);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 13px;
  position: absolute;
  top: 13px;
  width: 12px;
}

.content-split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

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

details {
  padding: 0;
}

summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  padding: 16px 18px;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--burgundy);
  font-size: 22px;
  position: absolute;
  right: 18px;
  top: 10px;
}

details[open] summary::after {
  content: "–";
}

details p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 14px 18px 18px;
}

.side-panel {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.product-card,
.request-form {
  padding: 18px;
}

.product-image {
  background: var(--ivory);
  border-radius: 9px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.product-image span {
  background: var(--burgundy);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  left: 12px;
  padding: 5px 10px;
  position: absolute;
  top: 12px;
  z-index: 1;
}

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

.product-card h3,
.request-form h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.product-card ul {
  margin: 8px 0 16px;
  padding-left: 18px;
}

.product-card strong {
  display: block;
  margin-bottom: 14px;
}

.product-card .button + .button {
  margin-top: 10px;
}

.request-form {
  scroll-margin-top: 100px;
}

.request-form h2 {
  margin-bottom: 18px;
}

.request-form label {
  display: grid;
  font-weight: 700;
  gap: 6px;
  margin-top: 12px;
}

input,
select,
textarea {
  background: #fffefd;
  border: 1px solid #d8cdbf;
  border-radius: 5px;
  color: var(--ink);
  min-height: 42px;
  padding: 9px 11px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.checkbox {
  align-items: start;
  display: flex !important;
  gap: 8px !important;
  line-height: 1.35;
}

.checkbox input {
  margin-top: 3px;
  min-height: auto;
  width: auto;
}

.request-form button {
  border: 0;
  cursor: pointer;
  margin-top: 14px;
}

.form-status {
  color: #1c6c37;
  font-weight: 800;
  margin: 12px 0 0;
  min-height: 22px;
}

.site-footer {
  padding: 42px max(24px, calc((100vw - 1120px) / 2)) 28px;
}

.footer-main {
  align-items: center;
  border-bottom: 1px solid rgba(227, 189, 104, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1.2fr auto auto;
  padding-bottom: 30px;
}

.footer-contact a {
  color: white;
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.footer-contact span,
.footer-main p,
.footer-bottom,
.footer-bottom a {
  color: #d6c6ae;
}

.footer-main h2 {
  font-size: 30px;
}

.messengers {
  display: flex;
  gap: 10px;
}

.messengers a {
  align-items: center;
  background: rgba(197, 143, 43, 0.14);
  border: 1px solid rgba(227, 189, 104, 0.3);
  border-radius: 999px;
  color: var(--gold-light);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 28px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom .brand strong {
  font-size: 21px;
}

.footer-bottom .brand-mark {
  height: 34px;
  width: 31px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav,
  .language-pill,
  .header-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    height: 76px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
  }

  .hero-visual {
    grid-template-columns: 88px minmax(0, 1fr);
    margin-top: 34px;
  }

  .candle {
    height: 130px;
    margin-bottom: 40px;
  }

  .hero-card img {
    height: 310px;
  }

  .steps-grid,
  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-rail {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .office-strip {
    grid-template-columns: 1fr;
  }

  .office-photo img,
  .map-card {
    height: 220px;
  }

  .content-split {
    grid-template-columns: 1fr;
  }

  .side-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 640px);
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand-mark {
    height: 36px;
    width: 32px;
  }

  .hero {
    padding: 108px 18px 34px;
  }

  h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
    margin: 20px 0 24px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    min-height: 52px;
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 52px 1fr;
  }

  .candle {
    height: 90px;
    width: 32px;
  }

  .candle span {
    height: 32px;
    top: -29px;
    width: 18px;
  }

  .hero-card {
    border-radius: 0 0 0 46px;
  }

  .hero-card img {
    height: 210px;
  }

  .section {
    padding: 38px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .steps-grid,
  .service-grid,
  .trust-grid,
  .category-rail,
  .product-preview-grid,
  .faq-grid,
  .side-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card img {
    min-height: 188px;
  }

  .trust-band {
    padding: 34px 18px;
  }

  .office-copy {
    padding: 34px 18px;
  }

  .content-split {
    gap: 18px;
  }

  .footer-main {
    align-items: start;
  }

  .mobile-cta {
    background: #101112;
    border-top: 1px solid rgba(227, 189, 104, 0.18);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-cta a {
    color: #fff8eb;
    font-size: 12px;
    font-weight: 800;
    min-height: 60px;
    padding: 12px 6px;
    text-align: center;
  }

  .mobile-cta a:nth-child(2) {
    background: linear-gradient(135deg, #d9a23a, #b77914);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.media-kit-page {
  background: #f6efe4;
}

.media-kit-header {
  align-items: center;
  background: #101112;
  border-bottom: 1px solid rgba(227, 189, 104, 0.18);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 22px max(22px, calc((100vw - 1120px) / 2));
}

.media-kit-main {
  margin: 0 auto;
  max-width: var(--container);
  padding: 42px 0 80px;
}

.media-kit-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 54px;
}

.media-kit-hero h1 {
  color: #1f1b18;
}

.media-kit-hero p,
.media-note {
  color: var(--muted);
}

.media-kit-hero img,
.media-grid figure,
.media-strip img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(73, 49, 24, 0.1);
}

.media-kit-section {
  margin-top: 54px;
}

.media-grid {
  display: grid;
  gap: 18px;
}

.media-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.media-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.media-grid figure {
  background: #fffaf1;
  margin: 0;
  overflow: hidden;
}

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

.media-grid.two img {
  aspect-ratio: 16 / 9;
}

.media-grid figcaption {
  color: #3b312b;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 16px;
}

.developer-pack-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.developer-pack-grid a {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--burgundy);
  font-weight: 900;
  padding: 16px 18px;
}

.media-strip {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.media-strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: start;
  width: 260px;
}

@media (max-width: 820px) {
  .media-kit-hero,
  .media-grid.two,
  .media-grid.three,
  .developer-pack-grid {
    grid-template-columns: 1fr;
  }
}

/* Design token normalization layer: calm bureau UI */
.container,
.section-heading,
.hero-content,
.trust-grid,
.footer-main,
.footer-bottom {
  max-width: var(--container);
}

.section,
.office-strip,
.content-split {
  background-color: transparent;
}

.section-dark,
.site-header,
.site-footer,
.mobile-menu {
  background-color: var(--color-graphite);
  color: var(--color-paper);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.site-header a,
.site-footer a,
.site-footer p,
.site-footer h2 {
  color: var(--color-paper);
}

.text-link,
.service-card a,
.mini-product-card a,
.burgundy {
  color: var(--color-burgundy);
  font-weight: 700;
}

.text-link:hover,
.service-card a:hover,
.mini-product-card a:hover,
.burgundy:hover {
  color: var(--color-gold);
}

.button,
button,
.header-call,
.mobile-cta a {
  align-items: center;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.header-call:hover,
.mobile-cta a:hover,
button:hover {
  transform: translateY(-1px);
}

.button-primary,
.request-form button,
.mobile-cta a:nth-child(2) {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-graphite);
}

.button-primary:hover,
.request-form button:hover,
.mobile-cta a:nth-child(2):hover {
  background: #A57F3F;
  border-color: #A57F3F;
  color: var(--color-paper);
}

.button-secondary,
.header-call {
  background: rgba(255, 253, 248, 0.04);
  border-color: var(--color-gold);
  color: var(--color-paper);
}

.button-secondary:hover,
.header-call:hover {
  background: rgba(184, 145, 75, 0.14);
  border-color: var(--color-gold);
  color: var(--color-paper);
}

.button-outline,
.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--color-burgundy);
}

.button-outline:hover,
.button-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-graphite);
}

.service-card,
.product-card,
.request-form,
.mini-product-card,
details,
.category-card {
  border-color: var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.service-card,
.product-card,
.request-form,
.mini-product-card,
details {
  background: rgba(255, 253, 248, 0.86);
}

.service-card:hover,
.mini-product-card:hover,
.category-card:hover {
  border-color: rgba(184, 145, 75, 0.42);
  box-shadow: var(--shadow-soft);
}

.service-icon-img,
.trust-icon,
.map-pin,
.brand-mark {
  color: var(--color-gold);
}

input,
select,
textarea {
  background: var(--color-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  color: var(--color-graphite);
  min-height: 44px;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-disabled);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-focus);
  outline: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--color-burgundy);
}

.field-error,
.form-status {
  color: var(--color-burgundy);
  font-size: 0.95rem;
}

:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

::selection {
  background: rgba(184, 145, 75, 0.28);
  color: var(--color-graphite);
}

/* Header and mobile navigation refinement */
.site-header {
  background: rgba(23, 23, 23, 0.94);
  border-bottom: 1px solid rgba(255, 253, 248, 0.10);
  box-shadow: 0 10px 32px rgba(23, 23, 23, 0.10);
  color: var(--color-paper);
}

.site-header.is-scrolled {
  background: rgba(23, 23, 23, 0.98);
  border-bottom-color: rgba(184, 145, 75, 0.22);
}

.brand {
  color: var(--color-paper);
}

.brand strong {
  color: var(--color-paper);
  font-family: var(--font-heading);
  letter-spacing: 0.035em;
}

.brand small {
  color: rgba(255, 253, 248, 0.72);
  letter-spacing: 0.09em;
}

.desktop-nav a {
  color: rgba(255, 253, 248, 0.86);
  font-weight: 700;
  position: relative;
}

.language-pill {
  align-items: center;
  border: 1px solid rgba(255, 253, 248, 0.20);
  border-radius: var(--radius-pill);
  color: rgba(255, 253, 248, 0.82);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-width: 46px;
  padding: 0 var(--space-3);
}

.desktop-nav a::after {
  background: var(--color-gold);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--color-paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-call {
  background: rgba(184, 145, 75, 0.12);
  border: 1px solid rgba(184, 145, 75, 0.86);
  color: var(--color-paper);
  gap: var(--space-3);
}

.header-call svg {
  color: var(--color-gold);
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-graphite);
}

.header-call:hover svg,
.header-call:focus-visible svg {
  color: var(--color-graphite);
}

.menu-button {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius-xs);
  color: var(--color-paper);
}

.menu-button:hover,
.menu-button:focus-visible {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-focus);
}

.menu-button span {
  background: currentColor;
}

.mobile-menu {
  background: rgba(23, 23, 23, 0.98);
  border-bottom: 1px solid rgba(184, 145, 75, 0.22);
  box-shadow: 0 18px 44px rgba(23, 23, 23, 0.18);
}

.mobile-menu a {
  color: var(--color-paper);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--color-gold);
}

@media (max-width: 1120px) and (min-width: 981px) {
  .site-header {
    gap: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }

  .header-call {
    padding-left: 16px;
    padding-right: 16px;
  }

  .language-pill {
    min-width: 42px;
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .language-pill {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: 74px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .header-call {
    display: inline-flex;
    height: 42px;
    min-height: 42px;
    padding: 0 12px;
  }

  .header-call svg {
    height: 18px;
    width: 18px;
  }

  .header-call {
    font-size: 0;
  }

  .menu-button {
    display: inline-flex;
    height: 42px;
    min-height: 42px;
    width: 42px;
  }

  .mobile-menu {
    padding-top: 84px;
  }

  .mobile-cta {
    background: var(--color-graphite);
    border-top: 1px solid rgba(184, 145, 75, 0.28);
    bottom: 0;
    box-shadow: 0 -12px 36px rgba(23, 23, 23, 0.16);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 80;
  }

  .mobile-cta a {
    color: var(--color-paper);
    min-height: 60px;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--color-gold);
    color: var(--color-graphite);
  }

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

/* Hero PRD refinement */
.hero {
  align-items: center;
  background: var(--color-graphite);
  isolation: isolate;
  min-height: clamp(680px, 78vh, 760px);
  overflow: hidden;
  padding: 136px max(24px, calc((100vw - 1120px) / 2)) 92px;
  position: relative;
}

.hero-bg {
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero-bg img {
  filter: saturate(0.76) contrast(0.94);
  height: 100%;
  object-fit: cover;
  object-position: 67% 50%;
  width: 100%;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.94) 0%, rgba(23, 23, 23, 0.84) 34%, rgba(23, 23, 23, 0.56) 62%, rgba(23, 23, 23, 0.72) 100%),
    radial-gradient(circle at 72% 42%, rgba(184, 145, 75, 0.18), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-content {
  margin: 0;
  max-width: 620px;
  padding: 0;
}

.hero-content h1 {
  color: var(--color-paper);
  font-size: clamp(3.1rem, 7vw, 5.45rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.hero-content > p:not(.hero-trust) {
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  max-width: 560px;
}

.hero-office-address {
  align-items: center;
  color: rgba(255, 253, 248, 0.82);
  display: inline-flex;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
  margin-top: var(--space-4);
  max-width: 100%;
}

.hero-office-address svg {
  color: var(--color-gold);
  flex: 0 0 auto;
  height: 21px;
  width: 21px;
}

.hero-actions {
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.hero .button {
  min-height: 56px;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

.hero .button-primary {
  background: var(--color-gold);
  color: var(--color-graphite);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: #A57F3F;
  color: var(--color-paper);
}

.hero .button-secondary {
  background: rgba(255, 253, 248, 0.04);
  border-color: rgba(184, 145, 75, 0.72);
  color: var(--color-paper);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: rgba(184, 145, 75, 0.16);
  border-color: var(--color-gold);
}

.hero .text-link {
  color: var(--color-gold);
  display: inline-flex;
  margin-top: var(--space-5);
}

.hero .text-link:hover,
.hero .text-link:focus-visible {
  color: var(--color-paper);
}

.hero-trust {
  border-left: 2px solid rgba(184, 145, 75, 0.78);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.98rem;
  margin: var(--space-5) 0 0;
  max-width: 430px;
  padding-left: var(--space-4);
}

@media (max-width: 680px) {
  .hero {
    min-height: min(720px, calc(100svh - 0px));
    padding: 104px 18px 40px;
  }

  .hero-bg img {
    object-position: 58% 50%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(23, 23, 23, 0.88) 0%, rgba(23, 23, 23, 0.78) 44%, rgba(23, 23, 23, 0.94) 100%),
      radial-gradient(circle at 62% 18%, rgba(184, 145, 75, 0.14), transparent 40%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.28rem, 11vw, 3.15rem);
    line-height: 1.02;
    margin-bottom: var(--space-4);
  }

  .hero-content > p:not(.hero-trust) {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 34rem;
  }

  .hero-office-address {
    font-size: 0.94rem;
    margin-top: var(--space-3);
  }

  .hero-actions {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-5);
  }

  .hero .button {
    min-height: 52px;
    width: 100%;
  }

  .hero .text-link {
    margin-top: var(--space-4);
  }

  .hero-trust {
    font-size: 0.94rem;
    margin-top: var(--space-4);
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 96px;
  }

  .hero-content h1 {
    font-size: 2.22rem;
  }

  .hero-content > p:not(.hero-trust) {
    line-height: 1.48;
  }

  .hero-office-address {
    align-items: flex-start;
    gap: 8px;
  }

  .hero-actions {
    margin-top: var(--space-4);
  }
}

/* First steps section */
.steps-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94) 0%, rgba(247, 241, 232, 0.96) 100%);
  padding-top: var(--space-8);
}

.section-kicker {
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
}

.steps-section .section-heading {
  margin-bottom: var(--space-6);
}

.steps-section .section-heading p:not(.section-kicker) {
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.steps-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--container);
}

.step-card {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: var(--space-4);
  min-height: 260px;
  padding: var(--space-5);
  position: relative;
}

.step-card:hover {
  border-color: rgba(184, 145, 75, 0.42);
  box-shadow: var(--shadow-soft);
}

.step-number {
  align-items: center;
  background: #EEE2CF;
  border-radius: var(--radius-pill);
  color: var(--color-charcoal);
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.step-icon {
  color: var(--color-gold);
  height: 38px;
  margin-top: var(--space-2);
  width: 38px;
}

.step-card h3 {
  color: var(--color-graphite);
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
}

.step-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
  margin: 0;
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .steps-section {
    padding-top: var(--space-7);
  }

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

  .step-card {
    gap: var(--space-3);
    min-height: auto;
    padding: 22px;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 1rem;
  }
}

/* Main services section */
.services-section {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.96) 0%, rgba(255, 253, 248, 0.94) 100%);
}

.services-section .section-heading {
  align-items: end;
  gap: var(--space-5);
}

.services-section .section-heading h2 {
  margin-bottom: var(--space-2);
}

.services-section .section-heading p:not(.section-kicker) {
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

.services-section .service-grid {
  gap: var(--space-4);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-section .service-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: var(--space-5);
}

.services-section .service-card:hover,
.services-section .service-card:focus-within {
  border-color: rgba(184, 145, 75, 0.44);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.services-section .service-icon-img {
  color: var(--color-gold);
  height: 42px;
  margin-bottom: var(--space-5);
  width: 42px;
}

.services-section .service-card h3 {
  color: var(--color-graphite);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
  margin: 0 0 var(--space-3);
}

.services-section .service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
  margin: 0 0 var(--space-5);
}

.services-section .service-card a {
  align-items: center;
  color: var(--color-burgundy);
  display: inline-flex;
  font-weight: 800;
  gap: var(--space-2);
  margin-top: auto;
  width: fit-content;
}

.services-section .service-card a:hover,
.services-section .service-card a:focus-visible,
.services-section .section-heading .text-link:hover,
.services-section .section-heading .text-link:focus-visible {
  color: var(--color-gold);
}

@media (max-width: 980px) {
  .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services-section .section-heading {
    align-items: start;
  }

  .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  .services-section .service-card {
    min-height: auto;
    padding: 22px;
  }

  .services-section .service-card p,
  .services-section .service-card a {
    font-size: 1rem;
  }
}

/* Product categories catalog */
.products-section .category-rail {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto var(--space-7);
  max-width: var(--container);
}

.products-section .category-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  color: var(--color-charcoal);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.products-section .category-card::after {
  display: none;
}

.products-section .category-card img {
  aspect-ratio: 4 / 3;
  background: var(--color-ivory);
  height: auto;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
  width: 100%;
}

.products-section .category-card span,
.products-section .category-card p,
.products-section .category-card small {
  margin-left: var(--space-5);
  margin-right: var(--space-5);
  position: static;
  z-index: auto;
}

.products-section .category-card span {
  color: var(--color-graphite);
  display: block;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.28;
  margin-top: var(--space-5);
}

.products-section .category-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: var(--space-5);
  margin-top: var(--space-3);
}

.products-section .category-card small {
  align-items: center;
  color: var(--color-gold);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  margin-top: auto;
}

.products-section .category-card:hover,
.products-section .category-card:focus-visible {
  border-color: rgba(184, 145, 75, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.products-section .category-card:hover img,
.products-section .category-card:focus-visible img {
  transform: scale(1.025);
}

.products-section .category-card:hover small,
.products-section .category-card:focus-visible small {
  color: var(--color-burgundy);
}

@media (max-width: 980px) {
  .products-section .category-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .products-section .category-rail {
    gap: var(--space-4);
    grid-template-columns: 1fr;
  }

  .products-section .category-card span,
  .products-section .category-card p,
  .products-section .category-card small {
    margin-left: 22px;
    margin-right: 22px;
  }

  .products-section .category-card p,
  .products-section .category-card small {
    font-size: 1rem;
  }
}

/* Popular products */
.product-preview-heading {
  max-width: var(--container);
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
}

.product-preview-heading h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-graphite);
}

.product-preview-heading p:not(.section-kicker) {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
}

.products-section .product-preview-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.product-listing-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-listing-card:hover,
.product-listing-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(184, 145, 75, 0.46);
  box-shadow: var(--shadow-soft);
}

.product-listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: var(--color-ivory);
}

.product-listing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
}

.product-listing-body h4 {
  margin: 0;
  color: var(--color-graphite);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.3;
}

.product-category {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-listing-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-charcoal);
}

.product-listing-body li {
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-listing-body strong {
  margin-top: auto;
  color: var(--color-graphite);
  font-size: 1rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.product-actions .button {
  width: 100%;
  min-height: 46px;
  padding: 0 var(--space-4);
}

.product-actions .button[aria-disabled="true"],
.product-actions .button:disabled {
  color: var(--color-paper);
  background: var(--color-disabled);
  border-color: var(--color-disabled);
  pointer-events: none;
  opacity: 0.88;
}

@media (max-width: 980px) {
  .products-section .product-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .product-preview-heading {
    display: block;
    margin-bottom: var(--space-4);
  }

  .products-section .product-preview-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .product-listing-body {
    padding: var(--space-4);
  }
}

/* Product card media balance */
@media (min-width: 981px) {
  .product-listing-card img {
    aspect-ratio: 1 / 1.15;
  }

  .product-listing-body {
    gap: var(--space-2);
  }

  .product-actions {
    grid-template-columns: minmax(0, 1fr) minmax(116px, 0.72fr);
    align-items: stretch;
  }

  .product-actions .button {
    font-size: 0.9rem;
  }
}

/* Trust section */
.trust-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) var(--space-4);
  color: var(--color-paper);
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 145, 75, 0.18), transparent 34%),
    linear-gradient(135deg, var(--color-graphite) 0%, var(--color-charcoal) 100%);
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 145, 75, 0.58), transparent);
}

.trust-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

.trust-band .section-kicker {
  color: var(--color-gold);
}

.trust-band h2 {
  max-width: 720px;
  margin: 0 0 var(--space-6);
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.trust-band .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

.trust-item {
  min-width: 0;
  padding: var(--space-5);
  background: rgba(255, 253, 248, 0.055);
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.trust-item .trust-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 1px solid rgba(184, 145, 75, 0.48);
  border-radius: 999px;
  background: rgba(184, 145, 75, 0.08);
}

.trust-item .trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h3 {
  margin: 0 0 var(--space-2);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.98rem;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .trust-band .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .trust-band {
    padding: 48px var(--space-4);
  }

  .trust-band .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .trust-item {
    padding: var(--space-4);
    justify-items: center;
    text-align: center;
  }

  .trust-item .trust-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Contact section */
.contact-section {
  padding: clamp(56px, 7vw, 96px) var(--space-4);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 241, 232, 0.88)),
    var(--color-ivory);
}

.contact-shell {
  max-width: var(--container);
  margin: 0 auto;
}

.contact-intro {
  max-width: 760px;
  margin-bottom: var(--space-6);
}

.contact-intro h2 {
  margin: 0 0 var(--space-3);
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.03;
}

.contact-intro p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-areas:
    "card map"
    "photo form";
  gap: var(--space-5);
  align-items: stretch;
}

.contact-primary-card,
.contact-photo-card,
.contact-map-card,
.contact-form {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-primary-card {
  grid-area: card;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-phone-block span {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-phone {
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  font-weight: 700;
  line-height: 0.98;
  text-decoration: none;
}

.contact-phone:hover,
.contact-phone:focus-visible {
  color: var(--color-burgundy);
}

.contact-phone-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px;
  margin-top: var(--space-4);
}

.contact-phone-option {
  align-items: flex-start;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(184, 145, 75, 0.32);
  border-radius: var(--radius-sm);
  color: var(--color-charcoal);
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  text-decoration: none;
}

.contact-phone-option span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.contact-phone-option strong {
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  line-height: 1.15;
  white-space: nowrap;
}

.contact-phone-option.is-primary {
  background: rgba(184, 145, 75, 0.13);
  border-color: rgba(184, 145, 75, 0.58);
}

.contact-phone-option:hover,
.contact-phone-option:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-burgundy);
  box-shadow: var(--shadow-focus);
}

.contact-details {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.contact-details div {
  min-width: 0;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(184, 145, 75, 0.28);
}

.contact-details dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--color-charcoal);
  font-weight: 700;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.contact-actions .button {
  min-height: 48px;
}

.contact-photo-card {
  grid-area: photo;
  overflow: hidden;
  margin: 0;
}

.contact-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.contact-photo-card figcaption {
  padding: var(--space-3) var(--space-4);
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.contact-map-card {
  grid-area: map;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.contact-map-visual {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-map-copy {
  padding: var(--space-5);
}

.contact-map-copy h3 {
  margin: 0 0 var(--space-2);
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.1;
}

.contact-map-copy p {
  margin: 0 0 var(--space-4);
  color: var(--color-charcoal);
  line-height: 1.6;
}

.contact-form {
  grid-area: form;
  padding: clamp(22px, 3vw, 32px);
}

.contact-form h2 {
  margin-bottom: var(--space-2);
}

.contact-form > p {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card"
      "map"
      "photo"
      "form";
  }
}

@media (max-width: 680px) {
  .contact-section {
    padding: 48px var(--space-4) 64px;
  }

  .contact-intro {
    margin-bottom: var(--space-5);
  }

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

  .contact-phone-list {
    grid-template-columns: 1fr;
  }

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

  .contact-photo-card img,
  .contact-map-visual {
    min-height: 220px;
  }

  .contact-map-card {
    grid-template-rows: minmax(220px, auto) auto;
  }
}

/* Request form states */
.request-form .form-field {
  display: grid;
  gap: 7px;
}

.request-form .form-field label,
.request-form > label.checkbox {
  color: var(--color-charcoal);
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.82rem 0.95rem;
  color: var(--color-graphite);
  background: var(--color-paper);
  border: 1px solid rgba(42, 39, 37, 0.18);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.request-form textarea {
  min-height: 112px;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: var(--color-disabled);
}

.request-form input:hover,
.request-form select:hover,
.request-form textarea:hover {
  border-color: rgba(184, 145, 75, 0.46);
}

.request-form input:focus-visible,
.request-form select:focus-visible,
.request-form textarea:focus-visible {
  outline: 3px solid rgba(184, 145, 75, 0.26);
  outline-offset: 2px;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(184, 145, 75, 0.12);
}

.request-form [aria-invalid="true"] {
  border-color: rgba(110, 31, 46, 0.76);
  background: rgba(110, 31, 46, 0.035);
}

.form-error {
  min-height: 1.25rem;
  margin: 0;
  color: var(--color-burgundy);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.request-form .checkbox {
  align-items: flex-start;
  gap: 10px;
  padding: var(--space-3);
  background: rgba(247, 241, 232, 0.62);
  border: 1px solid rgba(42, 39, 37, 0.12);
  border-radius: var(--radius-sm);
}

.request-form .checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--color-gold);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

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

.form-status--success {
  color: var(--color-green);
}

.request-form.is-loading {
  cursor: progress;
}

.request-form.is-loading input,
.request-form.is-loading select,
.request-form.is-loading textarea,
.request-form.is-loading .checkbox {
  opacity: 0.72;
}

.request-form button[disabled] {
  color: var(--color-paper);
  background: var(--color-disabled);
  border-color: var(--color-disabled);
  cursor: not-allowed;
  box-shadow: none;
}

.form-call-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 var(--space-4);
  color: var(--color-burgundy);
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(110, 31, 46, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(110, 31, 46, 0.04);
}

.form-call-fallback.is-visible {
  display: inline-flex;
}

.form-call-fallback:hover,
.form-call-fallback:focus-visible {
  color: var(--color-paper);
  background: var(--color-burgundy);
}

/* FAQ accordion */
.faq-block {
  width: 100%;
}

.faq-block .section-heading {
  margin-bottom: var(--space-5);
}

.faq-accordion {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--color-graphite);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  position: relative;
  border: 1px solid rgba(184, 145, 75, 0.52);
  border-radius: 999px;
  background: rgba(184, 145, 75, 0.08);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-question:hover {
  color: var(--color-burgundy);
  background: rgba(247, 241, 232, 0.56);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(184, 145, 75, 0.36);
  outline-offset: -3px;
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-charcoal);
  font-size: 1rem;
  line-height: 1.68;
}

.faq-answer p {
  max-width: 780px;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-item {
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }

  .faq-item:has(.faq-question[aria-expanded="true"]) {
    transform: translateY(-1px);
    border-color: rgba(184, 145, 75, 0.42);
    box-shadow: var(--shadow-soft);
  }
}

@media (max-width: 680px) {
  .faq-question {
    min-height: 58px;
    padding: var(--space-4);
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 var(--space-4) var(--space-4);
    font-size: 1rem;
  }
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 82px) var(--space-4);
  color: var(--color-paper);
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 145, 75, 0.22), transparent 32%),
    linear-gradient(135deg, var(--color-charcoal), var(--color-graphite));
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.05), transparent 45%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.final-cta .section-kicker {
  color: var(--color-gold);
}

.final-cta h2 {
  margin: 0 0 var(--space-3);
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
}

.final-cta p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.08rem;
  line-height: 1.62;
}

.final-cta-actions {
  flex: 0 0 auto;
  display: flex;
  gap: var(--space-3);
}

.site-footer {
  padding: clamp(44px, 5vw, 72px) var(--space-4) calc(24px + env(safe-area-inset-bottom));
  color: var(--color-paper);
  background: var(--color-graphite);
  border-top: 1px solid rgba(184, 145, 75, 0.26);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.9fr) minmax(160px, 0.7fr) minmax(190px, 0.8fr);
  gap: var(--space-6);
  align-items: start;
}

.footer-brand-block p,
.footer-note,
.footer-contact-block address span {
  color: rgba(255, 253, 248, 0.74);
  line-height: 1.62;
}

.footer-brand {
  color: var(--color-paper);
  margin-bottom: var(--space-4);
}

.footer-brand:hover,
.footer-brand:focus-visible {
  color: var(--color-gold);
}

.footer-brand-block p,
.footer-note {
  margin: 0;
  max-width: 360px;
}

.site-footer h3 {
  margin: 0 0 var(--space-3);
  color: var(--color-paper);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-block address {
  display: grid;
  gap: var(--space-2);
  font-style: normal;
}

.footer-phone-list {
  display: grid;
  gap: 6px;
  font-size: 1rem;
}

.footer-phone {
  color: var(--color-paper);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.footer-phone.is-primary {
  font-size: 1.25rem;
}

.footer-phone:not(.is-primary) {
  color: rgba(255, 253, 248, 0.72);
}

.footer-nav {
  display: grid;
  gap: var(--space-2);
}

.footer-nav a,
.footer-bottom a {
  color: rgba(255, 253, 248, 0.78);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  color: var(--color-gold);
}

.footer-actions {
  display: grid;
  gap: var(--space-3);
}

.footer-actions .button {
  width: 100%;
}

.footer-bottom {
  max-width: var(--container);
  margin: var(--space-6) auto 0;
  padding-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: rgba(255, 253, 248, 0.68);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.site-footer a:focus-visible,
.final-cta a:focus-visible {
  outline: 3px solid rgba(184, 145, 75, 0.46);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }
}

@media (max-width: 680px) {
  .final-cta {
    padding: 44px var(--space-4);
  }

  .final-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 38px var(--space-4) calc(92px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-brand-block p,
  .footer-note {
    max-width: none;
  }

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

  .footer-nav h3 {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: var(--space-5);
  }
}

/* Compact mobile footer refinement */
@media (max-width: 680px) {
  .site-footer {
    padding-top: 30px;
  }

  .footer-inner {
    gap: var(--space-3);
  }

  .footer-brand {
    margin-bottom: var(--space-2);
  }

  .footer-brand-block p,
  .footer-note,
  .footer-contact-block address span {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .site-footer h3 {
    margin-bottom: var(--space-2);
    font-size: 0.82rem;
  }

  .footer-phone {
    font-size: 1.12rem;
  }

  .footer-actions {
    gap: var(--space-2);
  }

  .footer-actions .button {
    min-height: 44px;
  }

  .footer-bottom {
    gap: var(--space-2);
    padding-top: var(--space-3);
  }
}

/* Media stability overrides */
.category-card img,
.product-listing-card img,
.contact-photo-card img,
.product-card .product-image img {
  height: auto;
}

.product-listing-card img {
  aspect-ratio: 1 / 1;
}

@media (min-width: 981px) {
  .product-listing-card img {
    aspect-ratio: 1 / 1;
  }
}

/* Final responsive polish */
:root {
  --container: min(1180px, calc(100vw - clamp(28px, 6vw, 96px)));
}

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

.container,
.section,
.section-heading,
.hero-content,
.steps-grid,
.services-section .service-grid,
.products-section .category-rail,
.products-section .product-preview-grid,
.trust-grid,
.contact-grid,
.faq-grid,
.final-cta-inner,
.footer-inner,
.footer-bottom {
  width: min(100%, var(--container));
}

.section {
  padding-block: clamp(46px, 6vw, 76px);
}

.section-heading h2,
.product-preview-heading h3,
.final-cta h2 {
  text-wrap: balance;
}

.section-heading p,
.product-preview-heading p,
.step-card p,
.services-section .service-card p,
.products-section .category-card p,
.product-listing-body li,
.trust-card p,
.faq-answer,
.footer-brand-block p,
.footer-note,
.footer-contact-block address span {
  text-wrap: pretty;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(184, 145, 75, 0.72);
  outline-offset: 4px;
  box-shadow: var(--shadow-focus);
}

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

.products-section .category-rail {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.products-section .category-card,
.product-listing-card,
.services-section .service-card,
.step-card {
  height: 100%;
}

.products-section .category-card img {
  aspect-ratio: 4 / 3;
}

.products-section .category-card p {
  min-height: 3.1em;
}

.products-section .product-preview-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-listing-card img {
  aspect-ratio: 1 / 1;
}

.product-listing-body h4 {
  min-height: 2.6em;
}

@media (min-width: 1280px) {
  .products-section .product-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  :root {
    --container: min(100vw - 40px, 920px);
  }

  .hero {
    min-height: clamp(640px, 78svh, 720px);
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .steps-grid,
  .services-section .service-grid,
  .products-section .category-rail,
  .products-section .product-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-listing-body h4 {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 76px;
    scroll-padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  body {
    font-size: 16px;
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: 66px;
    min-height: 66px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    gap: 8px;
    max-width: min(48vw, 178px);
  }

  .brand-mark {
    height: 31px;
    width: 28px;
  }

  .brand strong {
    font-size: 1rem;
    letter-spacing: 0.045em;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-call,
  .menu-button {
    height: 40px;
    min-height: 40px;
  }

  .header-call {
    padding-inline: 11px;
  }

  .menu-button {
    width: 40px;
  }

  .mobile-menu {
    padding-top: 74px;
  }

  .hero {
    min-height: min(680px, 100svh);
    padding: 88px 16px 30px;
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 10.1vw, 2.62rem);
    line-height: 1.03;
    margin-bottom: 14px;
    max-width: 11.4em;
  }

  .hero-content > p:not(.hero-trust) {
    font-size: 1rem;
    line-height: 1.48;
    margin: 0;
    max-width: 23rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .hero .button {
    font-size: 1rem;
    min-height: 48px;
    width: 100%;
  }

  .hero .text-link {
    font-size: 1rem;
    margin-top: 14px;
  }

  .hero-trust {
    font-size: 1rem;
    line-height: 1.44;
    margin-top: 14px;
    padding-left: 12px;
  }

  .section {
    padding-block: 42px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-heading h2,
  .product-preview-heading h3 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

  .steps-grid,
  .services-section .service-grid,
  .products-section .category-rail,
  .products-section .product-preview-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .services-section .service-card,
  .products-section .category-card,
  .product-listing-card {
    border-radius: var(--radius-sm);
  }

  .step-card,
  .services-section .service-card {
    padding: 20px;
  }

  .step-card p,
  .services-section .service-card p,
  .products-section .category-card p,
  .product-category,
  .product-listing-body li,
  .product-listing-body strong,
  .faq-answer,
  .request-form label,
  .request-form input,
  .request-form select,
  .request-form textarea {
    font-size: 1rem;
  }

  .products-section .category-card span {
    font-size: 1.08rem;
  }

  .product-preview-heading {
    gap: 10px;
  }

  .product-listing-body {
    padding: 18px;
  }

  .product-actions .button {
    min-height: 48px;
  }

  .mobile-cta {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-cta a {
    font-size: 1rem;
    min-height: 64px;
    padding: 10px 4px;
  }

  .final-cta {
    padding: 40px 16px;
  }

  .final-cta h2 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
  }

  .final-cta-actions .button,
  .footer-actions .button {
    width: 100%;
  }

  .site-footer {
    padding: 30px 16px calc(104px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-nav {
    gap: 10px 14px;
  }

  .footer-brand-block p,
  .footer-note,
  .footer-contact-block address span,
  .footer-nav a,
  .footer-bottom,
  .footer-bottom a {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: min(650px, 100svh);
    padding-top: 84px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero .button {
    min-height: 46px;
  }

  .hero-trust {
    margin-top: 12px;
  }
}

@media (max-width: 680px) {
  .section-kicker,
  .hero .hero-trust,
  .button,
  .product-actions .button,
  .product-card p,
  .product-card li,
  .trust-card p,
  .trust-item p,
  .field-error,
  .form-status {
    font-size: 1rem;
  }

  .products-section .category-card span {
    min-height: 1.35em;
  }

  .products-section .category-card p {
    min-height: 3.1em;
  }

  .products-section .category-card {
    min-height: 466px;
  }

  .product-listing-body h4 {
    min-height: 2.6em;
  }

  .product-listing-body ul {
    min-height: 5.9em;
  }

  .product-listing-card {
    min-height: 720px;
  }
}

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

  .button:hover,
  .product-listing-card:hover,
  .products-section .category-card:hover,
  .services-section .service-card:hover,
  .step-card:hover {
    transform: none !important;
  }
}

/* Calm microinteractions */
:root {
  --motion-fast: 150ms ease;
  --motion-calm: 220ms ease;
  --motion-slow: 320ms ease;
}

.button,
.header-call,
.mobile-cta a,
.footer-actions .button,
.final-cta-actions .button,
.product-actions .button,
.text-link,
.desktop-nav a,
.mobile-menu a,
.footer-nav a,
.footer-bottom a,
.footer-phone,
.contact-phone,
.contact-phone-option,
.form-call-fallback {
  transition:
    background-color var(--motion-calm),
    border-color var(--motion-calm),
    color var(--motion-calm),
    box-shadow var(--motion-calm),
    transform var(--motion-fast);
}

.button-primary:hover,
.button-primary:focus-visible,
.request-form button:hover,
.request-form button:focus-visible,
.mobile-cta a:nth-child(2):hover,
.mobile-cta a:nth-child(2):focus-visible {
  background: #A57F3F;
  border-color: #A57F3F;
  color: var(--color-paper);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.header-call:hover,
.header-call:focus-visible {
  border-color: var(--color-gold);
  box-shadow: 0 10px 26px rgba(42, 39, 37, 0.12), var(--shadow-focus);
}

.text-link:hover,
.text-link:focus-visible,
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible,
.contact-phone:hover,
.contact-phone:focus-visible,
.contact-phone-option:hover,
.contact-phone-option:focus-visible,
.form-call-fallback:hover,
.form-call-fallback:focus-visible {
  color: var(--color-gold);
}

.step-card,
.services-section .service-card,
.products-section .category-card,
.product-listing-card,
.trust-item,
.contact-card,
.contact-photo-card,
.product-card,
.request-form,
.faq-item {
  transition:
    border-color var(--motion-calm),
    box-shadow var(--motion-calm),
    transform var(--motion-calm),
    background-color var(--motion-calm);
}

.step-card:hover,
.services-section .service-card:hover,
.services-section .service-card:focus-within,
.products-section .category-card:hover,
.products-section .category-card:focus-visible,
.product-listing-card:hover,
.product-listing-card:focus-within,
.trust-item:hover,
.contact-card:focus-within,
.product-card:focus-within,
.request-form:focus-within {
  border-color: rgba(184, 145, 75, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.products-section .category-card img,
.product-listing-card img,
.contact-photo-card img,
.product-card .product-image img {
  transition: transform var(--motion-slow);
}

.products-section .category-card:hover img,
.products-section .category-card:focus-visible img,
.product-listing-card:hover img,
.product-listing-card:focus-within img,
.contact-photo-card:hover img,
.product-card:focus-within .product-image img {
  transform: scale(1.018);
}

.faq-question {
  transition:
    background-color var(--motion-calm),
    border-color var(--motion-calm),
    color var(--motion-calm),
    box-shadow var(--motion-calm);
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(184, 145, 75, 0.08);
  border-color: rgba(184, 145, 75, 0.42);
}

.faq-answer {
  transition:
    opacity var(--motion-calm),
    padding-block var(--motion-calm);
}

input,
select,
textarea {
  transition:
    background-color var(--motion-calm),
    border-color var(--motion-calm),
    box-shadow var(--motion-calm);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(184, 145, 75, 0.78);
  outline-offset: 4px;
  box-shadow: var(--shadow-focus);
}

.section-dark :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible,
.site-header :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible,
.mobile-cta :where(a, button):focus-visible {
  outline-color: rgba(255, 253, 248, 0.9);
  box-shadow: 0 0 0 4px rgba(184, 145, 75, 0.28);
}

.mobile-cta a:hover,
.mobile-cta a:focus-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .button:hover,
  .header-call:hover,
  .step-card:hover,
  .services-section .service-card:hover,
  .products-section .category-card:hover,
  .product-listing-card:hover,
  .products-section .category-card:hover img,
  .product-listing-card:hover img,
  .contact-photo-card:hover img {
    transform: none !important;
  }
}
/* Privacy page */
.privacy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(184, 145, 75, 0.12), transparent 34rem),
    var(--color-ivory);
}

.privacy-header {
  position: static;
}

.privacy-main {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 76px) 0;
}

.privacy-card {
  background: var(--color-paper);
  border: 1px solid rgba(42, 39, 37, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  color: var(--color-charcoal);
  padding: clamp(28px, 5vw, 56px);
}

.privacy-card h1,
.privacy-card h2 {
  color: var(--color-graphite);
}

.privacy-card h1 {
  margin: 14px 0 22px;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 0.95;
}

.privacy-card h2 {
  margin: 34px 0 12px;
  font-size: clamp(26px, 4vw, 34px);
}

.privacy-card p {
  max-width: 760px;
  color: var(--color-charcoal);
  font-size: 17px;
  line-height: 1.75;
}

.privacy-card a {
  color: var(--color-burgundy);
  text-decoration-color: rgba(110, 31, 46, 0.32);
  text-underline-offset: 4px;
}

.privacy-card a:hover,
.privacy-card a:focus-visible {
  color: var(--color-graphite);
  text-decoration-color: var(--color-gold);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.privacy-note {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(42, 39, 37, 0.12);
  color: var(--color-disabled) !important;
}

/* Logo-only brand mark */
.brand {
  gap: 0;
}

.brand .brand-mark {
  display: block;
  flex: 0 0 auto;
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.footer-brand .brand-mark {
  height: 48px;
  width: 48px;
}

.privacy-header .brand .brand-mark {
  height: 44px;
  width: 44px;
}

@media (max-width: 720px) {
  .brand {
    max-width: none;
  }

  .brand .brand-mark {
    height: 36px;
    width: 36px;
  }

  .footer-brand .brand-mark {
    height: 40px;
    width: 40px;
  }
}

/* Brand text label beside logo mark */
.brand {
  gap: 10px;
}

.brand-label {
  color: var(--gold-light);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  max-width: 118px;
  text-transform: uppercase;
  white-space: normal;
}

.footer-brand .brand-label {
  font-size: 0.84rem;
  max-width: 132px;
}

@media (max-width: 720px) {
  .brand {
    gap: 8px;
  }

  .brand-label {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    max-width: 94px;
  }

  .footer-brand .brand-label {
    font-size: 0.76rem;
    max-width: 116px;
  }
}

/* SEO service icon mockups */
.services-section .service-card {
  overflow: hidden;
}

.services-section .service-icon-mockup {
  aspect-ratio: 3 / 2;
  background: var(--color-charcoal);
  border: 1px solid rgba(184, 145, 75, 0.26);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.13);
  display: block;
  height: auto;
  margin: 0 0 var(--space-4);
  max-width: 178px;
  object-fit: cover;
  width: min(100%, 178px);
}

.services-section .service-card:hover .service-icon-mockup,
.services-section .service-card:focus-within .service-icon-mockup {
  border-color: rgba(184, 145, 75, 0.48);
}

@media (max-width: 680px) {
  .services-section .service-icon-mockup {
    max-width: 164px;
    width: min(58vw, 164px);
  }
}

/* Service mockups visual correction */
.services-section .service-card {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(42, 39, 37, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(42, 39, 37, 0.08);
  padding: 18px 18px 24px;
}

.services-section .service-icon-mockup {
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(184, 145, 75, 0.22);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.14);
  height: auto;
  margin: 0 0 20px;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.services-section .service-card h3,
.services-section .service-card p,
.services-section .service-card a {
  margin-left: 4px;
  margin-right: 4px;
}

.services-section .service-card:hover .service-icon-mockup,
.services-section .service-card:focus-within .service-icon-mockup {
  border-color: rgba(184, 145, 75, 0.56);
  box-shadow: 0 18px 38px rgba(23, 23, 23, 0.18);
}

@media (max-width: 980px) {
  .services-section .service-card {
    padding: 16px 16px 22px;
  }
}

@media (max-width: 680px) {
  .services-section .service-icon-mockup {
    max-width: none;
    width: 100%;
  }
}

/* First-priority steps mockups */
.step-card {
  overflow: hidden;
  padding: 18px 18px 26px;
}

.step-card .step-icon-mockup {
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(184, 145, 75, 0.24);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.12);
  display: block;
  height: auto;
  margin: 12px auto 22px;
  object-fit: cover;
  width: min(100%, 190px);
}

.step-card:hover .step-icon-mockup,
.step-card:focus-within .step-icon-mockup {
  border-color: rgba(184, 145, 75, 0.52);
  box-shadow: 0 18px 38px rgba(23, 23, 23, 0.16);
}

@media (max-width: 680px) {
  .step-card .step-icon-mockup {
    width: min(100%, 210px);
  }
}

/* Mockup alignment: header, first steps, services */
.brand-identity {
  gap: 12px;
  min-width: 260px;
}

.brand-identity .brand-mark {
  width: 46px;
  height: 52px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong {
  color: #fff8eb;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 0.92;
}

.brand-copy small {
  color: #f4e6cd;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: lowercase;
}

#steps.section {
  max-width: none;
  width: 100%;
  padding: 42px max(24px, calc((100vw - 1120px) / 2)) 32px;
  background: linear-gradient(180deg, #fffdf8 0%, #fbf5ec 100%);
}

#steps .section-heading {
  width: min(100%, 1120px);
  margin: 0 auto 28px;
}

#steps .section-heading h2 {
  font-size: clamp(42px, 4.2vw, 58px);
}

#steps .section-heading p {
  margin: 10px 0 0;
  color: var(--color-charcoal);
  font-size: 18px;
}

#steps .section-divider {
  margin-top: 22px;
}

.steps-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  gap: 22px;
}

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 238px;
  padding: 32px 24px 26px;
  text-align: center;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(184, 145, 75, 0.23);
  border-radius: 8px;
  box-shadow: none;
}

.step-visual {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
}

.step-icon-shell {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 0;
  background: transparent;
}

.step-icon-line {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 26px;
  width: 34px;
  height: 34px;
  color: var(--color-graphite);
  background: #efe5d4;
  box-shadow: none;
}

.step-card h3 {
  max-width: 250px;
  margin: 0 0 12px;
  color: var(--color-graphite);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.28;
}

.step-card p {
  max-width: 250px;
  margin: 0;
  color: var(--color-charcoal);
  font-size: 16px;
  line-height: 1.52;
}

.services-section.section {
  max-width: none;
  width: 100%;
  padding: 26px max(24px, calc((100vw - 1120px) / 2)) 58px;
  background: radial-gradient(circle at 50% 5%, rgba(184, 145, 75, 0.1), transparent 35%), #fbf5ec;
}

.services-section .section-heading {
  width: min(100%, 1120px);
  margin: 0 auto 20px;
}

.services-section .section-heading h2 {
  font-size: clamp(40px, 4vw, 54px);
}

.services-section .section-heading p:not(.section-kicker) {
  margin-top: 10px;
  color: var(--color-charcoal);
  font-size: 17px;
}

.services-section .service-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  gap: 0;
}

.services-section .service-card {
  min-height: 210px;
  padding: 0 34px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-section .service-card + .service-card {
  border-left: 1px solid rgba(184, 145, 75, 0.2);
}

.services-section .service-icon-img {
  width: 92px;
  height: 62px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.services-section .service-card h3 {
  margin: 0 0 12px;
  color: var(--color-graphite);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.services-section .service-card p {
  margin: 0 auto;
  max-width: 220px;
  color: var(--color-charcoal);
  font-size: 16px;
  line-height: 1.5;
}

.services-section .service-card a {
  justify-content: center;
  margin-top: 18px;
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 700;
}

.services-section .section-heading .text-link {
  align-self: end;
}

@media (max-width: 980px) {
  .brand-identity {
    min-width: 0;
  }

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

  .services-section .service-card:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .brand-identity {
    gap: 9px;
  }

  .brand-identity .brand-mark {
    width: 38px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    font-size: 13px;
  }

  #steps.section,
  .services-section.section {
    padding-inline: 16px;
  }

  .steps-grid,
  .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .services-section .service-card,
  .services-section .service-card + .service-card {
    padding: 22px 12px;
    border-left: 0;
    border-top: 1px solid rgba(184, 145, 75, 0.16);
  }

  .services-section .service-card:first-child {
    border-top: 0;
  }
}

/* Services mockup heading correction */
.services-section .section-heading {
  display: block;
  text-align: center;
}

.services-section .section-kicker,
.services-section .section-heading > .text-link {
  display: none;
}

.services-section .section-heading::after {
  content: "";
  display: block;
  width: 152px;
  height: 18px;
  margin: 18px auto 0;
  background:
    url("assets/logo-icon.svg") center 50% / 18px 18px no-repeat,
    linear-gradient(var(--color-gold), var(--color-gold)) left 50% / 58px 1px no-repeat,
    linear-gradient(var(--color-gold), var(--color-gold)) right 50% / 58px 1px no-repeat;
  opacity: 0.82;
}

.services-footer {
  width: min(100%, 1120px);
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
}

.services-footer .button {
  min-width: 250px;
  min-height: 44px;
  color: var(--color-gold);
  background: transparent;
  border-color: var(--color-gold);
}

.services-section .section-heading p:not(.section-kicker) {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-section .service-icon-mockup {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.services-section .service-icon-img.service-icon-mockup {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Mobile header comment fixes */
@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    justify-content: space-between;
  }

  .site-header .brand-identity {
    flex: 0 0 auto;
    max-width: none;
    min-width: 0;
  }

  .site-header .brand-copy {
    display: none;
  }

  .site-header .brand-identity .brand-mark,
  .site-header .brand-mark {
    width: 42px;
    height: 48px;
  }

  .site-header .header-call {
    display: inline-grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    place-items: center;
    border-radius: 12px;
    line-height: 0;
    font-size: 0;
    gap: 0;
  }

  .site-header .header-call svg {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .site-header .menu-button {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 12px;
  }

  .site-header .menu-button span {
    width: 24px;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Header brand text refinement from review comments */
.brand-copy-single {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-copy-single span {
  display: block;
  color: var(--color-paper);
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .site-header .brand.brand-identity {
    gap: 8px;
    max-width: 168px;
  }

  .site-header .brand-copy.brand-copy-single {
    display: inline-flex;
  }

  .site-header .brand-copy-single span {
    max-width: 94px;
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
  }

  .site-header .header-call,
  .site-header .menu-button {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .site-header .header-call svg {
    width: 20px;
    height: 20px;
  }
}

/* Browser-comment UI corrections: logo-only header, compact mobile controls, contact/map spacing */
.site-header .brand-identity,
.site-footer .brand-identity,
.privacy-header .brand-identity {
  min-width: 0;
  gap: 0;
}

.site-header .brand-copy,
.site-footer .brand-copy,
.privacy-header .brand-copy,
.site-header .brand-label,
.site-footer .brand-label,
.privacy-header .brand-label {
  display: none !important;
}

.site-header .brand-mark,
.site-footer .brand-mark,
.privacy-header .brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.menu-button {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span,
.site-header .menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 48px 48px;
    gap: 12px;
    align-items: center;
    height: 72px;
    min-height: 72px;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    height: 66px;
    min-height: 66px;
  }

  .site-header .brand-identity {
    justify-self: start;
  }

  .site-header .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-header .header-call {
    display: inline-grid !important;
    grid-column: 2;
    justify-self: end;
    place-items: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 12px;
    font-size: 0;
    line-height: 0;
    gap: 0;
  }

  .site-header .header-call svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .site-header .menu-button {
    display: inline-flex !important;
    grid-column: 3;
    justify-self: end;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 253, 248, 0.24);
    border-radius: 12px;
  }

  .desktop-nav,
  .language-pill {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
    min-height: 68px;
    padding-inline: 16px;
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-header .header-call,
  .site-header .menu-button {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }
}

.hero {
  min-height: clamp(540px, 68vh, 680px);
  padding-top: clamp(108px, 12vh, 138px);
  padding-bottom: clamp(42px, 7vh, 68px);
}

#steps.section {
  padding-top: clamp(34px, 5vw, 46px);
  padding-bottom: clamp(28px, 4vw, 40px);
}

.services-section.section {
  padding-top: clamp(24px, 4vw, 34px);
  padding-bottom: clamp(42px, 5vw, 58px);
}

.category-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 36px);
  white-space: nowrap;
}

.category-card small span,
.products-section .category-card small span {
  position: static !important;
  inset: auto !important;
  display: inline !important;
  width: auto;
  min-height: 0;
}

.content-split {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
}

.side-panel {
  gap: 14px;
  margin-top: 28px;
}

.side-panel .product-card {
  padding: 14px;
}

.side-panel .product-card h3 {
  font-size: 24px;
}

.side-panel .product-card p,
.side-panel .product-card li {
  font-size: 13px;
  line-height: 1.45;
}

.side-panel .product-card ul {
  margin: 6px 0 12px;
}

.side-panel .product-image {
  margin-bottom: 12px;
}

.side-panel .product-image img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--color-ivory);
}

.contact-section {
  padding-top: clamp(42px, 6vw, 64px);
  padding-bottom: clamp(42px, 6vw, 64px);
}

.contact-layout {
  gap: clamp(16px, 2vw, 24px);
}

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

.contact-actions .button {
  min-height: 48px;
  padding-inline: 16px;
}

.contact-photo-card picture {
  display: grid;
  place-items: center;
  min-height: clamp(220px, 28vw, 340px);
  background: var(--color-ivory);
}

.contact-photo-card img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain !important;
  background: var(--color-ivory);
}

.contact-map-visual {
  overflow: hidden;
  min-height: 300px;
  padding: 0;
  background: var(--color-ivory);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.final-cta {
  padding-top: clamp(34px, 5vw, 52px);
  padding-bottom: clamp(34px, 5vw, 52px);
}

.site-footer {
  padding-top: clamp(30px, 4vw, 42px);
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.mobile-cta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  min-height: calc(64px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 8px;
  text-align: center;
}

@media (max-width: 980px) {
  .content-split {
    grid-template-columns: 1fr;
  }

  .side-panel {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - 68px);
    padding-top: 96px;
    padding-bottom: 30px;
  }

  #steps.section,
  .services-section.section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

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

  .contact-photo-card picture,
  .contact-map-visual,
  .contact-map-iframe {
    min-height: 240px;
  }

  .footer-inner {
    gap: 20px;
  }

  .site-footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

/* Mobile header call alignment fix from browser review */
@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto 46px 46px;
    column-gap: 12px;
    align-items: center;
  }

  .site-header .header-call,
  .site-header .menu-button {
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px;
    max-height: 46px;
    margin: 0;
    padding: 0 !important;
    transform: none !important;
  }

  .site-header .header-call,
  .site-header .header-call:hover,
  .site-header .header-call:focus-visible,
  .site-header .header-call:active {
    display: grid !important;
    place-items: center;
    grid-column: 2;
    justify-self: end;
    overflow: hidden;
    border-radius: 12px;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: 0;
    gap: 0 !important;
  }

  .site-header .header-call svg {
    grid-area: 1 / 1;
    display: block;
    flex: none;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    transform: none !important;
  }

  .site-header .menu-button,
  .site-header .menu-button:hover,
  .site-header .menu-button:focus-visible,
  .site-header .menu-button:active {
    display: inline-flex !important;
    grid-column: 3;
    justify-self: end;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
    border-radius: 12px;
  }

  .site-header .menu-button span,
  .site-header .menu-button span + span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 !important;
    border-radius: 999px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .site-header .header-call,
  .site-header .menu-button {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    transform: none !important;
  }

  .site-header .header-call,
  .site-header .header-call:hover,
  .site-header .header-call:focus-visible,
  .site-header .header-call:active {
    display: grid !important;
    place-items: center;
    font-size: 0 !important;
    line-height: 0 !important;
    gap: 0 !important;
  }

  .site-header .header-call svg {
    display: block;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    transform: none !important;
  }
}
/* Mobile header call icon centering fix */
@media (max-width: 980px) {
  .site-header .header-call,
  .site-header .header-call:hover,
  .site-header .header-call:focus-visible,
  .site-header .header-call:active {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    place-content: center;
    align-content: center;
    justify-content: center;
  }

  .site-header .header-call svg {
    align-self: center;
    justify-self: center;
  }
}
/* Mobile annotation update: header call moved to bottom bar */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 46px;
  }

  .site-header .header-call {
    display: none !important;
  }

  .site-header .menu-button,
  .site-header .menu-button:hover,
  .site-header .menu-button:focus-visible,
  .site-header .menu-button:active {
    grid-column: 2 !important;
    justify-self: end;
  }

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

  .mobile-cta.mobile-cta-icons a {
    font-size: 0;
    line-height: 0;
    gap: 0;
  }

  .mobile-cta.mobile-cta-icons a svg {
    display: block;
    width: 26px;
    height: 26px;
    flex: none;
  }

  .mobile-cta.mobile-cta-icons a:first-child svg {
    fill: currentColor;
  }

  .mobile-cta.mobile-cta-icons a:nth-child(2) svg {
    fill: none;
  }
}
/* Product categories UX normalization */
.products-section .category-rail {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-section .category-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(184, 145, 75, 0.24);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 46px rgba(23, 23, 23, 0.07);
  color: var(--color-graphite);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
}

.products-section .category-card img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.products-section .category-card > span,
.products-section .category-card > p,
.products-section .category-card > small {
  margin-left: clamp(22px, 2vw, 28px);
  margin-right: clamp(22px, 2vw, 28px);
  position: static !important;
  z-index: auto;
}

.products-section .category-card > span {
  align-self: end;
  color: var(--color-graphite);
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 0.9rem + 0.38vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
  margin-top: clamp(20px, 2vw, 26px);
}

.products-section .category-card > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
  margin-top: 0.85rem;
  min-height: 3.1em;
}

.products-section .category-card .category-card-cta {
  align-items: center;
  align-self: end;
  color: var(--color-gold);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  gap: 0.62rem;
  justify-self: start;
  line-height: 1;
  margin-bottom: clamp(22px, 2vw, 28px);
  margin-top: clamp(24px, 2vw, 30px);
  width: fit-content;
}

.products-section .category-card .category-cta-label {
  display: inline-flex !important;
  align-items: center;
  line-height: 1.1;
  position: static !important;
}

.products-section .category-card .category-cta-arrow {
  align-self: center;
  color: currentColor;
  display: inline-block !important;
  flex: 0 0 1.35rem;
  font-size: 0 !important;
  height: 1rem;
  line-height: 0 !important;
  margin: 0;
  overflow: visible;
  position: relative !important;
  transform: none !important;
  width: 1.35rem;
}

.products-section .category-card .category-cta-arrow::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
}

.products-section .category-card .category-cta-arrow::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 0.44rem;
  position: absolute;
  right: 0.03rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  width: 0.44rem;
}

.products-section .category-card:hover,
.products-section .category-card:focus-visible {
  border-color: rgba(184, 145, 75, 0.52);
  box-shadow: var(--shadow-soft);
}

.products-section .category-card:hover .category-card-cta,
.products-section .category-card:focus-visible .category-card-cta {
  color: var(--color-burgundy);
}

@media (max-width: 980px) {
  .products-section .category-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .products-section .category-rail {
    grid-template-columns: 1fr;
  }

  .products-section .category-card > p {
    min-height: 0;
  }
}
/* Product category CTA child reset */
.products-section .category-card .category-card-cta .category-cta-label,
.products-section .category-card .category-card-cta .category-cta-arrow {
  bottom: auto !important;
  inset: auto !important;
  left: auto !important;
  margin: 0 !important;
  min-height: 0 !important;
  right: auto !important;
  top: auto !important;
}

.products-section .category-card .category-card-cta .category-cta-label {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  width: auto;
}

/* Product card CTA text polish */
.product-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
}

.product-actions .button {
  min-height: 44px;
  padding-left: clamp(14px, 1.2vw, 18px);
  padding-right: clamp(14px, 1.2vw, 18px);
  white-space: nowrap;
}

.product-actions .button-primary {
  box-shadow: none;
}

@media (max-width: 340px) {
  .product-actions {
    grid-template-columns: 1fr;
  }
}
/* Footer bottom spacing trim */
.site-footer {
  padding-bottom: 18px;
}

.site-footer > *:last-child,
.footer-bottom,
.footer-main {
  margin-bottom: 0;
}

.footer-bottom {
  padding-bottom: 0;
}

@media (max-width: 680px) {
  .site-footer {
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}
/* Contact office photo full-frame layout */
.contact-photo-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
}

.contact-photo-card picture {
  display: block !important;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  background: transparent !important;
}

.contact-photo-card img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
  transform: none !important;
}

.contact-photo-card:hover img,
.contact-photo-card:focus-within img {
  transform: none !important;
}

.contact-photo-card figcaption {
  flex: 0 0 auto;
}
/* Extended services layout */
.services-section .service-grid {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  margin: 0 auto;
}

.services-section .service-card,
.services-section .service-card + .service-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(184, 145, 75, 0.2);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(42, 39, 37, 0.07);
}

.services-section .service-icon-img,
.services-section .service-icon-mockup {
  width: 86px;
  height: 64px;
  max-width: 86px;
  margin: 0 auto 20px;
  padding: 0;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  aspect-ratio: auto;
}

.services-section .service-card h3,
.services-section .service-card p,
.services-section .service-card a {
  margin-left: 0;
  margin-right: 0;
}

.services-section .service-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 28ch;
  text-align: center;
}

.services-section .service-card a {
  justify-content: center;
}

@media (max-width: 980px) {
  .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services-section .service-grid {
    grid-template-columns: 1fr;
  }

  .services-section .service-card,
  .services-section .service-card + .service-card {
    padding: 24px 20px;
    border: 1px solid rgba(184, 145, 75, 0.18);
  }

  .services-section .service-icon-img,
  .services-section .service-icon-mockup {
    width: 78px;
    height: 58px;
    max-width: 78px;
  }
}
/* Mobile bottom CTA square buttons */
.mobile-cta.mobile-cta-icons,
.mobile-cta.mobile-cta-icons a,
.mobile-cta.mobile-cta-icons a:hover,
.mobile-cta.mobile-cta-icons a:focus,
.mobile-cta.mobile-cta-icons a:focus-visible {
  border-radius: 0 !important;
}

.mobile-cta.mobile-cta-icons a {
  overflow: hidden;
}
/* Category contained portrait images */
.products-section .category-card img.category-image-contained {
  object-fit: contain !important;
  object-position: center center;
  padding: clamp(12px, 2.5vw, 22px);
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.96), rgba(255, 253, 248, 0.96));
}

.products-section .category-card:hover img.category-image-contained,
.products-section .category-card:focus-visible img.category-image-contained {
  transform: none;
}
/* Category image tuning: ritual attributes */
.products-section .category-card img.category-image-attributes {
  object-position: 72% center;
}

/* Product catalog v2 */
.products-section {
  scroll-margin-top: 92px;
}

.products-section .category-card {
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.products-section .category-card.is-active,
.products-section .category-card[aria-pressed="true"] {
  border-color: rgba(124, 31, 43, 0.45);
  box-shadow: 0 22px 54px rgba(79, 31, 38, 0.13);
}

.products-section .category-card img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(248, 244, 238, 0.94), rgba(255, 253, 248, 0.98));
  object-fit: cover;
}

.product-preview-heading {
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: clamp(18px, 2.4vw, 28px);
  scroll-margin-top: 96px;
}

.product-count {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.product-filter-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto clamp(22px, 3vw, 34px);
  max-width: var(--container);
}

.product-filter {
  appearance: none;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(184, 145, 75, 0.28);
  border-radius: 999px;
  color: var(--color-charcoal);
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  min-height: 42px;
  padding: 0 16px;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.product-filter:hover,
.product-filter:focus-visible,
.product-filter.is-active {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  box-shadow: 0 12px 26px rgba(124, 31, 43, 0.18);
  color: var(--color-white);
}

.product-empty {
  background: rgba(255, 253, 248, 0.92);
  border: 1px dashed rgba(184, 145, 75, 0.34);
  border-radius: 14px;
  color: var(--muted);
  margin: 0 auto clamp(22px, 3vw, 34px);
  max-width: 720px;
  padding: 18px 22px;
  text-align: center;
}

.products-section .product-preview-grid {
  gap: clamp(18px, 2.2vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

@media (min-width: 1180px) {
  .products-section .product-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

.product-listing-card {
  border-color: rgba(184, 145, 75, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(42, 39, 37, 0.08);
}

.product-listing-card:hover,
.product-listing-card:focus-within {
  border-color: rgba(124, 31, 43, 0.32);
  box-shadow: 0 24px 58px rgba(42, 39, 37, 0.12);
}

.product-listing-card > img {
  aspect-ratio: auto;
  background: #f8f4ee;
  display: block;
  height: clamp(220px, 22vw, 272px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-listing-body {
  gap: 12px;
  padding: clamp(18px, 2vw, 24px);
}

.product-listing-body h4 {
  font-size: clamp(1.04rem, 0.98rem + 0.22vw, 1.16rem);
  line-height: 1.28;
}

.product-category {
  align-self: start;
  background: rgba(184, 145, 75, 0.12);
  border: 1px solid rgba(184, 145, 75, 0.18);
  border-radius: 999px;
  color: var(--color-burgundy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
}

.product-listing-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}

.product-listing-body li {
  background: rgba(67, 61, 55, 0.055);
  border: 1px solid rgba(67, 61, 55, 0.08);
  border-radius: 999px;
  color: var(--color-charcoal);
  font-size: 0.88rem;
  line-height: 1.15;
  list-style: none;
  padding: 7px 10px;
}

.product-listing-body strong {
  color: var(--color-graphite);
  font-size: 1.02rem;
  margin-top: auto;
}

.product-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  margin-top: 4px;
}

.product-actions .button {
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  min-height: 42px;
  padding-left: 14px;
  padding-right: 14px;
}

.product-actions .button-outline {
  background: rgba(255, 253, 248, 0.76);
  color: var(--color-burgundy);
}

@media (max-width: 680px) {
  .products-section {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .products-section .category-rail {
    gap: 16px;
  }

  .products-section .category-card img {
    max-height: 250px;
  }

  .product-preview-heading {
    align-items: start;
  }

  .product-count {
    white-space: normal;
  }

  .product-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-padding-left: var(--space-4);
  }

  .product-filter {
    flex: 0 0 auto;
  }

  .product-listing-card {
    scroll-margin-bottom: 110px;
  }

  .product-listing-card > img {
    height: clamp(210px, 58vw, 260px);
  }
}

@media (max-width: 380px) {
  .product-actions {
    grid-template-columns: 1fr;
  }
}

/* Product card UX pass */
.product-listing-card {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 232, 0.94));
  border-color: rgba(184, 145, 75, 0.26);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(42, 39, 37, 0.08);
  isolation: isolate;
  position: relative;
}

.product-listing-card::after {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(184, 145, 75, 0.36);
  border-radius: var(--radius-pill);
  color: var(--color-burgundy);
  content: "Наявність уточнюємо";
  font-size: 0.78rem;
  font-weight: 850;
  left: 14px;
  line-height: 1;
  padding: 9px 11px;
  position: absolute;
  top: 14px;
  z-index: 2;
}

.product-listing-card:hover,
.product-listing-card:focus-within {
  border-color: rgba(124, 31, 43, 0.36);
  box-shadow: 0 24px 58px rgba(42, 39, 37, 0.12);
}

.product-listing-card > img {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 241, 232, 0.98));
  height: clamp(292px, 29vw, 372px);
  object-fit: contain;
  padding: clamp(18px, 2.4vw, 30px);
}

.product-listing-body {
  gap: 11px;
  padding: clamp(18px, 2vw, 24px);
}

.product-listing-body h4 {
  font-size: clamp(1.08rem, 1rem + 0.24vw, 1.2rem);
  line-height: 1.25;
}

.product-category {
  background: transparent;
  border: 0;
  color: var(--color-gold);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  order: -1;
  padding: 0;
  text-transform: uppercase;
}

.product-listing-body ul {
  align-content: flex-start;
  align-items: flex-start;
  gap: 7px;
}

.product-listing-body li {
  align-items: center;
  background: rgba(67, 61, 55, 0.05);
  border-color: rgba(67, 61, 55, 0.09);
  display: inline-flex;
  font-size: 0.86rem;
  min-height: 34px;
  padding: 7px 10px;
}

.product-listing-body strong {
  align-items: center;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(184, 145, 75, 0.22);
  border-left: 3px solid rgba(184, 145, 75, 0.72);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.2;
  margin-top: auto;
  padding: 12px 13px;
}

.product-listing-body strong::before {
  color: var(--muted);
  content: "Вартість";
  font-size: 0.82rem;
  font-weight: 800;
}

.product-actions {
  gap: 10px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  margin-top: 2px;
}

.product-actions .button {
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  min-height: 46px;
  text-align: center;
  white-space: normal;
}

.product-actions .button-primary {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-white);
}

.product-actions .button-primary:hover,
.product-actions .button-primary:focus-visible {
  background: #541724;
  border-color: #541724;
  color: var(--color-white);
}

.product-actions .button-outline {
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(184, 145, 75, 0.42);
  color: var(--color-burgundy);
}

@media (max-width: 680px) {
  .product-listing-card > img {
    height: clamp(260px, 72vw, 340px);
    padding: clamp(16px, 5vw, 24px);
  }

  .product-listing-body ul {
    min-height: 0;
  }

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

@media (max-width: 520px) {
  .product-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .product-listing-body strong {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Product cards compact spacing pass */
.product-listing-card {
  min-height: auto;
}

.product-listing-card > img {
  height: clamp(220px, 24vw, 300px);
  padding: clamp(14px, 2vw, 22px);
}

.product-listing-body {
  gap: 8px;
  padding: clamp(14px, 1.8vw, 20px);
}

.product-listing-body h4 {
  min-height: 0;
}

.product-listing-body ul {
  gap: 5px;
  margin: 0;
}

.product-listing-body li {
  font-size: 0.84rem;
  min-height: 28px;
  padding: 5px 9px;
}

.product-listing-body strong {
  margin-top: -4px;
  padding: 10px 12px;
}

.product-actions {
  gap: 8px;
  margin-top: 0;
}

.product-actions .button {
  min-height: 42px;
}

@media (max-width: 680px) {
  .product-listing-card {
    min-height: auto;
  }

  .product-listing-card > img {
    height: clamp(190px, 52vw, 236px);
    padding: clamp(12px, 4vw, 18px);
  }

  .product-listing-body {
    gap: 8px;
    padding: 16px;
  }
}

/* Angel brand identity: image mark plus live text */
.brand.brand-identity {
  align-items: center;
  display: inline-flex;
  flex: 0 1 auto;
  gap: 10px;
  max-width: min(100%, 264px);
  min-width: 0;
  text-decoration: none;
}

.brand-identity .brand-mark,
.site-header .brand-identity .brand-mark,
.site-footer .brand-identity .brand-mark,
.privacy-header .brand-identity .brand-mark,
.media-kit-header .brand-identity .brand-mark {
  display: block;
  flex: 0 0 46px;
  height: 46px;
  object-fit: contain;
  width: 46px;
}

.brand-identity .brand-copy,
.site-header .brand-copy,
.site-footer .brand-copy,
.privacy-header .brand-copy,
.media-kit-header .brand-copy {
  display: grid !important;
  flex: 1 1 auto;
  gap: 0;
  line-height: 1;
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  overflow-wrap: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy strong {
  color: #fff8eb;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.82;
}

.brand-copy small {
  color: #f4e6cd;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin-top: 3px;
}

.site-footer .footer-brand {
  gap: 12px;
  max-width: 100%;
}

.site-footer .brand-copy strong {
  font-size: 28px;
}

.site-footer .brand-copy small {
  font-size: 9.5px;
}

.privacy-header .brand-identity,
.media-kit-header .brand-identity {
  max-width: 270px;
}

@media (max-width: 1120px) and (min-width: 981px) {
  .site-header .brand-identity {
    max-width: 224px;
  }

  .site-header .brand-identity .brand-mark {
    flex-basis: 42px;
    height: 42px;
    width: 42px;
  }

  .site-header .brand-copy strong {
    font-size: 23px;
  }

  .site-header .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .site-header .brand-identity {
    justify-self: start;
    max-width: min(100%, 240px);
  }

  .site-header .brand-identity .brand-mark,
  .site-header .brand-mark {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  .site-header .brand-copy strong {
    font-size: 22px;
    letter-spacing: 0.07em;
  }

  .site-header .brand-copy small {
    font-size: 7.8px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .brand.brand-identity,
  .site-header .brand.brand-identity {
    gap: 8px;
    max-width: min(100%, 188px);
  }

  .site-header .brand-identity .brand-mark,
  .site-header .brand-mark {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }

  .site-header .brand-copy strong {
    font-size: 19px;
    letter-spacing: 0.06em;
  }

  .site-header .brand-copy small {
    font-size: 7px;
    letter-spacing: 0.035em;
  }

  .site-footer .footer-brand {
    max-width: 220px;
  }

  .site-footer .brand-identity .brand-mark {
    flex-basis: 40px;
    height: 40px;
    width: 40px;
  }

  .site-footer .brand-copy strong {
    font-size: 23px;
  }

  .site-footer .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .media-kit-header .brand-identity {
    max-width: 190px;
  }
}

@media (max-width: 360px) {
  .site-header .brand.brand-identity {
    gap: 7px;
    max-width: 176px;
  }

  .site-header .brand-identity .brand-mark,
  .site-header .brand-mark {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }

  .site-header .brand-copy strong {
    font-size: 18px;
  }

  .site-header .brand-copy small {
    font-size: 6.5px;
    letter-spacing: 0.025em;
  }
}
