 :root {
  --burgundy:#98252D;
  --burgundy-dark:#66161D;
  --taupe:#937664;
  --cream:#F6F1EE;
  --cream-2:#FCF9F7;
  --ink:#231F20;
  --muted:#625A56;
  --white:#FFFFFF;
  --line:#E2D4CD;
  --shadow:0 28px 80px rgba(35,31,32,.14);
  --shadow-soft:0 16px 42px rgba(35,31,32,.09);
  --radius-xl:34px;
  --radius-lg:24px;
  --container:1180px;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--cream-2);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img { display:block; max-width:100%; height:auto; }
a { color:inherit; }
svg {
  width:20px;
  height:20px;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.container {
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}
.skip-link {
  position:absolute;
  left:-999px;
  top:16px;
  z-index:1000;
  background:var(--burgundy);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}
.skip-link:focus { left:16px; }

.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.header-inner {
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:14px 0;
}
.brand-lockup {
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}
.logo-ecc {
  width:282px;
  max-height:76px;
  object-fit:contain;
}
.logo-kk {
  width:300px;
  max-height:78px;
  object-fit:contain;
}
.header-actions {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.pill-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--burgundy);
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pill-link:hover,
.pill-link:focus-visible {
  transform:translateY(-2px);
  box-shadow:var(--shadow-soft);
  background:var(--cream);
  outline:none;
}

.hero {
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 83% 15%, rgba(255,255,255,.25) 0, rgba(255,255,255,.10) 22%, transparent 38%),
    radial-gradient(circle at 12% 92%, rgba(255,255,255,.16) 0, transparent 34%),
    linear-gradient(128deg, var(--burgundy) 0%, var(--burgundy-dark) 52%, var(--taupe) 100%);
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.15;
  pointer-events:none;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.7) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(255,255,255,.38) 0 1px, transparent 1px);
  background-size:78px 78px;
}
.hero::after {
  content:"";
  position:absolute;
  right:-95px;
  bottom:-190px;
  width:520px;
  height:520px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  pointer-events:none;
}
.hero-inner {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:50px;
  align-items:center;
  min-height:650px;
  padding:82px 0 88px;
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  font-size:13px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.93);
}
.eyebrow::before {
  content:"";
  width:36px;
  height:2px;
  background:currentColor;
  opacity:.85;
}
h1 {
  margin:0 0 24px;
  max-width:790px;
  font-size:clamp(43px,6vw,70px);
  line-height:.96;
  letter-spacing:-2.4px;
}
.hero-copy {
  max-width:700px;
  margin:0 0 34px;
  font-size:clamp(18px,2.2vw,22px);
  color:rgba(255,255,255,.92);
}
.button-row {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}
.button-row.centred { justify-content:center; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:15px 24px;
  border-radius:999px;
  border:2px solid transparent;
  font-weight:900;
  text-decoration:none;
  line-height:1;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width:18px; height:18px; }
.btn:hover,
.btn:focus-visible {
  transform:translateY(-3px);
  box-shadow:0 15px 38px rgba(0,0,0,.22);
  outline:none;
}
.btn-primary {
  background:#fff;
  color:var(--burgundy);
}
.btn-outline {
  color:#fff;
  border-color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.08);
}
.btn-outline:hover,
.btn-outline:focus-visible { background:rgba(255,255,255,.18); }

.hero-panel {
  display:grid;
  gap:16px;
  padding:24px;
  border:1px solid rgba(255,255,255,.30);
  border-radius:var(--radius-xl);
  background:rgba(255,255,255,.14);
  box-shadow:0 32px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(12px);
}
.mini-card {
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  align-items:start;
  padding:18px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  background:rgba(255,255,255,.15);
  transition:transform .2s ease, background .2s ease;
}
.mini-card:hover {
  transform:translateX(5px);
  background:rgba(255,255,255,.24);
}
.icon-tile {
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#fff;
  color:var(--burgundy);
}
.icon-tile svg { width:26px; height:26px; }
.mini-card h3 {
  margin:0 0 4px;
  color:#fff;
  font-size:18px;
  line-height:1.2;
}
.mini-card p {
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:14px;
}

.section { padding:88px 0; }
.section-soft { background:var(--cream); }
.section-head {
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:44px;
  align-items:start;
  margin-bottom:40px;
}
.tag {
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  margin:0 0 14px;
  padding:7px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--burgundy);
  font-size:13px;
  font-weight:900;
}
.tag::before {
  content:"";
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--burgundy);
}
h2 {
  margin:0;
  color:var(--burgundy);
  font-size:clamp(32px,4vw,47px);
  line-height:1.08;
  letter-spacing:-1px;
}
.lead {
  margin:0 0 18px;
  color:var(--muted);
  font-size:20px;
}
.body-copy {
  margin:0;
  color:var(--muted);
}

