:root {
  --brand-orange: #f28a00;
  --brand-orange-soft: #fff3e3;
  --brand-orange-deep: #9c4a00;
  --brand-red: #b6221f;
  --brand-red-deep: #8b1715;
  --ink: #202124;
  --ink-soft: #4f5358;
  --muted: #6f7378;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-alt: #fbfaf7;
  --line: #e6e2da;
  --success: #2d6a4f;
  --shadow-sm: 0 8px 24px rgba(32, 33, 36, .08);
  --shadow-md: 0 18px 48px rgba(32, 33, 36, .11);
  --radius-sm: .75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 75rem;
  --header-height: 5.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible {
  outline: .2rem solid var(--brand-red-deep);
  outline-offset: .2rem;
  border-radius: .35rem;
}
.site-footer :focus-visible,
.home-cta :focus-visible,
.cta-band :focus-visible,
.brand-panel :focus-visible {
  outline-color: #ffb24e;
}

.skip-link {
  position: fixed;
  inset: .75rem auto auto .75rem;
  z-index: 9999;
  transform: translateY(-180%);
  padding: .65rem .9rem;
  border-radius: .5rem;
  color: #fff;
  background: var(--brand-red-deep);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 52rem); margin-inline: auto; }
.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section--compact { padding: clamp(2.75rem, 5vw, 4.5rem) 0; }
.section--surface { background: var(--surface); }
.section--alt { background: var(--surface-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--brand-red-deep);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.5rem; height: .17rem; border-radius: 999px; background: var(--brand-orange); }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
  hyphens: auto;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.35rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); max-width: 18ch; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }
