
:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #24323a;
  --muted: #5d6b72;
  --line: #d9ddd7;
  --accent: #2f5f63;
  --accent-2: #7a8f67;
  --warm: #efe4d3;
  --max: 1160px;
  --shadow: 0 10px 30px rgba(26, 42, 48, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
  background: #1f2f35;
  color: #f5f4f0;
  font-size: 0.95rem;
}
.topbar .inner,
.site-header .inner,
.container,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.topbar .inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(36, 50, 58, 0.08);
}
.site-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  color: var(--text);
  text-decoration: none;
}
.brand-title {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.nav a {
  color: var(--text);
  padding: 0.5rem 0.2rem;
}
.nav .button-link {
  background: var(--accent);
  color: white;
  padding: 0.65rem 1rem;
  border-radius: 999px;
}
.nav .active {
  border-bottom: 2px solid var(--accent);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  color: white;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17, 30, 33, 0.36), rgba(17, 30, 33, 0.5));
}
.hero-content {
  position: relative;
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  text-align: center;
  padding: 7rem 0 5rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #2e4d3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
}

.button:hover {
    background-color: #3f6b55;
}

.button, button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.button.secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.45);
}
.button.light {
  background: white;
  color: var(--text);
}

main section {
  padding: 4.5rem 0;
}
.section-head {
  max-width: 740px;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card .copy {
  padding: 1.2rem 1.2rem 1.4rem;
}
.card h3 { margin-top: 0.3rem; margin-bottom: 0.6rem; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }
.card img { height: 240px; width: 100%; object-fit: cover; }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.panel ul {
  padding-left: 1.2rem;
}
.panel li { margin-bottom: 0.5rem; }

.quote {
  background: var(--warm);
}
.quote blockquote {
  font-size: 1.35rem;
  max-width: 840px;
  margin: 0;
}
.quote p { margin: 0.9rem 0 0; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.gallery .wide { grid-column: span 7; min-height: 320px; }
.gallery .tall { grid-column: span 5; min-height: 320px; }
.gallery .half { grid-column: span 4; min-height: 240px; }

.band {
  background: #e9ede6;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.info-box {
  background: white;
  padding: 1.25rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.info-box h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.info-box p { margin: 0; color: var(--muted); }

.footer {
  background: #203038;
  color: #edf1ef;
  margin-top: 3rem;
}
.footer a { color: #ffffff; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
.footer small {
  display: block;
  color: #c9d3cf;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0 2rem;
}

.notice {
  background: white;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.1rem;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.contact-card h3 { margin-top: 0; }
.contact-list p { margin: 0 0 0.9rem; }
form {
  display: grid;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.45rem;
  font-weight: bold;
}
input, textarea {
  font: inherit;
  padding: 0.9rem 1rem;
  border: 1px solid #cbd3d0;
  border-radius: 14px;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }

@media (max-width: 900px) {
  .card-grid,
  .info-grid,
  .footer-inner,
  .two-col {
    grid-template-columns: 1fr;
  }
  .gallery .wide, .gallery .tall, .gallery .half {
    grid-column: span 12;
    min-height: 240px;
  }
  .hero { min-height: 64vh; }
}
