:root {
  --green: #132b1b;
  --green2: #1b3d27;
  --gold: #c9a24a;
  --gold2: #e1c779;
  --cream: #f7f2e8;
  --sand: #ede3cf;
  --ink: #182019;
  --muted: #69736b;
  --white: #fff;
  --line: rgba(19, 43, 27, .14);
  --shadow: 0 24px 60px rgba(19, 43, 27, .14)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto
}

.topbar {
  background: var(--green);
  color: #f7ecd2;
  font-size: .86rem
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  flex-wrap: wrap
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 232, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Playfair Display, serif;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .02em
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.35rem;
  color: var(--gold);
  background: #fff8e8
}

.brand small {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: .94rem
}

.menu a {
  color: var(--green);
  font-weight: 600
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #1b1607;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(201, 162, 74, .24)
}

.btn.alt {
  background: transparent;
  color: var(--green);
  border-color: var(--gold);
  box-shadow: none
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, #0c1f13 58%, #2a2414 100%);
  color: white
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 22%, rgba(201, 162, 74, .35), transparent 30%), linear-gradient(90deg, rgba(19, 43, 27, .25), rgba(19, 43, 27, .88))
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  gap: 58px;
  align-items: center;
  min-height: 650px;
  padding: 70px 0
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
  font-weight: 700
}

.hero h1,
.page-hero h1 {
  font-family: Playfair Display, serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: .98;
  margin: 16px 0 20px
}

.hero p {
  font-size: 1.14rem;
  color: #f1eadc;
  max-width: 660px
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 18px;
  border-radius: 28px;
  box-shadow: var(--shadow)
}

.hero-card img {
  border-radius: 22px;
  aspect-ratio: 4/5;
  object-fit: cover
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px
}

.stat {
  border-left: 1px solid rgba(225, 199, 121, .45);
  padding-left: 16px
}

.stat strong {
  font-family: Playfair Display, serif;
  color: var(--gold2);
  font-size: 2rem;
  display: block
}

.section {
  padding: 90px 0
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px
}

.section-title h2 {
  font-family: Playfair Display, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  color: var(--green);
  margin: 8px 0
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem
}

.grid {
  display: grid;
  gap: 24px
}

.cards {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(19, 43, 27, .07);
  transition: .25s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green);
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px
}

.card h3 {
  font-family: Playfair Display, serif;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 0 0 10px
}

.card p {
  color: var(--muted);
  margin: 0 0 18px
}

.link {
  font-weight: 800;
  color: var(--green);
  border-bottom: 1px solid var(--gold)
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center
}

.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow)
}

.panel h2 {
  font-family: Playfair Display, serif;
  color: var(--green);
  font-size: 2.55rem;
  line-height: 1.08;
  margin: 0 0 18px
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px
}

.list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink)
}

.list span:before {
  content: "✓";
  color: var(--gold);
  font-weight: 900
}

.dark {
  background: var(--green);
  color: white
}

.dark .section-title h2,
.dark h3 {
  color: #fff
}

.dark .section-title p,
.dark p {
  color: #e5dcc9
}

.values {
  grid-template-columns: repeat(3, 1fr)
}

.value {
  padding: 30px;
  border: 1px solid rgba(225, 199, 121, .25);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05)
}

.blog {
  grid-template-columns: repeat(2, 1fr)
}

.article {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.article .body {
  padding: 28px
}

.article h3 {
  font-family: Playfair Display, serif;
  font-size: 1.75rem;
  color: var(--green);
  line-height: 1.1;
  margin: 0 0 12px
}

.cta {
  background: linear-gradient(135deg, var(--sand), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

.contact-box {
  background: var(--green);
  color: white;
  border-radius: 30px;
  padding: 36px
}

.contact-box h2 {
  font-family: Playfair Display, serif;
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 16px
}

.footer {
  background: #07110b;
  color: #d8d0c0;
  padding: 50px 0 22px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px
}

.footer h4 {
  color: var(--gold2);
  margin: 0 0 14px
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #d8d0c0
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 18px;
  font-size: .85rem;
  color: #a9ad9d
}

.page-hero {
  background: var(--green);
  color: white;
  padding: 82px 0
}

.page {
  background: white
}

.content {
  width: min(900px, 92%);
  margin: auto;
  padding: 70px 0
}

.content h2 {
  font-family: Playfair Display, serif;
  color: var(--green);
  font-size: 2.1rem
}

.content li {
  margin: 8px 0
}

.mobile-toggle {
  display: none
}

@media(max-width:900px) {
  .menu {
    display: none
  }

  .mobile-toggle {
    display: block
  }

  .hero .container,
  .split,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero .container {
    min-height: auto
  }

  .cards,
  .values,
  .blog {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: 1fr
  }

  .hero-card {
    order: -1
  }

  .section {
    padding: 60px 0
  }

  .nav {
    align-items: flex-start
  }

  .brand {
    font-size: .95rem
  }
}