/* Trigger FA font downloads early with swap — beats FA's async CSS font-display:block */
@font-face { font-family:"Font Awesome 6 Free"; font-weight:900; font-style:normal; font-display:swap; src:url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.woff2") format("woff2"); }
@font-face { font-family:"Font Awesome 6 Brands"; font-weight:400; font-style:normal; font-display:swap; src:url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.woff2") format("woff2"); }

:root {
  --ink: #21161a;
  --ink-soft: #4a3038;
  --surface: #fffbfc;
  --paper: #ffffff;
  --muted: #6c4b56;
  --brand: #cc0033;
  --brand-2: #e03f62;
  --accent: #1a1a1a;
  --line: #f0dfe4;

  --shadow: 0 18px 40px rgba(49, 13, 24, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

/* Accessibility utilities */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

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

/* Focus indicators */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 0;
  border-color: var(--brand);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 3200px at 85% -10%, rgba(204, 0, 51, 0.12), transparent 60%),
    radial-gradient(900px 2400px at -10% 10%, rgba(111, 14, 39, 0.14), transparent 55%),
    var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.topbar {
  font-size: 0.92rem;
  background: #fff;
  color: #2f2f2f;
  border-bottom: 1px solid #f2c8d6;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  flex-wrap: wrap;
}

.topbar .container > span:first-child {
  font-weight: 700;
}

.topbar a {
  color: #2f2f2f;
  text-decoration: none;
}

.topbar-social {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.topbar-social a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8b9c8;
  border-radius: 999px;
  background: #fff8fa;
}

.topbar-social a:hover {
  border-color: #b3002d;
  color: #b3002d;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #a1002a;
  background: var(--brand);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: #fff;
}

.brand span {
  color: #ffd9e5;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.heritage-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 0.4rem 0.75rem;
  text-align: center;
  line-height: 1.3;
  backdrop-filter: blur(10px);
}

.heritage-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.heritage-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffd9e5;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.1rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff7fa;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffd6e2;
}

.nav-links a.nav-cta {
  background: #fff4f8;
  color: #8f0025;
  border: 1px solid rgba(255, 215, 228, 0.9);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-weight: 700;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta.active,
.nav-links a.nav-cta[aria-current="page"] {
  background: #ffffff;
  color: #7f001f;
}

.nav-links li.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.submenu-toggle {
  border: 0;
  background: transparent;
  color: #ffd6e2;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.15rem;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  top: 100%;
  margin-top: 0.35rem;
  left: 0;
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  border: 1px solid #f0c9d4;
  background: #fff;
  box-shadow: 0 14px 30px rgba(49, 13, 24, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 90;
}

.submenu li.submenu-all {
  grid-column: 1 / -1;
  margin-top: 0.3rem;
  padding-top: 0.4rem;
  border-top: 1px solid #f0c9d4;
}

.submenu a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  color: #7f001f;
  font-weight: 600;
}

.submenu a:hover {
  background: #fff2f6;
  color: #8f0025;
}

.nav-links li.has-submenu.submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(255, 214, 226, 0.55);
  border-radius: 10px;
  background: #b3002d;
  color: #fff7fa;
  padding: 0.45rem 0.6rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(125, 9, 41, 0.22);
  }
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(125, 9, 41, 0.32);
}

.btn-secondary {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
}

@media (hover: hover) {
  .btn-secondary:hover {
    background: var(--brand);
    color: #fff;
  }
}

/* btn-secondary on dark backgrounds — white outline so it's visible */
.hero-video .btn-secondary,
.cta-band .btn-secondary,
.dark-section .btn-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}

@media (hover: hover) {
  .hero-video .btn-secondary:hover,
  .cta-band .btn-secondary:hover,
  .dark-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
  }
}

/* Inner page hero: branded dark gradient so pages don't look plain */
.hero:not(.hero-video) {
  background: linear-gradient(135deg, #1a0a0e 0%, #7a0024 55%, #1a0a0e 100%);
  min-height: 260px;
  display: flex;
  align-items: center;
}

.hero:not(.hero-video) h1,
.hero:not(.hero-video) .lead,
.hero:not(.hero-video) p {
  color: #fff7f9;
}

.hero:not(.hero-video) .kicker {
  background: rgba(255, 234, 240, 0.18);
  color: #ffe0ea;
}

.hero.hero-shopfront {
  background:
    linear-gradient(100deg, rgba(20, 10, 13, 0.58), rgba(45, 10, 20, 0.42) 48%, rgba(25, 12, 16, 0.52)),
    url("assets/images/project-shopfront.webp") center / cover no-repeat;
  min-height: 380px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3rem;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-video {
  min-height: 72vh;
  min-height: 72dvh;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 10, 13, 0.82), rgba(45, 10, 20, 0.6) 48%, rgba(25, 12, 16, 0.7));
  z-index: 1;
}

