:root {
  --red: #d91624;
  --red-deep: #8b0614;
  --gold: #ffd15a;
  --amber: #ff8a00;
  --ink: #17110f;
  --paper: #fff6e8;
  --cream: #ffe7bf;
  --teal: #23d4b7;
  --muted: #6f5c53;
  --line: rgba(139, 6, 20, 0.16);
  --shadow: 0 24px 60px rgba(66, 10, 8, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 209, 90, 0.24), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0%, #ffe0b0 48%, #fff6e8 100%);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 209, 90, 0.28);
  background: rgba(23, 17, 15, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff7dd;
  font-weight: 800;
}

.brand img {
  width: 96px;
  height: 58px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--gold);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  color: #fff8e5;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 209, 90, 0.18);
  color: var(--gold);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 209, 90, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7dd;
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #4a0508;
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.34);
}

.btn-dark {
  background: var(--ink);
  color: #fff7dd;
}

.btn-ghost {
  border-color: rgba(255, 209, 90, 0.56);
  color: #fff6d5;
  background: rgba(255, 255, 255, 0.07);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-tight {
  padding-top: 40px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 78px);
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -18% auto auto;
  width: 62vw;
  height: 62vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(217, 22, 36, 0.18), transparent 58%),
    repeating-linear-gradient(45deg, rgba(139, 6, 20, 0.08) 0 8px, transparent 8px 18px);
  z-index: -1;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-deep);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 790px;
  margin-bottom: 18px;
  color: #7d0611;
  font-size: clamp(2.1rem, 5.5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-lead {
  color: #5e453c;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  background: linear-gradient(145deg, #870713, #e71d2d 48%, #ffb21b);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(82%, 520px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 26px 28px rgba(40, 0, 0, 0.32));
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(255, 209, 90, 0.5);
  box-shadow: 0 16px 30px rgba(31, 10, 6, 0.18);
  font-weight: 800;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--red-deep);
  box-shadow: var(--shadow);
}

.stat-strip div {
  padding: 24px 18px;
  background: #fff7e8;
}

.stat-strip strong {
  display: block;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1.1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #7d0611;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 310px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(139, 6, 20, 0.12);
}

.feature-panel.is-featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
  align-content: start;
  background: #1d1110;
  color: #fff7dd;
}

.feature-panel.is-featured .eyebrow,
.feature-panel.is-featured h3 {
  color: var(--gold);
}

.feature-panel.is-featured p {
  color: #ffe8bb;
}

.feature-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.feature-panel h3 {
  margin-bottom: 10px;
  color: #8b0614;
  font-size: 1.35rem;
  line-height: 1.28;
}

.feature-panel p {
  color: var(--muted);
}

.service-grid,
.promo-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.promo-card,
.contact-card,
.faq-item,
.article-cta {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(139, 6, 20, 0.1);
}

.service-card strong,
.promo-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-deep);
  font-size: 1.18rem;
}

.band {
  background:
    linear-gradient(135deg, rgba(139, 6, 20, 0.96), rgba(217, 22, 36, 0.9)),
    linear-gradient(90deg, rgba(255, 209, 90, 0.24), transparent);
  color: #fff7dd;
}

.band .section {
  padding: 70px 0;
}

.band h2 {
  color: var(--gold);
}

.band p {
  color: #ffe5b1;
}

.mini-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-post {
  overflow: hidden;
  border: 1px solid rgba(255, 209, 90, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-post img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mini-post div {
  padding: 18px;
}

.mini-post span,
.tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-post h3 {
  color: #fff7dd;
  font-size: 1rem;
  line-height: 1.4;
}

.page-hero {
  padding: 78px 0 36px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 28px;
}

.page-hero img {
  width: 240px;
  justify-self: end;
  filter: drop-shadow(0 20px 22px rgba(139, 6, 20, 0.24));
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  position: relative;
  padding: 22px 22px 22px 76px;
  border-radius: 8px;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff7dd;
  font-weight: 900;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(139, 6, 20, 0.1);
}

.blog-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.04);
}

.blog-copy {
  padding: 20px;
}

.blog-copy h3 {
  color: #7d0611;
  font-size: 1.12rem;
  line-height: 1.35;
}

.blog-copy p {
  color: var(--muted);
}

.text-link {
  color: var(--red-deep);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.article-page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 82px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
}

.article-hero {
  overflow: hidden;
  border-radius: 8px;
  background: #1d1110;
  box-shadow: var(--shadow);
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-title {
  padding: 32px;
}

.article-title h1 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.article-title p {
  color: #ffe8bb;
}

.article-body {
  padding: 34px 0 0;
  font-size: 1.08rem;
}

.article-body p {
  color: #4e3831;
}

.article-cta {
  margin-top: 30px;
  background: #8b0614;
  color: #fff7dd;
}

.article-cta h2 {
  color: var(--gold);
}

.article-cta p {
  color: #ffe8bb;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-card h3 {
  color: #7d0611;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #7d0611;
  padding: 18px 20px;
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.is-open p {
  display: block;
}

.site-footer {
  color: #ffe9bf;
  background: #17110f;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer-inner img {
  width: 96px;
  height: 58px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 22px;
    background: rgba(23, 17, 15, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero,
  .feature-grid,
  .page-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .feature-panel,
  .feature-panel.is-featured {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .promo-grid,
  .mini-post-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero img {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-badge {
    position: static;
    width: auto;
    margin: 250px 14px 14px;
  }

  .stat-strip,
  .service-grid,
  .promo-grid,
  .mini-post-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