.product-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}
.product-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.product-card:hover {
  transform:translateY(-7px);
  box-shadow:var(--shadow);
  border-color:rgba(152,37,45,.35);
}
.product-image-frame {
  height:305px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:26px;
  background:linear-gradient(135deg, #fff, var(--cream));
  border-bottom:1px solid var(--line);
}
.product-image-frame img {
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .24s ease;
}
.product-card:hover .product-image-frame img {
  transform:scale(1.035);
}
.cap-frame {
  padding:14px;
}
.product-card-copy {
  padding:24px;
}
.product-card-copy h3 {
  margin:0 0 8px;
  color:var(--ink);
  font-size:23px;
  line-height:1.2;
}
.product-card-copy p {
  margin:0;
  color:var(--muted);
}

.pricing-stack {
  display:grid;
  gap:26px;
}
.pricing-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.pricing-card-head {
  padding:24px 26px;
  background:linear-gradient(135deg, #fff, var(--cream));
  border-bottom:1px solid var(--line);
}
.pricing-card-head h3 {
  margin:0 0 8px;
  color:var(--burgundy);
  font-size:24px;
  line-height:1.2;
}
.pricing-card-head p {
  margin:0;
  color:var(--muted);
}
.table-scroll {
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
table {
  width:100%;
  min-width:760px;
  border-collapse:collapse;
  text-align:center;
}
th,
td {
  padding:15px 16px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
thead th {
  background:var(--burgundy);
  color:#fff;
  font-weight:900;
}
tbody th {
  text-align:left;
  color:var(--ink);
  font-weight:900;
  background:#fff;
}
tbody tr:nth-child(even) td,
tbody tr:nth-child(even) th {
  background:var(--cream-2);
}
tbody tr:hover td,
tbody tr:hover th {
  background:var(--cream);
}
.pricing-note {
  margin:22px 0 0;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--muted);
  font-weight:700;
}

.cta-section {
  padding:94px 0;
  color:#fff;
  background:
    radial-gradient(circle at 18% 15%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(124deg,var(--burgundy) 0%,var(--taupe) 100%);
}
.cta-card {
  max-width:960px;
  margin:0 auto;
  text-align:center;
}
.cta-icon {
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  border-radius:24px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.30);
  color:#fff;
}
.cta-icon svg { width:34px; height:34px; }
.cta-card h2 {
  color:#fff;
  margin:0 0 18px;
}
.cta-card p {
  max-width:790px;
  margin:0 auto 30px;
  color:rgba(255,255,255,.90);
  font-size:20px;
}

.site-footer {
  padding:42px 0;
  background:#211F1E;
  color:#fff;
}
.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;
}
.footer-inner p {
  margin:6px 0 0;
  color:rgba(255,255,255,.74);
  font-size:14px;
}
.footer-inner a { text-decoration:none; }
.footer-inner a:hover { text-decoration:underline; }

@media (max-width:1040px) {
  .hero-inner,
  .section-head {
    grid-template-columns:1fr;
  }
  .hero-inner {
    min-height:auto;
    padding:72px 0;
  }
  .product-grid {
    grid-template-columns:1fr;
  }
  .product-image-frame {
    height:360px;
  }
}

@media (max-width:760px) {
  .container { width:min(100% - 28px, var(--container)); }
  .site-header { position:static; }
  .header-inner { align-items:flex-start; }
  .brand-lockup { gap:16px; }
  .logo-ecc { width:232px; }
  .logo-kk { width:248px; }
  .header-actions {
    width:100%;
    justify-content:flex-start;
  }
  .pill-link { width:100%; }
  .hero { border-radius:0 0 30px 30px; }
  h1 { letter-spacing:-1.25px; }
  .button-row { width:100%; }
  .btn { width:100%; }
  .hero-panel { padding:16px; }
  .mini-card {
    grid-template-columns:46px 1fr;
    padding:15px;
  }
  .icon-tile {
    width:46px;
    height:46px;
    border-radius:16px;
  }
  .section { padding:62px 0; }
  .product-image-frame {
    height:285px;
    padding:18px;
  }
  .product-card-copy {
    padding:20px;
  }
  .pricing-card-head {
    padding:20px;
  }
  table {
    min-width:680px;
  }
  th,
  td {
    padding:13px 12px;
  }
  .cta-section { padding:68px 0; }
}

@media print {
  .site-header { position:static; }
  .btn,
  .pill-link { border:1px solid currentColor; }
  .hero,
  .cta-section {
    color:#111;
    background:#fff;
  }
  .hero::before,
  .hero::after { display:none; }
  .hero-panel,
  .mini-card {
    background:#fff;
    color:#111;
    border-color:#ddd;
    box-shadow:none;
  }
  .mini-card h3,
  .cta-card h2,
  .hero-copy,
  .mini-card p,
  .cta-card p { color:#111; }
}
