:root {
  --evergreen: #073d22;
  --leaf: #226342;
  --gold: #d9a51e;
  --ink: #182019;
  --paper: #fbfff8;
  --white: #ffffff;
  --line: rgba(7, 61, 34, 0.16);
  --muted: #4b5d4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(251, 255, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand-link {
  display: inline-flex;
  width: clamp(136px, 18vw, 210px);
}

.nav-links {
  display: flex;
  gap: clamp(16px, 4vw, 34px);
  color: var(--evergreen);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a,
.button,
.location-card a,
.contact-card a {
  text-decoration: none;
}

.hero {
  max-width: 1060px;
  padding: clamp(46px, 8vw, 94px) clamp(18px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hero-text,
.visit-section p,
.notice p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 900;
}

.button-primary {
  background: var(--evergreen);
  color: var(--white);
}

.button-secondary {
  background: var(--gold);
  color: var(--evergreen);
}

.notice {
  padding: clamp(28px, 5vw, 46px) clamp(18px, 5vw, 64px);
  background: var(--evergreen);
  color: var(--white);
}

.notice h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.notice p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.visit-section,
.contact-section {
  padding: clamp(54px, 9vw, 108px) clamp(18px, 5vw, 64px);
}

.location-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visit-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.visit-section {
  background: rgba(217, 165, 30, 0.12);
}

.location-card,
.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.address-link,
.contact-card a {
  color: var(--evergreen);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 850;
}

.address-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--evergreen);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .visit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand-link {
    width: 148px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 34px;
  }

  .button {
    width: 100%;
  }
}
