:root {
  --sand: #F5F0E8;
  --sand-light: #FAF7F2;
  --charcoal: #1A1A1A;
  --slate: #2C3E50;
  --copper: #B87333;
  --copper-light: #D4956B;
  --copper-dark: #8B5A2B;
  --warm-gray: #6B6560;
  --warm-gray-light: #9B9590;
  --cream: #FFFDF8;
  --border: rgba(184, 115, 51, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-suffix {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--copper);
}

.nav-contact {
  background: var(--charcoal);
  color: var(--sand) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease !important;
}

.nav-contact:hover {
  background: var(--copper) !important;
  color: #fff !important;
}

/* ── PAGE HERO (compact, for interior pages) ── */
.hero-page {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  padding: 10rem 0 5rem;
}

.hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(184, 115, 51, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 115, 51, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(184, 115, 51, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(44, 62, 80, 0.2) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.3);
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}

.hero-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  max-width: 850px;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--copper);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  padding: 1rem 2.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--copper-light);
  color: var(--copper-light);
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.section.alt {
  background: var(--sand-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-body p {
  color: var(--warm-gray);
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.section-body a,
.allegation .detail a,
.facility-block p a,
.faq-answer a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 115, 51, 0.35);
  transition: color 0.3s, border-color 0.3s;
}

.section-body a:hover,
.allegation .detail a:hover,
.facility-block p a:hover,
.faq-answer a:hover {
  color: var(--copper-dark);
  border-color: var(--copper-dark);
}

/* ── OVERVIEW CALLOUT ── */
.overview-box {
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--copper);
  border-radius: 3px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  max-width: 800px;
}

.section.alt .overview-box {
  background: var(--cream);
}

.overview-box .overview-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.overview-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0;
}

/* ── ALLEGATIONS ── */
.allegations {
  max-width: 800px;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.allegation {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section:not(.alt) .allegation {
  background: var(--sand-light);
}

.allegation:hover {
  border-color: rgba(184, 115, 51, 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.allegation .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1.2;
}

.allegation .detail {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

.allegation .detail p {
  margin-bottom: 0.6rem;
}

.allegation .detail p:last-child {
  margin-bottom: 0;
}

/* ── FACILITY BLOCKS (hub page) ── */
.facility-block {
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.25rem;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.facility-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--copper);
  transition: height 0.4s ease;
}

.facility-block:hover::before {
  height: 100%;
}

.facility-block:hover {
  border-color: rgba(184, 115, 51, 0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.facility-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.facility-block p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.facility-block p:last-of-type {
  margin-bottom: 0;
}

.facility-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: color 0.3s;
}

.facility-more:hover {
  color: var(--copper-dark);
}

.facility-list {
  max-width: 800px;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.facility-list li a,
.facility-list li span {
  display: block;
  padding: 1rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.facility-list li a:hover {
  border-color: rgba(184, 115, 51, 0.35);
  color: var(--copper-dark);
  box-shadow: 0 6px 30px rgba(0,0,0,0.04);
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin-top: 2.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--cream);
  margin-bottom: 0.75rem;
}

.section:not(.alt) .faq-item {
  background: var(--sand-light);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--copper-dark);
}

.faq-item .faq-answer {
  padding: 0 1.75rem 1.5rem;
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact {
  padding: 7rem 2rem;
  background: linear-gradient(165deg, var(--charcoal) 0%, #1f2937 100%);
  color: #fff;
}

.contact-simple {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-simple .contact-info {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 2rem;
}

.contact .section-label {
  color: var(--copper-light);
}

.contact .section-title {
  color: #fff;
}

.contact-lede {
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-item-icon {
  width: 20px;
  height: 20px;
  color: var(--copper-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 300;
}

.contact-item-value a {
  color: var(--copper-light);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-value a:hover {
  color: var(--copper);
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  font-weight: 300;
}

.footer-right {
  display: flex;
  gap: 2rem;
}

.footer-right a {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: var(--copper-light);
}

/* ── DISCLAIMER BAR ── */
.disclaimer {
  padding: 1.5rem 2rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.disclaimer p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 400;
}

/* ── MOBILE NAV ── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-label,
  .hero-page h1,
  .hero-sub,
  .hero-cta {
    animation: none;
    opacity: 1;
  }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 253, 248, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }

  nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    padding: 0.8rem 1.5rem;
  }

  .hero-page {
    padding: 8rem 0 3.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .allegation {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .overview-box {
    padding: 1.5rem;
  }

  .facility-block {
    padding: 1.75rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── CONTACT FORM ── */
.contact-form {
  margin: 3rem auto 0;
  max-width: 640px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}

.form-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--copper-light);
}

.form-field textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  border: 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  margin-top: 0.5rem;
}

.cf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #E8A87C;
  min-height: 1.2em;
}

.form-success {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}


@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .cf-turnstile {
  margin: 0.25rem 0 1rem;
}
