:root {
  --black: #0a0909;
  --ink: #161313;
  --red: #d71920;
  --red-dark: #a80f15;
  --gold: #d4aa55;
  --cream: #f3eee6;
  --paper: #fffdf9;
  --muted: #6f6862;
  --line: rgba(20, 15, 12, .12);
  --radius: 26px;
  --shadow: 0 24px 70px rgba(20, 9, 8, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: #fff; background: var(--black); }
.section-soft { background: var(--cream); }
.red { color: var(--red); }
.gold { color: var(--gold); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-dark .kicker { color: #ff6a70; }
.kicker::before { content: ""; width: 38px; height: 2px; background: currentColor; }
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.03;
}
h1 { font-size: clamp(48px, 6vw, 84px); letter-spacing: -.045em; }
h2 { font-size: clamp(38px, 5vw, 62px); letter-spacing: -.035em; }
h3 { font-size: 28px; }
p { margin: 0 0 18px; }
.lead { color: var(--muted); font-size: 19px; }
.section-dark .lead { color: #c9c1ba; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(215, 25, 32, .26);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #ee2028; box-shadow: 0 16px 38px rgba(215, 25, 32, .34); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); box-shadow: none; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--black); box-shadow: none; }
.text-link { color: var(--red); font-weight: 850; }

.topline {
  padding: 9px 0;
  color: #e4ddd7;
  background: #000;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7,7,7,.94);
  backdrop-filter: blur(18px);
}
.nav { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand {
  width: 176px;
  flex: none;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 100%;
  height: auto;
  max-height: 60px;
  padding: 6px 12px;
  object-fit: contain;
  object-position: left;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.nav-links { display: flex; align-items: center; gap: 23px; margin-left: auto; color: #f8f4ef; font-size: 13px; font-weight: 750; }
.nav-links a:hover, .nav-links a.active { color: #ff555b; }
.nav-cta { min-height: 46px; padding: 11px 18px; font-size: 13px; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; color: #fff; font-size: 27px; }

.hero {
  position: relative;
  min-height: 770px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #060606 url("assets/hero-dmb-kimbo.png") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.2) 70%), linear-gradient(0deg, rgba(0,0,0,.62), transparent 55%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -170px;
  bottom: -170px;
  border: 1px solid rgba(212,170,85,.35);
  border-radius: 50%;
}
.hero-content { position: relative; max-width: 780px; padding: 100px 0 120px; }
.hero .kicker { color: var(--gold); }
.hero h1 { max-width: 760px; }
.hero p { max-width: 700px; margin: 26px 0 34px; color: #e6ded7; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 46px; color: #d9d1ca; font-size: 13px; font-weight: 750; }
.hero-proof span::before { content: "✓"; margin-right: 8px; color: var(--gold); }

.trust-strip { color: #fff; background: var(--red); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 25px; border-right: 1px solid rgba(255,255,255,.22); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: Georgia, serif; font-size: 25px; }
.trust-item span { color: #ffd9da; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.image-frame { position: relative; }
.image-frame img { height: 600px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.image-frame::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 70%;
  height: 58%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.fact-card {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: 220px;
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  background: var(--red);
  box-shadow: var(--shadow);
}
.fact-card strong { display: block; font-family: Georgia, serif; font-size: 42px; line-height: 1; }
.fact-card span { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.checks { list-style: none; padding: 0; margin: 28px 0 34px; columns: 2; }
.checks li { position: relative; break-inside: avoid; margin: 0 0 13px; padding-left: 29px; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.story-photo { min-height: 580px; border-radius: var(--radius); object-fit: cover; }
.story-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.12); }
.story-cell { padding: 38px; background: #151313; }
.story-cell:first-child { grid-column: 1 / -1; background: var(--red); }
.story-cell strong { display: block; margin-bottom: 10px; font: 700 38px/1 Georgia, serif; color: var(--gold); }
.story-cell:first-child strong { color: #fff; }
.story-cell p { color: #c9c1ba; }
.story-cell:first-child p { color: #ffe2e3; }

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.solution-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #1d1715;
  box-shadow: var(--shadow);
}
.solution-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .55s ease; }
.solution-card:hover img { transform: scale(1.035); }
.solution-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.93), rgba(0,0,0,.08) 72%); }
.solution-content { position: absolute; inset: auto 0 0; z-index: 1; padding: 32px; }
.solution-content span { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.solution-content h3 { margin: 10px 0 12px; }
.solution-content p { color: #ded5cf; font-size: 14px; }
.solution-card.featured { background: var(--red); }
.solution-card.featured::after { background: linear-gradient(0deg, rgba(125,0,4,.98), rgba(215,25,32,.15)); }

.training-image { height: 610px !important; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 34px; }
.mini-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.mini-card strong { display: block; margin-bottom: 4px; }
.mini-card span { color: var(--muted); font-size: 13px; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid #302c2a; border-radius: var(--radius); background: #302c2a; }
.benefit { min-height: 220px; padding: 30px; background: #111; }
.benefit-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(212,170,85,.55);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}
.benefit h3 { margin-bottom: 10px; font-size: 22px; }
.benefit p { color: #aaa19a; font-size: 13px; }

.testimonials { display: grid; grid-template-columns: 1.25fr .75fr; gap: 26px; }
.testimonial-main { padding: 48px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.testimonial-main blockquote { margin: 0 0 30px; font: 700 32px/1.25 Georgia, serif; }
.testimonial-note { padding: 38px; border-radius: var(--radius); color: #fff; background: var(--red); }
.testimonial-note small { display: inline-block; margin-bottom: 22px; color: #ffd4d6; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.testimonial-note h3 { margin-bottom: 16px; }

.contact-section { position: relative; overflow: hidden; }
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background: url("assets/espresso-kimbo.jpg") center/cover no-repeat;
}
.contact-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-copy h2 { margin-bottom: 24px; }
.contact-copy p { color: #c8bfb8; }
.contact-details { margin-top: 34px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-details a, .contact-details span { display: block; margin: 9px 0; color: #fff; }
.form {
  padding: 38px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 850; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #ddd4cc;
  border-radius: 11px;
  padding: 13px 14px;
  background: #fbf9f6;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,32,.09); }
.field textarea { min-height: 116px; resize: vertical; }
.consent { display: flex; gap: 10px; margin: 18px 0; color: var(--muted); font-size: 11px; }
.consent input { margin-top: 4px; }
.form-status { display: none; margin-top: 16px; padding: 14px; border-radius: 10px; background: #eaf6ed; color: #236039; font-size: 13px; }

.footer { padding: 72px 0 25px; color: #c5bdb7; background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, .8fr); gap: 45px; }
.footer .brand { display: inline-flex; margin-bottom: 20px; }
.footer h4 { margin: 0 0 18px; color: #fff; }
.footer a { display: block; margin: 9px 0; font-size: 13px; }
.footer a:hover { color: #ff5b60; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 22px; border-top: 1px solid #252222; color: #77706a; font-size: 11px; }
.floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 35; }

.page-hero {
  padding: 120px 0 95px;
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(215,25,32,.34), transparent 36%), #090808;
}
.page-hero p { max-width: 720px; margin-top: 22px; color: #c9c0ba; font-size: 20px; }
.content-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.content-card { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.content-card h3 { margin-bottom: 13px; }
.content-card p { color: var(--muted); }
.page-image { height: 520px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.breadcrumb { margin-bottom: 22px; color: #b8aea6; font-size: 13px; font-weight: 750; }
.breadcrumb a { color: #fff; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 58px; align-items: start; }
.article-body {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.article-body h2 { margin: 42px 0 18px; font-size: clamp(30px, 4vw, 44px); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 28px 0 12px; font-size: 24px; }
.article-body p, .article-body li { color: var(--muted); }
.article-body ul, .article-body ol { margin: 18px 0 28px; padding-left: 23px; }
.article-body li { margin-bottom: 10px; }
.article-note {
  margin: 32px 0;
  padding: 24px;
  border-left: 5px solid var(--red);
  border-radius: 16px;
  background: var(--cream);
}
.sidebar-card {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #111, #2b1112);
  box-shadow: var(--shadow);
}
.sidebar-card h3 { margin-bottom: 12px; }
.sidebar-card p { color: #d8d0c9; font-size: 14px; }
.sidebar-card .btn { width: 100%; margin-top: 12px; }
.seo-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-link-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(20, 9, 8, .08);
}
.seo-link-card span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.seo-link-card h3 { margin: 12px 0; font-size: 24px; }
.seo-link-card p { color: var(--muted); font-size: 14px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 0; color: #bfb6ae; font-size: 13px; font-weight: 800; }
.article-hero-image { margin-top: 34px; height: 420px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.seo-cta { padding: 65px 0; color: #fff; background: var(--red); }
.seo-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.seo-cta h2 { max-width: 760px; font-size: clamp(34px, 4vw, 52px); }

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    inset: 112px 20px auto;
    display: none;
    padding: 28px;
    border: 1px solid #312d2a;
    border-radius: 20px;
    background: #101010;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav > .nav-cta { display: none; }
  .split, .story-grid, .contact-grid, .testimonials, .article-layout { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .benefits, .seo-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-photo { min-height: 420px; }
  .sidebar-card { position: static; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .topline { font-size: 9px; }
  .nav { min-height: 72px; }
  .brand { width: 148px; }
  .nav-links { inset: 102px 14px auto; }
  .hero { min-height: 760px; background-position: 63% center; }
  .hero::before { background: linear-gradient(0deg, rgba(0,0,0,.95), rgba(0,0,0,.48)), linear-gradient(90deg, rgba(0,0,0,.78), transparent); }
  .hero-content { align-self: end; padding: 140px 0 68px; }
  .hero p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 10px; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { padding: 22px 16px; border-bottom: 1px solid rgba(255,255,255,.22); }
  .checks { columns: 1; }
  .image-frame img, .training-image, .page-image { height: 390px !important; }
  .fact-card { right: 12px; bottom: 12px; width: 195px; }
  .story-copy, .solution-grid, .benefits, .content-cards, .seo-links { grid-template-columns: 1fr; }
  .story-cell:first-child { grid-column: auto; }
  .solution-card { min-height: 430px; }
  .article-body { padding: 26px; }
  .article-hero-image { height: 300px; }
  .form { padding: 24px; }
  .form-grid, .mini-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .seo-cta .shell { flex-direction: column; align-items: flex-start; }
  .floating-cta { display: none; }
}
