:root {
  --bg: #efe7dc;
  --paper: #f8f2e9;
  --sand: #ddccb9;
  --sand-deep: #cfb59d;
  --olive: #5f6248;
  --olive-deep: #4f523b;
  --bronze: #9a775f;
  --text: #211b18;
  --muted: rgba(33, 27, 24, 0.74);
  --line: rgba(33, 27, 24, 0.12);
  --dark: #14110f;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(16, 12, 10, 0.12);
  --radius-xl: 2rem;
  --radius-lg: 1.35rem;
  --container: 1180px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: -15vw;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(95, 98, 72, 0.12), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(154, 119, 95, 0.10), transparent 15%),
    radial-gradient(circle at 82% 75%, rgba(95, 98, 72, 0.08), transparent 18%),
    radial-gradient(circle at 20% 82%, rgba(154, 119, 95, 0.08), transparent 14%);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 242, 233, 0.76);
  border-bottom: 1px solid rgba(33, 27, 24, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-size: 0.93rem;
  color: rgba(33, 27, 24, 0.78);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(33, 27, 24, 0.08);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(33, 27, 24, 0.14);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-media,
.hero-media img,
.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transform: scale(1.03);
}

.hero-overlay,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.74) 0%, rgba(10, 10, 9, 0.44) 42%, rgba(10, 10, 9, 0.16) 100%);
}

.contact-overlay {
  background: linear-gradient(180deg, rgba(13, 11, 10, 0.34) 0%, rgba(13, 11, 10, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 760px;
  padding: 100px 0 90px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(33, 27, 24, 0.58);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(4.2rem, 9vw, 8.8rem);
}

h2 {
  font-size: clamp(2.9rem, 5.5vw, 5.2rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.light,
.light + p,
.contact-text,
.site-footer p,
.site-footer button,
.event-card p,
.event-card h3,
.info-panel p,
.service-card p {
  color: inherit;
}

.light-soft {
  color: rgba(255, 255, 255, 0.82);
}

.hero-text {
  margin-top: 24px;
  max-width: 580px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn,
.chip,
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.chip:hover,
.media-card:hover,
.service-card:hover,
.back-to-top:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.section {
  padding: 118px 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.section-olive {
  background: linear-gradient(180deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: var(--white);
}

.section-sand {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-intro {
  margin-top: 18px;
  max-width: 620px;
  font-size: 1.04rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.9fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 38px;
  align-items: start;
}

.intro-copy,
.content-block {
  max-width: 620px;
}

.intro-copy h2,
.content-block h2,
.section-heading h2,
.statement-card h3,
.info-panel h3 {
  margin-bottom: 20px;
}

.intro-copy p + p,
.statement-card p + p,
.content-block p + p,
.info-panel p + p {
  margin-top: 16px;
}

.lead-strong {
  font-weight: 600;
  color: var(--text);
}

.statement-card,
.info-panel,
.service-card,
.media-card,
.feature-photo,
.support-photo,
.event-card,
.media-quote {
  border-radius: var(--radius-xl);
}

.statement-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(33, 27, 24, 0.08);
  box-shadow: var(--shadow);
}

.feature-photo,
.support-photo {
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.feature-photo img,
.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid,
.media-grid {
  display: grid;
  gap: 26px;
}

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

.service-card {
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.service-number,
.media-label,
.media-arrow,
.event-date {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.service-number {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 42px;
}

.service-copy h3,
.media-card h3,
.event-card h3 {
  margin-bottom: 10px;
}

.service-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.media-layout {
  position: relative;
}

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

.media-card {
  text-decoration: none;
  padding: 28px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(33, 27, 24, 0.10);
  box-shadow: var(--shadow);
}

.media-label {
  margin-bottom: 18px;
  color: rgba(33, 27, 24, 0.54);
}

.media-arrow {
  margin-top: 18px;
  color: rgba(33, 27, 24, 0.72);
}

.media-quote {
  margin-top: 30px;
  padding: 32px 34px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(33, 27, 24, 0.08);
  box-shadow: var(--shadow);
  max-width: 760px;
}

.quote-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  color: var(--text);
}

.live-copy {
  max-width: 520px;
}

.event-card {
  margin-top: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(33, 27, 24, 0.08);
  box-shadow: var(--shadow);
}

.event-date {
  margin-bottom: 12px;
  color: rgba(33, 27, 24, 0.56);
}

.live-side {
  display: grid;
  gap: 24px;
}

.info-panel {
  background: #655842;
  color: rgba(255, 255, 255, 0.95);
  padding: 44px;
  box-shadow: var(--shadow);
}

.support-photo-small {
  min-height: 260px;
}

.contact-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  padding: 110px 0;
}

.contact-inner h2 {
  max-width: none;
}

.contact-text {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.chip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.site-footer {
  background: #0f0d0c;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.back-to-top {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal.in {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger > * {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .chip,
  .media-card,
  .service-card,
  .nav-link,
  .back-to-top {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .cards-grid-compact,
  .media-grid-2,
  .about-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    min-height: 360px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(248, 242, 233, 0.96);
    border: 1px solid rgba(33, 27, 24, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 0.9rem 1rem;
  }

  .section {
    padding: 90px 0;
  }

  h1 {
    font-size: clamp(3.5rem, 13vw, 5.5rem);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 9, 0.54) 0%, rgba(10, 10, 9, 0.68) 100%);
  }

  .contact-overlay {
    background: linear-gradient(180deg, rgba(13, 11, 10, 0.22) 0%, rgba(13, 11, 10, 0.68) 100%);
  }

  .statement-card,
  .info-panel,
  .service-card,
  .media-card,
  .event-card,
  .media-quote {
    padding: 24px;
  }

  .feature-photo,
  .support-photo-small {
    min-height: 260px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.visual-band {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: -8px 0;
}

.visual-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.92) brightness(0.88);
  transform: scale(1.03);
}

.visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.08) 0%, rgba(20,17,15,0.18) 100%);
}

@media (max-width: 900px) {
  .visual-band {
    height: 230px;
  }
}

.visual-band img {
  transition: transform 6s ease;
}

.visual-band:hover img {
  transform: scale(1.08);
}