/* Base tokens preserve the light, minimalist Stitch look while removing framework dependencies. */
:root {
  --background: #fcf8fa;
  --surface: #ffffff;
  --surface-muted: #f0edef;
  --surface-soft: #f6f3f5;
  --text: #1b1b1d;
  --muted: #505f76;
  --subtle: #76777d;
  --border: #d8d6dc;
  --border-strong: #76777d;
  --primary: #050505;
  --primary-hover: #303032;
  --on-primary: #ffffff;
  --accent: #2f6f8f;
  --accent-warm: #b86a2d;
  --accent-soft: #e7f1f4;
  --accent-warm-soft: #f7eadf;
  --max-width: 1200px;
  --header-height: 80px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-space: clamp(64px, 9vw, 96px);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .site-header,
body.modal-open main,
body.modal-open .site-footer {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5.9vw, 4.65rem);
  font-weight: 680;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 640;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 620;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--primary);
  color: var(--on-primary);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section,
.map-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-muted {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--primary), var(--accent-warm));
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered::after {
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transform-origin: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 220ms ease;
}

.button:hover {
  text-decoration: none;
  transform: scale(1.035);
}

.button-dark {
  background: linear-gradient(135deg, var(--primary), #1d3340);
  color: var(--on-primary);
}

.button-dark:hover {
  background: linear-gradient(135deg, var(--primary), #1d3340);
}

.button-light {
  background: rgba(255, 255, 255, 0.7);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border-strong));
  color: var(--primary);
  backdrop-filter: blur(8px);
}