p + p { margin-top: 1rem; }
.lead { color: var(--ink-soft); font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.72; max-width: 48rem; }
.muted { color: var(--muted); }
.text-link { color: var(--brand-red-deep); font-weight: 750; }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  background: var(--brand-red-deep);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.button:hover { background: #741210; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.button--secondary { color: var(--ink); background: var(--surface); border-color: var(--line); }
.button--secondary:hover { background: #fff; border-color: #cbc6bc; }
.button--orange { background: var(--brand-orange-deep); }
.button--orange:hover { background: #7f3d00; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(230, 226, 218, .9);
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 1rem; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img { width: clamp(12.2rem, 21vw, 15.5rem); height: auto; }

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.35rem;
  height: .13rem;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; transform: translateY(-.42rem); }
.nav-toggle-bar::after { position: absolute; transform: translateY(.42rem); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: rotate(-45deg); }

.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .18rem; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link,
.submenu-toggle {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: .35rem;
  padding: .55rem .72rem;
  border: 0;
  border-radius: .6rem;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}
.nav-link:hover,
.submenu-toggle:hover,
.nav-link[aria-current="page"] { color: var(--brand-red-deep); background: #fff7f6; }
.submenu-toggle::after { content: ""; width: .45rem; height: .45rem; border-right: .12rem solid currentColor; border-bottom: .12rem solid currentColor; transform: translateY(-.12rem) rotate(45deg); transition: transform .16s ease; }
.submenu-toggle[aria-expanded="true"]::after { transform: translateY(.12rem) rotate(225deg); }
.submenu {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  display: none;
  min-width: 16rem;
  margin: 0;
  padding: .5rem;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  list-style: none;
}
.submenu[data-open="true"] { display: block; }
.submenu a { display: block; padding: .7rem .75rem; border-radius: .55rem; color: var(--ink-soft); font-weight: 700; text-decoration: none; }
.submenu a:hover, .submenu a[aria-current="page"] { color: var(--brand-red-deep); background: #fff6f4; }
.header-cta { margin-left: .35rem; white-space: nowrap; }

.hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem); }
.hero::before {
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -8rem;
  width: min(48vw, 38rem);
  aspect-ratio: 1;
  border: 5rem solid rgba(242, 138, 0, .08);
  border-radius: 30% 70% 55% 45% / 55% 40% 60% 45%;
  content: "";
  transform: rotate(10deg);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.hero-copy .lead { margin-top: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-note { margin-top: 1.2rem; color: var(--muted); font-size: .93rem; }

.brand-panel {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #202124;
  box-shadow: var(--shadow-md);
}
.brand-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(242, 138, 0, .95) 0 28%, transparent 28% 100%),
    linear-gradient(28deg, transparent 0 54%, rgba(182, 34, 31, .95) 54% 75%, transparent 75% 100%);
  content: "";
}
.brand-panel::after {
  position: absolute;
  right: 10%;
  bottom: -4rem;
  width: 65%;
  aspect-ratio: 1;
  border: .12rem solid rgba(255, 255, 255, .35);
  border-radius: 1.4rem;
  content: "";
  transform: rotate(28deg);
}
.brand-panel-card {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  padding: 1.3rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 1rem;
  background: rgba(32,33,36,.82);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.brand-panel-card strong { display: block; margin-bottom: .35rem; font-size: 1.2rem; }
.brand-panel-card p { color: rgba(255,255,255,.76); }

.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.trust-list li { position: relative; padding: 1.25rem; text-align: center; font-size: .96rem; font-weight: 800; }
.trust-list li + li::before { position: absolute; top: 25%; bottom: 25%; left: 0; width: 1px; background: var(--line); content: ""; }

.section-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-heading p { max-width: 35rem; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(32,33,36,.02);
}
.card-kicker { margin-bottom: 1rem; color: var(--brand-orange-deep); font-size: .8rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.card p { margin-top: .8rem; color: var(--muted); }
.card .text-link { margin-top: auto; padding-top: 1.3rem; }
.card--accent { border-color: #f1d2b0; background: var(--brand-orange-soft); }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-step { counter-increment: step; padding: 1.5rem; border-top: .18rem solid var(--brand-orange); background: var(--surface); }
.process-step::before { content: "0" counter(step); display: block; margin-bottom: 1rem; color: var(--brand-red-deep); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.process-step p { margin-top: .65rem; color: var(--muted); }

.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split-panel { min-height: 28rem; display: grid; place-items: end start; overflow: hidden; padding: 1.5rem; border-radius: var(--radius-lg); background: #252527; color: #fff; }
.split-panel .metric { max-width: 18rem; padding: 1.2rem; border: 1px solid rgba(255,255,255,.18); border-radius: 1rem; background: rgba(255,255,255,.07); }
.metric strong { display: block; color: #fff; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1; }
.metric span { display: block; margin-top: .5rem; color: rgba(255,255,255,.72); }
.split-copy .lead { margin-top: 1.3rem; }
.split-copy .button { margin-top: 1.8rem; }

.cta-band { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--brand-red-deep); color: #fff; }
.cta-grid { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.cta-grid h2 { max-width: 15ch; }
.cta-grid p { max-width: 35rem; margin-top: .7rem; color: rgba(255,255,255,.78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; flex: 0 0 auto; }
.cta-band .button { background: #fff; color: var(--brand-red-deep); }
.cta-band .button:hover { background: #fff4f3; }
.cta-band .button--ghost { border-color: rgba(255,255,255,.55); background: transparent; color: #fff; }
.cta-band .button--ghost:hover { background: rgba(255,255,255,.1); }

.page-hero { padding: clamp(3.25rem, 6vw, 5.75rem) 0 3rem; border-bottom: 1px solid var(--line); background: var(--surface); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0 0 1.3rem; padding: 0; color: var(--muted); font-size: .9rem; list-style: none; }
.breadcrumbs li { display: inline-flex; min-height: 2rem; align-items: center; line-height: 1.4; }
.breadcrumbs a { display: inline-flex; min-height: 2rem; align-items: center; padding: 0; line-height: inherit; }
.breadcrumbs li + li::before { content: "/"; display: inline-flex; align-items: center; align-self: stretch; margin-right: .45rem; color: #aaa; }
.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}
.page-hero .lead { margin-top: 1.25rem; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.prose h2 { margin-top: 3.1rem; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }
.prose p, .prose ul { margin-top: 1rem; color: var(--ink-soft); }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: .45rem; }
.prose .callout { margin-top: 2rem; padding: 1.3rem 1.4rem; border-left: .22rem solid var(--brand-orange); border-radius: 0 .8rem .8rem 0; background: var(--brand-orange-soft); color: var(--ink); }

.sidebar { position: sticky; top: calc(var(--header-height) + 1.25rem); display: grid; gap: 1rem; }
.sidebar-card { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.sidebar-card h2 { font-size: 1.15rem; }
.sidebar-card p { margin-top: .6rem; color: var(--muted); font-size: .95rem; }
.sidebar-card .button { width: 100%; margin-top: 1rem; }

.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; margin-top: 1.4rem; padding: 0; list-style: none; }
.feature-list li { padding: 1rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface); color: var(--ink-soft); }
.feature-list strong { display: block; color: var(--ink); }

.visually-spaced-heading { margin-bottom: 1.5rem; max-width: 20ch; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.product-card { padding: 1.25rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
.product-card h3 { font-size: 1.15rem; }
.product-card p { margin-top: .55rem; color: var(--muted); font-size: .95rem; }
.product-card dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem .8rem; margin: .9rem 0 0; font-size: .9rem; }
.product-card dt { color: var(--muted); }
.product-card dd { margin: 0; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.contact-card address { margin-top: 1rem; color: var(--ink-soft); font-style: normal; }
.contact-card a { color: var(--brand-red-deep); font-weight: 750; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

.draft-note { margin-bottom: 2rem; padding: 1rem 1.1rem; border: 1px solid #e8c365; border-radius: .8rem; background: #fff8db; color: #5c4700; font-size: .95rem; }

.site-footer { border-top: 1px solid var(--line); background: #202124; color: rgba(255,255,255,.8); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; padding: 3.5rem 0 2.5rem; }
.footer-logo { width: 13.5rem; filter: drop-shadow(0 0 0 transparent); }
.footer-brand p { max-width: 26rem; margin-top: 1rem; color: rgba(255,255,255,.62); }
.footer-title { margin-bottom: .8rem; color: #fff; font-weight: 800; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .45rem; }
.footer-links a { display: inline-flex; min-height: 2rem; align-items: center; padding-block: .15rem; color: rgba(255,255,255,.7); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .88rem; }

@media (max-width: 68.74rem) {
  :root { --header-height: 4.75rem; }
  .header-inner { min-height: var(--header-height); }
  .nav-toggle { display: none; }
  .js .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: block;
    max-height: none;
    overflow: auto;
    padding: .75rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
  }
  .js .site-nav { display: none; max-height: calc(100vh - var(--header-height)); }
  .js .site-nav[data-open="true"] { display: block; }
  .nav-list { align-items: stretch; flex-direction: column; gap: .15rem; }
  .nav-link, .submenu-toggle { width: 100%; min-height: 3.15rem; justify-content: space-between; padding-inline: .9rem; }
  .submenu { position: static; min-width: 0; margin: .15rem 0 .35rem; border: 0; border-left: 2px solid var(--brand-orange); border-radius: .2rem; box-shadow: none; }
  .submenu a { min-height: 2.8rem; display: flex; align-items: center; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .brand-panel { min-height: 24rem; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 46rem) {
  .page-hero h1 { font-size: clamp(2.05rem, 10.5vw, 3.4rem); }
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--container)); }
  .brand img { width: 11.7rem; }
  .hero { padding-top: 3.5rem; }
  .hero-grid { gap: 2rem; }
  .hero-actions .button { width: 100%; }
  .brand-panel { min-height: 20rem; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li:nth-child(3)::before { display: none; }
  .trust-list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section-heading { align-items: start; flex-direction: column; }
  .cards, .process, .feature-list, .product-grid, .contact-grid, .sidebar { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-panel { min-height: 20rem; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-actions .button { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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

.footer-logo {
  padding: .55rem;
  border-radius: .7rem;
  background: #fff;
}

/* ==========================================================================\n   Homepage UX refinement v1.2\n   Editorial photo-led layout. Existing subpage components stay unchanged.\n   ========================================================================== */
.home-hero {
  position: relative;
  padding: clamp(1.2rem, 2vw, 2rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
}
.home-hero-shell {
  position: relative;
  min-height: clamp(34rem, 62vw, 43rem);
  overflow: hidden;
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  background: #dad8d3;
  box-shadow: 0 24px 70px rgba(32, 33, 36, .11);
  isolation: isolate;
}
.home-hero-media,
.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero-media {
  background:
    linear-gradient(130deg, rgba(242,138,0,.12), rgba(182,34,31,.08)),
    #d9d7d2;
}
.home-hero-media img {
  object-fit: cover;
  object-position: 62% 50%;
}
.home-hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17,17,18,.16) 0%, rgba(17,17,18,0) 48%);
  content: "";
  pointer-events: none;
}
.home-hero-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(1rem, 4vw, 3.25rem);
  width: min(42rem, calc(100% - 2rem));
  padding: clamp(1.6rem, 3vw, 3rem);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: clamp(1.1rem, 2vw, 1.75rem);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 55px rgba(32,33,36,.18);
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.home-hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.75rem, 5.3vw, 5.45rem);
  letter-spacing: -.045em;
}
.home-hero-copy .lead {
  max-width: 38rem;
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.65;
}
.home-hero-copy .hero-actions { margin-top: 1.65rem; }
.home-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .8rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}
.home-hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.1rem;
  padding: .38rem .7rem;
  border: 1px solid #eee8df;
  border-radius: 999px;
  background: #fffaf4;
  color: #4f4942;
  font-size: .88rem;
  font-weight: 750;
}
.home-hero-facts li::before {
  width: .45rem;
  height: .45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  content: "";
}
.home-hero-caption {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  max-width: 18rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: .9rem;
  background: rgba(27,27,28,.7);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  line-height: 1.45;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(20rem, 1.22fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.3rem);
}
.home-section-intro h2 { max-width: 13ch; }
.home-section-intro > p { max-width: 42rem; color: var(--muted); font-size: 1.02rem; }

.service-editorial {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: repeat(2, minmax(12.5rem, auto));
  gap: 1rem;
}
.service-tile {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--surface);
}
.service-tile::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: .22rem;
  border-radius: 0 999px 999px 0;
  background: var(--brand-orange);
  content: "";
}
.service-tile--primary {
  grid-row: 1 / span 2;
  justify-content: flex-end;
  min-height: 26rem;
  border-color: #ead2ba;
  background:
    radial-gradient(circle at 86% 12%, rgba(242,138,0,.18), transparent 32%),
    linear-gradient(155deg, #fff7ec 0%, #fff 70%);
}
.service-tile--primary::after {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: clamp(7rem, 12vw, 11rem);
  aspect-ratio: 1;
  border: 1.2rem solid rgba(182,34,31,.06);
  border-radius: 28% 72% 56% 44%;
  content: "";
  transform: rotate(18deg);
}
.service-index {
  margin-bottom: auto;
  color: var(--brand-red-deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-tile h3 { margin-top: 1rem; font-size: clamp(1.35rem, 2.2vw, 2rem); }
.service-tile p { max-width: 34rem; margin-top: .8rem; color: var(--muted); }
.service-tile .text-link { margin-top: 1.4rem; }

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.process-line::before {
  position: absolute;
  top: 1.1rem;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  background: #dfd8ce;
  content: "";
}
.process-point { position: relative; z-index: 1; }
.process-dot {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: .35rem solid #fff;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 1px #e0d7cb;
  color: transparent;
}
.process-point h3 { margin-top: 1.05rem; }
.process-point p { max-width: 16rem; margin-top: .6rem; color: var(--muted); }

.story-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, .82fr);
  align-items: center;
}
.story-media {
  position: relative;
  min-height: clamp(28rem, 43vw, 36rem);
  overflow: hidden;
  border-radius: 1.8rem;
  background: #dedbd5;
}
.story-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-copy {
  position: relative;
  z-index: 2;
  margin-left: clamp(-5rem, -5vw, -3rem);
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 55px rgba(32,33,36,.11);
}
.story-copy h2 { max-width: 12ch; }
.story-copy .lead { margin-top: 1.2rem; font-size: 1.08rem; }
.story-fact {
  display: flex;
  gap: .9rem;
  align-items: baseline;
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.story-fact strong { color: var(--brand-red-deep); font-size: clamp(2.3rem, 4vw, 3.8rem); line-height: 1; }
.story-fact span { max-width: 17rem; color: var(--muted); font-size: .92rem; }
.story-copy .button { margin-top: 1.5rem; }

.home-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #222224;
  color: #fff;
}
.home-cta-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: center;
}
.home-cta h2 { max-width: 13ch; }
.home-cta p { max-width: 38rem; margin-top: .8rem; color: rgba(255,255,255,.7); }
.home-cta .cta-actions { justify-content: flex-end; }
.home-cta .button { background: var(--brand-orange); color: #241608; }
.home-cta .button:hover { background: #ff9c1c; }
.home-cta .button--ghost { border-color: rgba(255,255,255,.38); background: transparent; color: #fff; }

@media (max-width: 68.74rem) {
  .home-hero { padding-top: .85rem; }
  .home-hero-shell { min-height: 40rem; }
  .home-hero-media img { object-position: 65% center; }
  .home-hero-copy { top: auto; bottom: 1.25rem; left: 1.25rem; width: min(40rem, calc(100% - 2.5rem)); transform: none; }
  .home-hero-caption { display: none; }
  .home-section-intro { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .service-editorial { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .service-tile--primary { grid-row: auto; grid-column: 1 / -1; min-height: 19rem; }
  .story-editorial { grid-template-columns: 1fr; }
  .story-copy { width: calc(100% - 2rem); margin: -4rem auto 0; }
  .home-cta-grid { grid-template-columns: 1fr; }
  .home-cta .cta-actions { justify-content: flex-start; }
}

@media (max-width: 46rem) {
  .page-hero h1 { font-size: clamp(2.05rem, 10.5vw, 3.4rem); }
  .home-hero-shell { min-height: 0; overflow: visible; border-radius: 1.1rem; box-shadow: none; background: transparent; }
  .home-hero-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 1.1rem; box-shadow: var(--shadow-sm); }
  .home-hero-media img { position: absolute; object-position: 64% center; }
  .home-hero-shell::after { display: none; }
  .home-hero-copy {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 1rem);
    margin: -2.4rem auto 0;
    padding: 1.35rem;
    border-radius: 1rem;
  }
  .home-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .home-hero-copy .hero-actions .button { width: 100%; }
  .home-hero-facts { gap: .45rem; }
  .home-hero-facts li { width: auto; }
  .service-editorial { grid-template-columns: 1fr; }
  .service-tile--primary { grid-column: auto; min-height: 17rem; }
  .process-line { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-line::before { top: 1.1rem; bottom: 1.1rem; left: 1.05rem; width: 1px; height: auto; }
  .process-point { padding-left: 3.2rem; }
  .process-dot { position: absolute; top: 0; left: 0; }
  .process-point h3 { margin-top: 0; }
  .story-media { min-height: 22rem; border-radius: 1.1rem; }
  .story-copy { width: calc(100% - 1rem); margin-top: -2.2rem; padding: 1.4rem; border-radius: 1rem; }
  .story-fact { align-items: center; }
  .home-cta .cta-actions { width: 100%; }
  .home-cta .cta-actions .button { flex: 1 1 100%; }
}

/* Progressive enhancement fallback: core navigation remains usable when JS is unavailable. */
html:not(.js) .submenu {
  display: block;
}
html:not(.js) .submenu-toggle {
  cursor: default;
}
@media (min-width: 68.75rem) {
  html:not(.js) .submenu {
    position: absolute;
    display: block;
  }
}

/* V1.4 – authentische Bestandsmedien der bisherigen Website */
.content-media {
  margin: 1.8rem 0 2.2rem;
}
.content-media img {
  display: block;
  width: 100%;
  max-width: 42rem;
  height: auto;
  aspect-ratio: 50 / 33;
  object-fit: cover;
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(242,138,0,.14), rgba(182,34,31,.08)),
    #f0ede8;
  box-shadow: var(--shadow-sm);
}
.content-media figcaption {
  max-width: 42rem;
  margin-top: .65rem;
  color: var(--ink-soft);
  font-size: .84rem;
}

/* V2.12 – ergänzende Bestandsfotos in Originaloptik, bewusst ohne Upscaling über die Quelldatei hinaus */
.content-media--small,
.content-media--small img {
  max-width: 31.25rem;
}
.product-visual picture { display: block; }

.service-asset {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  place-items: center;
  padding: .35rem;
  border: 1px solid rgba(182,34,31,.08);
  border-radius: .9rem;
  background: rgba(255,255,255,.84);
}
.service-asset img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.service-asset--carton {
  height: 4.7rem;
  padding: .25rem .45rem;
}
.service-tile--with-asset .service-index { padding-right: 4.5rem; }

.product-card--visual {
  position: relative;
  min-height: 17.5rem;
  padding-right: clamp(6.5rem, 11vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 18%, rgba(242,138,0,.12), transparent 35%),
    var(--surface);
}
.product-visual {
  position: absolute;
  top: 1rem;
  right: .85rem;
  display: grid;
  width: 5.5rem;
  min-height: 9rem;
  place-items: center;
}
.product-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 9rem;
  object-fit: contain;
}

.offer-asset {
  display: flex;
  max-width: 34rem;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.8rem;
  padding: .85rem 1rem;
  border: 1px solid #eed8c2;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff8ee, #fff);
}
.offer-asset img {
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  object-fit: contain;
}
.offer-asset > div { display: grid; gap: .15rem; }
.offer-asset-kicker {
  color: var(--brand-red-deep);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.offer-asset strong { font-size: 1rem; }

/* Stable, readable fallback when a legacy remote image is temporarily unavailable. */
.home-hero-media,
.story-media,
.content-media img,
.product-visual,
.service-asset,
.offer-asset {
  background-color: #f2efe9;
}

@media (max-width: 46rem) {
  .content-media img { max-width: none; }
  .product-card--visual { min-height: 15rem; padding-right: 6.5rem; }
  .service-asset { width: 3.35rem; height: 3.35rem; }
  .service-asset--carton { height: 4.2rem; }
  .offer-asset { align-items: flex-start; }
}

/* v1.4 accessibility: preserve readable button labels inside contact cards. */
.contact-card .button { color: #fff; }
.contact-card .button--secondary { color: var(--ink); }


/* AI/AEO answer blocks v1.6 */
.answer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-top:1.5rem}
.answer-card{background:#fff;border:1px solid rgba(39,39,42,.10);border-radius:1rem;padding:1.25rem;box-shadow:0 .3rem 1.4rem rgba(39,39,42,.045)}
.answer-card h3{font-size:1.08rem;line-height:1.35;margin:0 0 .6rem;color:var(--text)}
.answer-card p{margin:0;color:var(--muted);line-height:1.65}
@media (max-width:820px){.answer-grid{grid-template-columns:1fr}}

/* Relaunch v2.0 production helpers */
.callout--spaced{margin-top:2rem}
.eyebrow--warm{color:#ffb24e}
.error-page{min-height:60vh;display:grid;align-items:center}
.error-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.5rem}
.error-code{font-size:clamp(3.5rem,12vw,8rem);font-weight:800;line-height:.9;color:var(--color-primary,#b5211f);letter-spacing:-.06em}

/* V2.0 – komfortablere Touch-Ziele für Inline-Links (WCAG 2.2 Target Size) */
.prose a,
.contact-card a,
.text-link {
  padding-block: .125rem;
}


/* V2.4 – statische, datenschutzfreundliche Kundenstimmen */
.reviews-section { border-block: 1px solid rgba(39,39,42,.06); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.review-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 14rem;
  margin: 0;
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 .35rem 1.4rem rgba(32,33,36,.045);
}
.review-stars {
  color: var(--brand-orange-deep);
  font-size: 1.05rem;
  letter-spacing: .12em;
  line-height: 1;
}
.review-card blockquote { margin: 0; }
.review-card blockquote p {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 680;
  line-height: 1.55;
}
.review-card figcaption {
  display: grid;
  gap: .12rem;
  margin-top: auto;
  color: var(--muted);
  font-size: .92rem;
}
.review-card figcaption strong { color: var(--ink); font-size: .98rem; }
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.35rem;
}
.reviews-footer p { max-width: 46rem; color: var(--muted); font-size: .92rem; }
@media (max-width: 820px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .reviews-footer { align-items: flex-start; flex-direction: column; }
}

/* V2.5 – stabiler, bildbetonter Homepage-Hero ohne Textüberlagerung */
.home-hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.home-hero-media {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
}
.home-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.home-hero-shell::after { display: none; }
.home-hero-copy {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transform: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.home-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 7vw, 3.65rem);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
.home-hero-copy .lead {
  max-width: 42rem;
  font-size: clamp(1.02rem, 1.8vw, 1.17rem);
}
.home-hero-caption { display: none; }

@media (min-width: 64rem) {
  .home-hero-shell {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    min-height: clamp(39rem, 48vw, 43rem);
  }
  .home-hero-media {
    grid-column: 2;
    grid-row: 1;
    min-height: 100%;
    aspect-ratio: auto;
  }
  .home-hero-media img { object-position: 70% 50%; }
  .home-hero-copy {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 3.1vw, 3.25rem);
    border-top: 0;
    border-right: 1px solid var(--line);
  }
  .home-hero-copy h1 {
    max-width: 13.5ch;
    font-size: clamp(2.65rem, 3.55vw, 4rem);
  }
  .home-hero-copy .lead {
    margin-top: 1.15rem;
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    line-height: 1.62;
  }
  .home-hero-copy .hero-actions { margin-top: 1.35rem; }
  .home-hero-facts { margin-top: 1.2rem; }
  .home-hero-caption {
    display: block;
    right: clamp(1rem, 2vw, 1.6rem);
    bottom: clamp(1rem, 2vw, 1.6rem);
    max-width: 17rem;
  }
}

@media (max-width: 63.99rem) {
  .home-hero { padding-top: .85rem; }
  .home-hero-shell { min-height: 0; }
  .home-hero-copy { width: auto; }
}

@media (max-width: 46rem) {
  .home-hero-media {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    box-shadow: none;
  }
  .home-hero-media img { object-position: 72% 50%; }
  .home-hero-copy {
    width: auto;
    margin: 0;
    padding: 1.35rem;
  }
  .home-hero-copy h1 {
    max-width: 16ch;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }
}


/* V2.6 – typografische Bereinigung, bildbetonter Hero und Downloadführung */
@media (min-width: 30.01rem) {
  h1, h2, h3, h4 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }
}

@media (min-width: 64rem) {
  .home-hero-shell {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    min-height: 0;
    background: #fff;
  }
  .home-hero-media {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: calc(100% - 1.25rem);
    height: auto;
    min-height: 0;
    margin: 1.25rem 1.25rem 1.25rem 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1.35rem;
    background: #e8e9e7;
  }
  .home-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: clamp(2.2rem, 3.1vw, 3.15rem);
    border-right: 0;
  }
  .home-hero-copy h1 {
    max-width: 15.5ch;
    font-size: clamp(2.65rem, 3.15vw, 3.55rem);
    line-height: 1.06;
  }
  .home-hero-copy .lead {
    max-width: 36rem;
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.58;
  }
  .story-copy h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
  }
}

.download-panel {
  margin-bottom: 2.5rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid #ead7c3;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, #fff8ef 0%, #fff 72%);
  box-shadow: 0 .5rem 1.8rem rgba(32,33,36,.05);
}
.download-panel h2 { max-width: 20ch; }
.download-panel > p:not(.eyebrow):not(.download-note) { margin-top: 1rem; color: var(--ink-soft); }
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.download-card {
  display: grid;
  gap: .55rem;
  min-height: 12rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.download-card:hover {
  transform: translateY(-2px);
  border-color: #d5b38d;
  box-shadow: var(--shadow-sm);
}
.download-card__type {
  color: var(--brand-red-deep);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.download-card strong { font-size: 1.15rem; line-height: 1.25; }
.download-card > span:not(.download-card__type):not(.download-card__action) { color: var(--muted); }
.download-card__action {
  align-self: end;
  margin-top: auto;
  color: var(--brand-red-deep);
  font-weight: 800;
}
.download-note {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid #ead7c3;
  color: var(--ink-soft);
}
.download-note a { color: var(--brand-red-deep); font-weight: 800; }
.sidebar-card--accent { border-color: #ead7c3; background: #fff8ef; }

@media (max-width: 46rem) {
  .download-grid { grid-template-columns: 1fr; }
  .download-card { min-height: 0; }
}


/* V2.7 – lokale Ortsseiten */
.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.15rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.region-links a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: .18rem;
}
.region-links a::after { content: "→"; color: var(--brand-red-deep); }
.region-links a:hover { color: var(--brand-red-deep); border-bottom-color: currentColor; }
.local-proof { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--ink-soft); }
.local-proof strong { color: var(--ink); }

/* V2.8 – Homepage-Hero als bildfüllende Bühne. Nur Layout/Styling geändert;
   Texte, Links und Bildquellen in index.html bleiben unverändert. */
.home-hero {
  padding: 0 0 clamp(4.5rem, 7vw, 6.5rem);
  background: #fff;
}
.home-hero > .container {
  width: 100%;
  max-width: none;
}
.home-hero-shell {
  position: relative;
  display: flex;
  min-height: clamp(42rem, calc(100svh - var(--header-height)), 52rem);
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: #222;
  box-shadow: none;
  isolation: isolate;
}
.home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 0;
  background: #d9d7d2;
  box-shadow: none;
}
.home-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.home-hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg,
      rgba(12,12,13,.88) 0%,
      rgba(12,12,13,.77) 30%,
      rgba(12,12,13,.48) 52%,
      rgba(12,12,13,.16) 76%,
      rgba(12,12,13,.08) 100%),
    linear-gradient(180deg, rgba(12,12,13,.08), rgba(12,12,13,.20));
  content: "";
  pointer-events: none;
}
.home-hero-copy {
  position: relative;
  z-index: 3;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  transform: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.home-hero-copy .eyebrow {
  margin-bottom: 1.15rem;
  color: rgba(255,255,255,.88);
}
.home-hero-copy h1 {
  max-width: 13.5ch;
  color: #fff;
  font-size: clamp(3rem, 4.25vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-shadow: 0 2px 22px rgba(0,0,0,.16);
}
.home-hero-copy .lead {
  max-width: 43rem;
  margin-top: 1.35rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(0,0,0,.18);
}
.home-hero-copy .hero-actions {
  margin-top: 1.65rem;
}
.home-hero-copy .hero-actions .button:not(.button--secondary) {
  border-color: #fff;
  background: #fff;
  color: var(--brand-red-deep);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.home-hero-copy .hero-actions .button:not(.button--secondary):hover {
  background: #fff8f7;
}
.home-hero-copy .hero-actions .button--secondary {
  border-color: rgba(255,255,255,.62);
  background: rgba(18,18,19,.18);
  color: #fff;
  box-shadow: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.home-hero-copy .hero-actions .button--secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.10);
}
.home-hero-facts {
  gap: .6rem 1rem;
  margin-top: 1.35rem;
}
.home-hero-facts li {
  min-height: 1.8rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-size: .87rem;
  font-weight: 750;
}
.home-hero-facts li::before {
  width: .38rem;
  height: .38rem;
  background: var(--brand-orange);
  box-shadow: 0 0 0 .16rem rgba(242,138,0,.12);
}
.home-hero-caption {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(.85rem, 1.6vw, 1.35rem);
  display: block;
  max-width: 17rem;
  padding: .55rem .72rem;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: .65rem;
  background: rgba(20,20,21,.54);
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  line-height: 1.4;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.home-hero :focus-visible {
  outline-color: #ffb24e;
}

@media (max-width: 63.99rem) {
  .home-hero { padding-top: 0; }
  .home-hero-shell {
    min-height: clamp(42rem, calc(100svh - var(--header-height)), 48rem);
  }
  .home-hero-media img { object-position: 68% 50%; }
  .home-hero-shell::after {
    background:
      linear-gradient(90deg,
        rgba(12,12,13,.88) 0%,
        rgba(12,12,13,.75) 48%,
        rgba(12,12,13,.38) 78%,
        rgba(12,12,13,.22) 100%),
      linear-gradient(180deg, rgba(12,12,13,.08), rgba(12,12,13,.24));
  }
  .home-hero-copy {
    width: min(calc(100% - 2rem), var(--container));
    padding: 3.4rem 0 5.5rem;
  }
  .home-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.75rem, 7vw, 4.1rem);
  }
  .home-hero-caption {
    display: block;
  }
}

@media (max-width: 46rem) {
  .home-hero {
    padding-bottom: 4rem;
  }
  .home-hero-shell {
    display: block;
    min-height: 0;
    overflow: hidden;
    border-radius: 0;
    background: #222;
  }
  .home-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .home-hero-media img {
    object-position: 70% 50%;
  }
  .home-hero-shell::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(12,12,13,.82), rgba(12,12,13,.48)),
      linear-gradient(180deg,
        rgba(12,12,13,.30) 0%,
        rgba(12,12,13,.50) 56%,
        rgba(12,12,13,.76) 100%);
  }
  .home-hero-copy {
    position: relative;
    width: calc(100% - 1.5rem);
    margin: 0 auto;
    padding: 2.6rem 0 6.6rem;
  }
  .home-hero-copy .eyebrow {
    margin-bottom: .9rem;
    font-size: .75rem;
  }
  .home-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.3rem, 10.6vw, 3.05rem);
    line-height: 1.03;
  }
  .home-hero-copy .lead {
    margin-top: 1.1rem;
    font-size: 1rem;
    line-height: 1.55;
  }
  .home-hero-copy .hero-actions {
    gap: .65rem;
    margin-top: 1.35rem;
  }
  .home-hero-copy .hero-actions .button {
    width: 100%;
  }
  .home-hero-facts {
    display: grid;
    gap: .45rem;
    margin-top: 1.15rem;
  }
  .home-hero-facts li {
    width: auto;
    min-height: 1.5rem;
  }
  .home-hero-caption {
    right: auto;
    bottom: .8rem;
    left: .75rem;
    max-width: calc(100% - 1.5rem);
    font-size: .72rem;
  }
}
