:root {
  --ink: #111111;
  --muted: #5f5f5f;
  --paper: #ffffff;
  --soft: #f3f1ed;
  --line: #ddd6cc;
  --brand: #d72520;
  --brand-dark: #941611;
  --gold: #c79d45;
  --charcoal: #181818;
  --max: 1180px;
  color-scheme: light;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 9vw, 6.75rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 850;
  text-transform: uppercase;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.7vw, 1.4rem);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.nav-dropdown > a {
  padding: 0.5rem 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-cta,
.button--primary {
  background: var(--brand);
  color: #ffffff;
}

.button--primary:hover,
.nav-cta:hover {
  background: var(--brand-dark);
}

.button--secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--ink);
}

.button--secondary:hover {
  background: var(--ink);
  color: #ffffff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 280px;
  display: none;
  padding: 0.65rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  display: grid;
}

.nav-dropdown__panel a {
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
}

.nav-dropdown__panel a:hover {
  background: var(--soft);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  color: #ffffff;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(78deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.14) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4.5rem;
}

.hero__eyebrow,
.section-kicker,
.content-card__eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero p {
  max-width: 700px;
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  color: rgba(255, 255, 255, 0.9);
}

.main-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-block,
.card-section,
.gallery-section,
.form-section,
.embed-section,
.location-band {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-block {
  max-width: 900px;
}

.section-block h2,
.section-block h3,
.card-section h2,
.gallery-section h2,
.form-section h2,
.embed-section h2,
.location-band h2 {
  margin: 0.3rem 0 1.2rem;
}

.section-block p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-block--compact {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.section-block--compact h3 {
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.content-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.content-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
}

.content-card strong {
  font-size: 1.2rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.content-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.image-shell {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
}

.image-shell img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.image-shell.is-missing {
  display: none;
}

.content-card__image {
  aspect-ratio: 4 / 3;
  margin-bottom: 0.3rem;
}

.content-card__image img {
  min-height: 100%;
}

.card-section--people .content-card__image {
  aspect-ratio: 1 / 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.gallery-grid .image-shell {
  aspect-ratio: 4 / 3;
}

.location-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--charcoal);
  color: #ffffff;
  border-radius: 8px;
}

.location-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--soft);
  border-radius: 8px;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-notice {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.embed-section iframe {
  width: 100%;
  min-height: 760px;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.site-footer {
  background: var(--charcoal);
  color: #ffffff;
}

.footer-top {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a,
  .nav-dropdown > a {
    padding: 0.85rem 0;
  }

  .nav-dropdown__panel {
    position: static;
    display: grid;
    width: 100%;
    padding: 0 0 0.5rem 0.8rem;
    border: 0;
    box-shadow: none;
  }

  .card-grid,
  .gallery-grid,
  .footer-top,
  .form-section,
  .location-band {
    grid-template-columns: 1fr;
  }

  .location-band {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 130px;
  }

  .hero {
    min-height: 610px;
  }

  .hero__content {
    width: min(100% - 1.25rem, var(--max));
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.8rem);
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .button {
    min-width: 0;
  }

  .main-content {
    width: min(100% - 1.25rem, var(--max));
  }
}
