:root {
  --bg: #f4efe7;
  --surface-strong: #ffffff;
  --ink: #1f1c18;
  --muted: #675f56;
  --line: rgba(31, 28, 24, 0.1);
  --brand: #db3a24;
  --brand-deep: #a72316;
  --accent: #f6b94d;
  --dark: #201814;
  --shadow: 0 20px 60px rgba(32, 24, 20, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Public Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(246, 185, 77, 0.25), transparent 30%),
    linear-gradient(180deg, #fff8ef 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  color: #fff;
  font-size: 0.95rem;
}
.topbar-inner {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.brand img { width: 236px; height: auto; }
.site-nav { position: relative; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.nav-panel { display: flex; align-items: center; gap: 1rem; }
.nav-list {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a, .service-menu summary, .nav-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.nav-list a[aria-current="page"], .nav-list a:hover, .service-menu summary:hover, .nav-contact[aria-current="page"], .nav-contact:hover {
  background: rgba(219, 58, 36, 0.08);
  color: var(--brand-deep);
}
.service-menu summary { list-style: none; cursor: pointer; }
.service-menu summary::-webkit-details-marker { display: none; }
.service-menu ul {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(360px, 80vw);
  padding: 0.9rem;
  margin: 0;
  list-style: none;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.service-menu li + li { margin-top: 0.35rem; }
.service-menu li a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
}
.service-menu li a:hover { background: rgba(219, 58, 36, 0.08); }
.hero {
  position: relative;
  min-height: 46svh;
  display: grid;
  align-items: stretch;
  overflow: clip;
}
.hero-home { min-height: 100svh; }
.hero-compact { min-height: 46svh; }
.hero-media, .hero-media::after {
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 15, 11, 0.72) 0%, rgba(20, 15, 11, 0.44) 44%, rgba(20, 15, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(219, 58, 36, 0.16), transparent);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-media img.is-active {
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 4rem;
  min-height: inherit;
  color: #fff8f0;
  max-width: 1120px;
}
.kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(246, 185, 77, 0.18);
  color: var(--accent);
  border: 1px solid rgba(246, 185, 77, 0.32);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); max-width: 18ch; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
.hero-content p, .section-head p, .panel p, .feature-card p, .service-card p, .bullet-card p, .contact-card p, .cta-block p, .cta-inline p, .split p, .site-footer p {
  line-height: 1.75;
  color: inherit;
}
.hero-content p {
  max-width: 60ch;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 170px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}
.button-primary { background: var(--brand); color: #fff; }
.button-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.button-light { background: #fff; color: var(--dark); }
.button-outline-light { border-color: rgba(255,255,255,0.34); color: #fff; }
.cta-inline .button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.section { padding: 5.5rem 0; }
.section-alt { background: rgba(255,255,255,0.5); }
.section-dark {
  background:
    radial-gradient(circle at top right, rgba(246, 185, 77, 0.18), transparent 30%),
    linear-gradient(180deg, #2f1f18 0%, #1f1714 100%);
  color: #fff6ec;
}
.strip-stats { padding: 1.2rem 0; }
.stats-grid, .feature-grid, .cards-grid, .bullet-grid, .contact-grid, .video-grid {
  display: grid;
  gap: 1.2rem;
}
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid article, .feature-card, .bullet-card, .contact-card {
  padding: 1.35rem;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stats-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}
.stats-grid span { color: var(--muted); line-height: 1.7; }
.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}
.section-head-wide { max-width: 100%; }
.section-head p { color: var(--muted); }
.cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-card img { aspect-ratio: 1 / 0.78; object-fit: cover; }
.service-card-body { padding: 1.4rem; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 1.8rem;
  align-items: center;
}
.split-reverse { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr); }
.panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fff4e9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.process-list, .check-list, .footer-links {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}
.media-stack img {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.chip-row span {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(219, 58, 36, 0.08);
  border: 1px solid rgba(219, 58, 36, 0.12);
  color: var(--brand-deep);
  font-weight: 700;
}
.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.video-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-frame-portrait {
  padding-top: 177.78%;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.cta-block, .cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.feature-grid, .bullet-grid, .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.site-footer {
  padding: 4rem 0 1.5rem;
  background: #f0e7da;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-brand img { width: 236px; }
.footer-grid h2 {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}
.footer-links { padding-left: 0; list-style: none; }
.footer-links li + li { margin-top: 0.55rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .header-inner { align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    width: min(360px, calc(100vw - 2rem));
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1rem;
  }
  .nav-panel.open { display: block; }
  .nav-list { flex-direction: column; }
  .service-menu ul {
    position: static;
    width: auto;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0.5rem 0 0;
  }
  .cards-grid, .feature-grid, .bullet-grid, .contact-grid, .stats-grid, .footer-grid, .split, .split-reverse, .cta-block, .cta-inline, .video-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .topbar { font-size: 0.88rem; }
  .topbar-inner {
    justify-content: flex-start;
    gap: 0.6rem 1rem;
    padding: 0.65rem 0;
  }
  .header-inner { gap: 1rem; padding: 0.85rem 0; }
  .brand img, .footer-brand img { width: 152px; }
  .hero-content {
    padding: 4.5rem 0 3rem;
    max-width: 100%;
  }
  .hero-content p {
    max-width: 28ch;
    font-size: 1rem;
  }
  h1 { max-width: 12ch; font-size: clamp(2.6rem, 12vw, 4.1rem); }
  .section { padding: 4rem 0; }
  .hero-actions, .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-actions .button, .cta-actions .button {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .stats-grid article, .feature-card, .bullet-card, .contact-card, .service-card-body, .panel {
    padding: 1.1rem;
  }
}