:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-alt: #efe8dd;
  --ink: #1d1916;
  --muted: #6f655d;
  --line: #d8cec2;
  --brand: #a32825;
  --brand-dark: #7f1f1d;
  --accent: #d6aa67;
  --shadow: 0 18px 40px rgba(29, 25, 22, 0.08);
  --radius: 22px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(214, 170, 103, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f4ef 0%, #f3ede4 100%);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  line-height: 1.1;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 239, 0.88);
  border-bottom: 1px solid rgba(216, 206, 194, 0.7);
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand img {
  width: 170px;
  max-width: 40vw;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  background: var(--brand);
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-card,
.subhero {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  color: #fff;
  min-height: 540px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-card::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 18, 16, 0.82), rgba(25, 18, 16, 0.25));
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 4rem);
  width: min(100%, 760px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.subhero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  max-width: 12ch;
}

.hero p,
.subhero p {
  font-size: 1.06rem;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.stack,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.section {
  padding: 4rem 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.muted {
  color: var(--muted);
}

.logo-grid,
.card-grid,
.stats-grid,
.offer-grid,
.leader-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

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

.logo-card,
.card,
.stat,
.offer-card,
.leader-card,
.contact-panel,
.form-shell {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(216, 206, 194, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-card {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.logo-card img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

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

.card,
.offer-card,
.leader-card,
.contact-panel,
.form-shell {
  padding: 1.5rem;
}

.card h3,
.offer-card h3,
.leader-card h3 {
  font-size: 1.45rem;
}

.stats-band {
  background: linear-gradient(135deg, #231d19, #4a241f);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
}

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

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
}

.band {
  background: linear-gradient(135deg, #2a201d, #12110f);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

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

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 1rem;
}

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

.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.footprint {
  background-position: center;
  background-size: cover;
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footprint-inner {
  position: relative;
  padding: 2.2rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-panel h2,
.form-shell h2 {
  font-size: 2rem;
}

.contact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 0.8rem;
}

.notice {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.95rem;
}

label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.field + .field {
  margin-top: 1rem;
}

.site-footer {
  padding: 2.5rem 0 4rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(216, 206, 194, 0.9);
  padding-top: 1.5rem;
}

@media (max-width: 980px) {
  .logo-grid,
  .card-grid,
  .stats-grid,
  .offer-grid,
  .leader-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

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

  .hero-card,
  .subhero {
    min-height: 420px;
  }

  .logo-grid,
  .card-grid,
  .stats-grid,
  .offer-grid,
  .leader-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
