:root {
  --ink: #17201d;
  --ink-soft: #42504b;
  --paper: #f6f1e8;
  --paper-strong: #fffaf0;
  --cedar: #a66032;
  --cedar-dark: #6d3b22;
  --moss: #4e684d;
  --moss-dark: #23372f;
  --stone: #d8d2c5;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 22px 60px rgba(23, 32, 29, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, 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: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(23, 32, 29, 0.92);
  color: var(--paper-strong);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
}

.brand {
  display: grid;
  gap: 1px;
  text-decoration: none;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1;
}

.brand span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper-strong);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.nav-links a {
  color: rgba(255, 250, 240, 0.86);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper-strong);
}

.nav-links .nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--cedar);
  color: white;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  color: white;
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.86), rgba(64, 43, 28, 0.46) 54%, rgba(23, 32, 29, 0.18)),
    linear-gradient(0deg, rgba(23, 32, 29, 0.7), rgba(23, 32, 29, 0.08) 44%),
    var(--hero-image) center 43% / cover no-repeat;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(241, 176, 109, 0.16), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(255, 250, 240, 0.14), transparent 30%);
  mix-blend-mode: screen;
}

.hero > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(82px, 13vh, 150px) 0 clamp(56px, 10vh, 96px);
}

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

.hero .eyebrow {
  color: #f1b06d;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 870px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

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

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-copy {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--moss);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  background: var(--paper-strong);
  color: var(--ink);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin-top: clamp(42px, 7vh, 78px);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: rgba(23, 32, 29, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-note {
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.08);
}

.hero-note strong {
  display: block;
  color: var(--paper-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.1;
}

.hero-note span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.86rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section.alt {
  background: var(--paper-strong);
}

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

.section.dark p,
.section.dark .section-lede {
  color: rgba(255, 250, 240, 0.78);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.68);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card p,
.feature p {
  margin-top: 10px;
}

.photo {
  width: 100%;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  background: var(--stone);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.photo.tall {
  min-height: 520px;
}

.photo.shell img {
  object-position: center 42%;
}

.photo.interior img {
  object-position: center 47%;
}

.photo.detail img {
  object-position: center 49%;
}

.photo.person img {
  object-position: left center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

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

.list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}

.list li::before {
  position: absolute;
  left: 0;
  color: var(--cedar);
  font-weight: 900;
  content: "/";
}

.band {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--moss-dark);
  color: white;
  box-shadow: var(--shadow);
}

.band p {
  color: rgba(255, 250, 240, 0.8);
}

.program {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.program:first-child {
  border-top: 0;
  padding-top: 0;
}

.program strong {
  color: var(--cedar-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

.gallery-grid .photo {
  min-height: 300px;
  grid-column: span 4;
  border-radius: var(--radius);
}

.gallery-grid .wide {
  grid-column: span 8;
}

.page-hero {
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.86), rgba(75, 48, 30, 0.52) 58%, rgba(23, 32, 29, 0.2)),
    linear-gradient(0deg, rgba(23, 32, 29, 0.54), rgba(23, 32, 29, 0.04) 55%),
    var(--hero-image) var(--hero-position, center 48%) / cover no-repeat;
  overflow: hidden;
}

.page-hero .wrap {
  padding: clamp(92px, 13vw, 156px) 0 76px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.16rem;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

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

.detail-item {
  padding: 22px;
  border-left: 5px solid var(--cedar);
  background: var(--paper-strong);
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  padding: 38px 0;
  background: var(--ink);
  color: var(--paper-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 250, 240, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    background: rgba(23, 32, 29, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .section-head,
  .split,
  .grid.two,
  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .gallery-grid .photo,
  .gallery-grid .wide {
    grid-column: span 12;
  }
}

@media (max-width: 620px) {
  .program {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .photo.tall {
    min-height: 390px;
  }

  .card-body {
    padding: 20px;
  }

  .band {
    padding: 24px;
  }
}
