:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --ink: #1c1f1a;
  --muted: #5f645c;
  --accent: #3d4f3f;
  --accent-soft: #e8ede6;
  --gold: #b8956c;
  --gold-dark: #8a6e48;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(28, 31, 26, 0.08);
  font-size: clamp(16px, 2.5vw, 18px);
}

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

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
}

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

a {
  color: var(--gold-dark);
}

a:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 79, 63, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--gold-dark);
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #2e3b30);
  color: #f6f7f4;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(61, 79, 63, 0.35);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn-large {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

/* Hero */
.hero-split {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.eyebrow {
  font-family: system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(61, 79, 63, 0.15);
}

.hero-stats dt {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin: 0;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-figure {
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Trust band */
.trust-band {
  background: var(--surface);
  border-block: 1px solid rgba(61, 79, 63, 0.08);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.85rem 0;
  justify-content: center;
}

.pill {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-tint {
  background: linear-gradient(180deg, #f3f1ec 0%, var(--bg) 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.6rem;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Cards grid */
.grid.cards-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .grid.cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 8px 28px rgba(28, 31, 26, 0.06);
  border: 1px solid rgba(61, 79, 63, 0.08);
}

.card-img {
  padding: 0;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-img h3,
.card-img p {
  padding: 0 1.25rem;
}

.card-img h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.1rem;
}

.card-img p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Split + steps */
.split-reverse {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split-reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 79, 63, 0.08);
}

.step-num {
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.aside-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid rgba(184, 149, 108, 0.35);
  box-shadow: var(--shadow);
}

.aside-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.aside-card > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.aside-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
}

.aside-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(61, 79, 63, 0.15);
}

.aside-list li:last-child {
  border-bottom: none;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(28, 31, 26, 0.08);
  }

  .gallery figure.wide {
    grid-column: span 2;
    grid-row: span 2;
  }

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

@media (max-width: 699px) {
  .gallery figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 31, 26, 0.08);
  }

  .gallery figure.wide {
    grid-column: span 2;
  }

  .gallery img {
    width: 100%;
    height: auto;
    display: block;
  }
}


/* Quote */
.section-quote {
  background: var(--accent);
  color: #eef1ea;
  padding: 3rem 0;
}

.section-quote blockquote {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}

.section-quote p {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.45;
  margin: 0 0 1rem;
}

.section-quote footer {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(238, 241, 234, 0.75);
}

/* CTA */
.cta-block {
  padding-bottom: 4.5rem;
}

.cta-inner {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(61, 79, 63, 0.1);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
}

.cta-inner .section-lead {
  margin: 0 auto 1.5rem;
  max-width: 480px;
}

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

.small {
  font-size: 0.82rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(61, 79, 63, 0.1);
  padding: 1.75rem 0 2rem;
  background: #f0ede7;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
}
