:root {
  --cream: #f6f1e8;
  --stone: #e7ddcf;
  --green: #1f3b2c;
  --green-soft: #2f5a43;
  --charcoal: #171717;
  --muted: #6f6a61;
  --white: #ffffff;
  --gold: #b9975b;
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(246, 241, 232, 0.94);
  color: var(--charcoal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 6vw 90px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16)),
    url("assets/images/hero-front.png") center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 80%, rgba(185, 151, 91, 0.28), transparent 40%);
  z-index: -1;
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 5.7rem);
  max-width: 1100px;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.section {
  padding: 110px 6vw;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.intro p,
.split-content p,
.feature-banner p,
.contact-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.alt-split {
  background: #fbf7ef;
}

.split-image img,
.feature-banner img,
.card img {
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.split-content {
  max-width: 520px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
  color: var(--charcoal);
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 7px;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.dark-section h2 {
  color: var(--white);
}

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

.card {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card div {
  padding: 26px;
}

.card h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.feature-banner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(31, 59, 44, 0.08);
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
}

.directory-section {
  background: #fbf7ef;
}

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

.directory-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
}

.directory-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.directory-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.directory-card a {
  color: var(--green);
  font-weight: 800;
}

.gallery-section {
  background: var(--stone);
}

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

.gallery-grid img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

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

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 34px;
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 28px 6vw;
  background: #112219;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    background: transparent;
    border: 0;
    color: inherit;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: currentColor;
    display: block;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 70px;
  }

  .intro-grid,
  .split-grid,
  .feature-banner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards,
  .gallery-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 6vw;
  }

  .gallery-grid img,
  .card img {
    height: 260px;
  }
}.directory-logo {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  border-radius: 12px;
}

.directory-contact {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--green);
  font-weight: 700;
}

.directory-contact a {
  color: var(--green);
  font-weight: 800;
  word-break: break-word;
}

.directory-card:has(.directory-logo) {
  display: flex;
  flex-direction: column;
}