/* Header stays calm and compact, with mobile navigation handled by script.js. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background:
    linear-gradient(90deg, rgba(47, 111, 143, 0.08), rgba(184, 106, 45, 0.08)),
    color-mix(in srgb, var(--background) 91%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  transform-origin: center;
  transition: transform 220ms ease;
}

.brand:hover {
  transform: scale(1.035);
}

.brand img {
  width: 154px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 550;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--primary);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - var(--header-height)));
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: blur(2px) saturate(0.95);
  transform: scale(1.015);
}

.hero-scrim {
  background:
    radial-gradient(circle at 22% 28%, rgba(47, 111, 143, 0.16), transparent 34%),
    radial-gradient(circle at 80% 82%, rgba(184, 106, 45, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(252, 248, 250, 0.6), rgba(252, 248, 250, 0.9));
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: clamp(92px, 13vw, 150px);
  text-align: center;
}

.hero-lead {
  max-width: 780px;
  margin-bottom: 36px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

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

.image-card,
.service-card {
  border: 1px solid var(--border);
  background: var(--surface);
}

.image-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.image-card-large {
  grid-column: span 2;
  min-height: 430px;
}

.image-card-wide {
  grid-column: span 2;
  min-height: 320px;
}

.image-card picture,
.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-card picture {
  display: block;
  transition: transform 700ms ease;
}

.image-card img {
  object-fit: cover;
}

.image-card:hover picture {
  transform: scale(1.035);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(252, 248, 250, 0.94), rgba(252, 248, 250, 0.2) 68%);
}

.card-gradient-side {
  background: linear-gradient(90deg, rgba(252, 248, 250, 0.94), rgba(252, 248, 250, 0.72), rgba(252, 248, 250, 0.1));
}

.image-card-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  max-width: 520px;
}

.image-card-wide .image-card-copy {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-graphic {
  width: min(100%, 230px);
  height: auto;
  margin: -8px auto 18px;
}

.service-card:hover,
.audience-card:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: 0 18px 38px rgba(27, 27, 29, 0.07);
  transform: translateY(-2px);
}

.service-card span,
.benefit-grid span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-warm-soft));
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 750;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.offer-list h3 {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-list li {
  list-style: none;
  color: var(--muted);
}

.bestsellers-section {
  border-block: 1px solid var(--border);
}

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

.bestseller-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(231, 241, 244, 0.4)),
    var(--surface);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bestseller-card:hover,
.bestseller-card[open] {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  box-shadow: 0 16px 36px rgba(27, 27, 29, 0.07);
  transform: translateY(-2px);
}

.bestseller-card[open] {
  display: grid;
  grid-template-rows: auto 1fr;
}

.bestseller-card summary {
  position: relative;
  display: grid;
  min-height: 210px;
  grid-template-rows: 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.bestseller-card summary::marker,
.bestseller-card summary::-webkit-details-marker {
  display: none;
  content: "";
}

.bestseller-card summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 0;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.bestseller-card[open] summary::after {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--on-primary);
  transform: rotate(45deg);
}

.bestseller-card img {
  width: min(100%, 150px);
  height: auto;
  margin-inline: auto;
}

.bestseller-card summary span {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.2;
}

.bestseller-detail {
  display: grid;
  gap: 18px;
  align-content: space-between;
  padding: 0 22px 22px;
  animation: bestseller-detail-in 220ms ease both;
}

.bestseller-detail p {
  margin: 0;
}

.photo-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.photo-placeholders span {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px dashed color-mix(in srgb, var(--accent) 38%, var(--border));
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.bestseller-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  isolation: isolate;
  padding: var(--gutter);
  pointer-events: none;
  place-items: center;
  visibility: hidden;
  transition: visibility 0s linear 200ms;
}

.bestseller-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.bestseller-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 29, 0.34);
  opacity: 0;
  transition: opacity 180ms ease;
}

.bestseller-modal.is-open .bestseller-modal-backdrop {
  opacity: 1;
}

.bestseller-modal-panel {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 40px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid color-mix(in srgb, var(--border) 72%, white);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 241, 244, 0.72)),
    var(--surface);
  box-shadow: 0 30px 80px rgba(27, 27, 29, 0.22);
  contain: layout paint;
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease;
  will-change: opacity, transform;
}

.bestseller-modal.is-open .bestseller-modal-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.bestseller-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 0;
  transform: rotate(45deg);
  transition: background-color 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.bestseller-modal-close:hover {
  border-color: var(--primary);
  background: var(--surface);
  transform: rotate(45deg) scale(1.08);
}

.bestseller-modal-visual {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.bestseller-modal-visual img {
  width: min(100%, 280px);
  height: auto;
}

.bestseller-modal-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-right: 24px;
}

.bestseller-modal-content h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.bestseller-modal-content p {
  margin-bottom: 0;
}

.bestseller-modal-photos {
  margin-top: 12px;
}

.bestseller-modal-photos span {
  min-height: 128px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 234, 223, 0.32)),
    rgba(255, 255, 255, 0.6);
}

@keyframes bestseller-detail-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audience-section {
  padding-top: 0;
}

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

.audience-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 241, 244, 0.58) 52%, rgba(247, 234, 223, 0.46)),
    var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.audience-graphic {
  width: min(142px, 48%);
  height: auto;
  margin: -4px 0 18px auto;
}

.audience-card h3 {
  font-size: 1.1rem;
}

.audience-card p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 56px);
}

.benefit-grid article {
  text-align: center;
}

.benefit-grid span {
  margin-bottom: 18px;
  color: var(--accent);
}

.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 80px);
}

.machine-card {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.machine-frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(252, 248, 250, 0.1), rgba(48, 48, 50, 0.08)),
    var(--surface-muted);
}

.machine-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.machine-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(252, 248, 250, 0.72), rgba(252, 248, 250, 0.08) 46%, rgba(27, 27, 29, 0.08));
  pointer-events: none;
}

.machine-card picture,
.machine-card img {
  width: 100%;
  height: 100%;
}

.machine-card picture {
  display: block;
  height: 100%;
}

.machine-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
  transform: scale(1.015);
}

.machine-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(72%, 300px);
  padding: 16px;
  border: 1px solid rgba(216, 214, 220, 0.92);
  background: linear-gradient(135deg, rgba(252, 248, 250, 0.92), rgba(231, 241, 244, 0.84));
  backdrop-filter: blur(12px);
}

.machine-badge span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.machine-badge span + span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.machine-card figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--border);
}

.process-list li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.process-list span {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--background);
  font-weight: 700;
}

.process-list li:last-child span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--on-primary);
}

.process-list h3 {
  font-size: 1rem;
}

.process-list p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 241, 244, 0.28)),
    var(--surface);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.faq-list details:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
  box-shadow: 0 12px 28px rgba(27, 27, 29, 0.05);
  transform: translateY(-1px);
}

.faq-list details[open] {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(27, 27, 29, 0.07);
  transform: translateY(-2px);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 18px 20px;
  color: var(--primary);
  font-weight: 700;
  list-style: none;
  border-radius: 10px;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
  background: var(--surface-soft);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--primary);
  color: var(--on-primary);
}

.faq-list details p {
  margin: 0;
  padding: 0 68px 22px 20px;
  animation: faq-answer-in 220ms ease both;
}

.faq-list details[open] summary::after {
  content: "+";
  border-color: var(--primary);
  transform: rotate(45deg);
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-style: normal;
}

.contact-details p {
  margin-bottom: 0;
}

.contact-details strong {
  color: var(--primary);
}

.contact-details a,
.site-footer a {
  color: var(--primary);
}

.contact-form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.contact-form h3 {
  font-size: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.form-field label {
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.map-section {
  border-top: 1px solid var(--border);
}

.map-embed {
  position: relative;
  display: grid;
  min-height: 340px;
  align-items: center;
  justify-items: start;
  overflow: hidden;
  padding: 36px var(--gutter);
  text-align: left;
  background-color: var(--surface-muted);
  background-image:
    repeating-linear-gradient(45deg, rgba(118, 119, 125, 0.15) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-45deg, rgba(118, 119, 125, 0.12) 0 1px, transparent 1px 18px);
}

.map-card {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(252, 248, 250, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(27, 27, 29, 0.12);
}

.map-link {
  margin-top: 10px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.18) saturate(0.9);
}

.site-footer {
  padding-block: 48px;
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: end;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid img {
  width: 138px;
  margin-bottom: 12px;
  filter: grayscale(1);
  opacity: 0.82;
}

.copyright {
  text-align: right;
}

/* Section reveal animation is subtle and disabled for reduced-motion users. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    justify-content: stretch;
    gap: 0;
    padding: 10px var(--gutter) 24px;
    border-bottom: 1px solid var(--border);
    background: var(--background);
    box-shadow: 0 20px 40px rgba(27, 27, 29, 0.08);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .header-actions {
    display: none;
  }

  .offer-grid,
  .audience-grid,
  .bestseller-grid,
  .benefit-grid,
  .split-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bestseller-modal-panel {
    grid-template-columns: 1fr;
  }

  .bestseller-modal-visual {
    min-height: 220px;
  }

  .bestseller-modal-content {
    padding-right: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-list {
    max-width: 820px;
  }

  .image-card-large,
  .image-card-wide {
    grid-column: span 2;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-list::before {
    top: 0;
    bottom: 0;
    left: 28px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    align-items: flex-start;
    min-height: 80px;
    padding-left: 82px;
    text-align: left;
  }

  .process-list span {
    position: absolute;
    top: 0;
    left: 0;
  }

  .copyright {
    text-align: left;
  }
}

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

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    align-items: flex-start;
    padding-block: 88px 72px;
    text-align: left;
  }

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

  .offer-grid,
  .audience-grid,
  .bestseller-grid,
  .benefit-grid,
  .split-layout,
  .contact-grid,
  .faq-layout,
  .footer-grid,
  .offer-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card-large,
  .image-card-wide {
    grid-column: auto;
    min-height: 320px;
  }

  .image-card-copy,
  .image-card-wide .image-card-copy {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    transform: none;
  }

  .card-gradient-side {
    background: linear-gradient(0deg, rgba(252, 248, 250, 0.94), rgba(252, 248, 250, 0.18) 70%);
  }

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

  .bestseller-card summary {
    min-height: 180px;
  }

  .bestseller-modal {
    padding: 14px;
  }

  .bestseller-modal-panel {
    max-height: calc(100svh - 28px);
    padding: 20px;
  }

  .bestseller-modal-close {
    top: 12px;
    right: 12px;
  }

  .bestseller-modal-photos {
    grid-template-columns: 1fr;
  }

  .offer-list {
    gap: 18px;
  }

  .contact-form {
    padding: 22px;
  }

  .map-embed {
    align-items: end;
    justify-items: start;
    min-height: 420px;
    padding: 18px;
  }

  .map-card {
    width: min(50%, 260px);
    min-width: 180px;
    padding: 14px;
    font-size: 0.82rem;
  }

  .map-card .eyebrow {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  .map-card p {
    margin-bottom: 8px;
    line-height: 1.35;
  }

  .map-card .button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }
}

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

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

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