:root {
  --forest: #6b7d33;
  --forest-deep: #415120;
  --sage: #edf2e2;
  --cream: #fbf8f1;
  --gold: #c3a75b;
  --text: #2f3526;
  --muted: #6a6f60;
  --border: rgba(65, 81, 32, 0.14);
  --shadow: 0 20px 50px rgba(44, 58, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(195, 167, 91, 0.16), transparent 28%),
    linear-gradient(180deg, #fdfbf5 0%, #f7f4ea 100%);
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  border: 0;
}

.brand img {
  width: 120px;
}

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

.site-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: var(--forest-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
  color: var(--forest);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-logo {
  width: min(100%, 360px);
  margin: 0 0 1rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--forest);
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.details-copy h2,
.visit-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  color: var(--forest-deep);
}

.hero h1 {
  font-size: clamp(3.75rem, 8vw, 6.5rem);
}

.tagline {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
}

.hero-text,
.intro-grid p,
.details-copy p,
.feature-item p,
.contact-list a,
.contact-list li,
.gallery-card figcaption {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-text {
  max-width: 38rem;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--forest);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--forest);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
}

.hero-image-card,
.gallery-card,
.visit-photo,
.visit-card,
.feature-list {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-image-card {
  padding: 1rem;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.intro-strip,
.details-section,
.visit-section {
  padding: 1.5rem 0 4rem;
}

.intro-grid,
.details-grid,
.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.details-copy h2,
.visit-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.gallery-section {
  padding: 1rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 1.5rem;
}

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

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
}

.feature-list {
  padding: 1.75rem;
}

.feature-item + .feature-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.feature-item h3 {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: var(--forest-deep);
}

.visit-card {
  padding: 2rem;
}

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

.contact-list li + li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.contact-list span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--forest-deep);
  text-decoration: underline;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .intro-grid,
  .details-grid,
  .visit-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .gallery-card img {
    height: auto;
    min-height: 0;
  }

  .visit-photo img {
    max-height: 540px;
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 0.85rem 1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-image-card,
  .gallery-card,
  .visit-photo,
  .visit-card,
  .feature-list {
    border-radius: 22px;
  }
}