.kicker {
  display: inline-block;
  background: #ffeaf0;
  color: #8a0d2c;
  font-weight: 700;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.18rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-video h1,
.hero-video .lead {
  color: #fff7f9;
}

.hero-video .kicker {
  background: rgba(255, 234, 240, 0.22);
  color: #ffe8ee;
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 240, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 18px 40px rgba(18, 8, 12, 0.22);
  backdrop-filter: blur(4px);
}

.hero-card h3 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.hero-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-kpi {
  border: 1px solid rgba(255, 236, 243, 0.48);
  border-radius: 10px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero-kpi-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.3rem;
}

.hero-kpi-text {
  display: block;
  color: #fff6f9;
  font-size: 0.82rem;
  line-height: 1.3;
}

.proof-band {
  margin-top: -1.2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.9rem;
}

.proof-tile strong {
  display: block;
  font-size: 1.24rem;
  color: #8a0d2c;
}

.stats-showcase {
  background: linear-gradient(135deg, #2a1319 0%, #5a1328 50%, #8a0d2c 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(49, 13, 24, 0.25);
  position: relative;
  overflow: hidden;
}

.stats-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-showcase h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
}

.stats-showcase .lead {
  color: #ffd9e5;
  margin-bottom: 2rem;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #ffe8ee;
  letter-spacing: 0.3px;
}

.stat-sublabel {
  display: block;
  font-size: 0.85rem;
  color: #ffd9e5;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.pill-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.pill {
  border: 1px solid #f0dfe4;
  background: #fff6f8;
  color: #6b2437;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.compare {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-x: auto;
  background: #fff;
}

.compare table {
  width: 100%;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 0.8rem;
  border-bottom: 1px solid #f3e7ea;
  text-align: left;
  vertical-align: top;
}

.compare th {
  background: #fff4f7;
  color: #6d1d34;
  font-size: 0.9rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(#e6c5cf, #f2dfe5);
}

.step {
  position: relative;
  margin-left: 1.7rem;
  padding: 0.6rem 0 0.8rem;
}

.step::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.95rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
}

.logo-cloud {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
}

section {
  padding: 2.8rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.25rem 1.5rem;
  box-shadow: 0 8px 22px rgba(49, 13, 24, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card > .btn {
  margin-top: auto;
  align-self: flex-start;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(49, 13, 24, 0.13);
  border-color: #f0c9d4;
}

.card .thumb img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid #f0d6de;
  background: #fff4f7;
  color: #8a0d2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.card-icon + h2,
.card-icon + h3 {
  margin-top: 0.1rem;
}

.card p,
.muted {
  color: var(--muted);
}

.img-placeholder {
  background: #f0eff0;
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: #999;
  font-size: 0.88rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.thumb {
  margin: -1.4rem -1.25rem 0.85rem;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: block;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #8a0d2c;
  text-transform: uppercase;
}

.detail-hero {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-hero img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.tag-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0.65rem 0 1rem;
}

.tag {
  border: 1px solid #f0c9d4;
  background: #fff2f6;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8a0d2c;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}

.logo-badge img {
  max-height: 52px;
  width: auto;
}

.quote {
  font-size: 1rem;
  color: #3f2a31;
}

.quote-by {
  margin-top: 0.8rem;
  font-weight: 700;
  color: #8a0d2c;
}

.quote-card {
  background: linear-gradient(180deg, #fff, #fff8fa);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 60;
  background: rgba(36, 10, 17, 0.92);
  border: 1px solid rgba(255, 233, 240, 0.24);
  border-radius: 999px;
  padding: 0.45rem;
  display: none;
  gap: 0.45rem;
  backdrop-filter: blur(8px);
}

.sticky-cta .btn {
  padding: 0.58rem 0.9rem;
  font-size: 0.9rem;
}

body.cookie-banner-open .sticky-cta {
  bottom: 170px;
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.7rem 0;
}

.marquee-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-item {
  min-width: 170px;
  border: 1px solid #f0dfe4;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-item img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

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

  html {
    scroll-behavior: auto;
  }

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

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.48rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), #8a0d2c);
}

.callout {
  border-left: 4px solid var(--brand);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.callout .kicker { margin-bottom: 0.25rem; }
.callout h3 { margin: 0 0 0.4rem; }
.callout p { margin: 0; max-width: 55ch; }

.cta-band {
  background: #0f2744;
  color: #f0f4f8;
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: #f0c9d4;
}

.faq details + details {
  margin-top: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.15rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
  color: var(--brand);
}

.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.3rem;
  color: var(--ink-soft);
  font-weight: 600;
}

label.consent-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  cursor: pointer;
}

label.consent-inline input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

input,
select,
textarea {
  border: 1px solid #d8b8c3;
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
  background: #fff9fb;
}

textarea {
  min-height: 130px;
}

input:invalid:not(:placeholder-shown):not(:focus),
select:invalid:not(:focus),
textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--brand);
}

.error-hint {
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

input:invalid:not(:placeholder-shown):not(:focus) ~ .error-hint,
select:invalid:not(:focus) ~ .error-hint {
  display: block;
}

.inline {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.small {
  font-size: 0.9rem;
}

footer {
  background: #2a1319;
  color: #f3d9e2;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 1rem;
  padding: 2rem 0 1.2rem;
}

footer a {
  color: #f3d9e2;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(243, 217, 226, 0.24);
  padding: 0.95rem 0 1.3rem;
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #e2c2cd;
}

.cookie-settings-link {
  border: 0;
  background: transparent;
  color: #f3d9e2;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(940px, 94%);
  z-index: 100;
  display: none;
}

.cookie-banner.open {
  display: block;
}

.cookie-banner-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.cookie-banner p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.cookie-banner a {
  color: var(--brand);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-preferences {
  margin-top: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.cookie-preferences label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

/* Breadcrumb navigation (inside inner page heroes) */
.breadcrumb {
  padding: 0 0 0.75rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.82rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 224, 234, 0.7);
}

.breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 224, 234, 0.4);
}

.breadcrumb a {
  color: rgba(255, 224, 234, 0.85);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-wrap,
  .grid-3,
  .grid-4,
  .grid-2,
  .footer-grid,
  .logo-strip,
  .proof-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .heritage-badge {
    order: -1;
    margin-bottom: 0.5rem;
  }

  nav {
    flex-wrap: wrap;
  }

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

  .nav-links {
    position: absolute;
    right: 4%;
    top: 78px;
    width: min(320px, 92vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 214, 226, 0.55);
    background: #b3002d;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.42rem;
  }

  .sticky-cta {
    display: inline-flex;
  }

  .marquee-item {
    min-width: 140px;
  }

  .cookie-banner {
    bottom: 10px;
  }

  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .topbar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links li.has-submenu {
    display: block;
  }

  .submenu-toggle {
    position: absolute;
    right: 0.35rem;
    top: 0.42rem;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 0.4rem;
    border-color: rgba(255, 214, 226, 0.55);
    background: #9a0027;
    box-shadow: none;
  }

  .submenu a {
    color: #fff7fa;
  }

  .submenu a:hover {
    background: #b3002d;
    color: #fff;
  }

  .nav-links li.has-submenu:not(.submenu-open) .submenu {
    display: none;
  }

  .nav-links li.has-submenu.submenu-open .submenu {
    display: block;
  }

  .brand-logo {
    height: 46px;
  }

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

@media (min-width: 768px) and (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-kpi-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .topbar,
  header,
  footer,
  .sticky-cta,
  .cookie-banner {
    display: none !important;
  }

  .card,
  .quote-form,
  .cta-band {
    box-shadow: none;
    border: 1px solid #ccc;
    background: #fff !important;
    color: #000 !important;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ── Service page additions ─────────────────────────── */

.dark-section {
  background: linear-gradient(120deg, #2a1319, #5a1328 58%, #8a0d2c);
  color: #fff0f4;
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section p,
.dark-section .muted {
  color: #ffd4e0;
}

.dark-section .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 214, 226, 0.3);
  color: #fff0f4;
}

.dark-section .card p {
  color: #ffd4e0;
}

.process-steps {
  counter-reset: step-counter;
  display: grid;
  gap: 1.5rem;
}

.process-steps.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-step {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3.6rem;
}

.process-step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.process-step h3 {
  margin-bottom: 0.35rem;
}

.bg-alt {
  background: #faf5f7;
}

@media (max-width: 768px) {
  .process-steps.grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Form components ─────────────────────────────────────────────────────── */

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group label .req {
  color: var(--brand);
  margin-left: 2px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #d9cdd0;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(204, 0, 51, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Status messages */
.form-status {
  padding: 0.85rem 1.1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-success {
  background: #ecf7ed;
  color: #1a5e20;
  border: 1px solid #a5d6a7;
  display: block;
}

.form-status.is-error {
  background: #fdecea;
  color: #7f1d1d;
  border: 1px solid #f5c6c6;
  display: block;
}

/* Submit button loading state */
.btn[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

/* Contact page two-col layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--surface, #fffbfc);
  border: 1.5px solid #ede0e4;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.contact-info-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-detail i {
  color: var(--brand);
  margin-top: 3px;
  width: 18px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--ink);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* ── Stats strip (service pages) ── */
.stat-hero-strip {
  background: var(--brand);
  padding: 1.5rem 0;
}
.stat-hero-strip .container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-hero-item { text-align: center; }
.stat-hero-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-hero-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}

/* ── Trust strip (service pages) ── */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c4cdd8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-item i { color: var(--brand); font-size: 0.7rem; }

@media (max-width: 768px) {
  .stat-hero-strip .container { gap: 2rem; }
  .trust-strip-item { padding: 0.4rem 0.8rem; font-size: 0.72rem; }
}
