:root {
  --forest: #2f4b3a;
  --forest-dark: #263b2d;
  --cream: #f6f2e9;
  --soft-cream: #f1eadc;
  --gold: #d2ae6d;
  --gold-light: #f5d479;
  --text: #3c2f25;
  --card: #ffffff;
  --shadow: 0 18px 45px -20px rgba(18, 38, 32, 0.35);
  --radius: 14px;
  --transition: all 0.3s ease;
}

{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 20% 20%, rgba(210, 174, 109, 0.15), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(53, 94, 59, 0.15), transparent 30%),
              var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a { color: inherit; }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, var(--forest), var(--forest-dark));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.page-strap {
  height: 12px;
  background: linear-gradient(90deg, var(--gold), silver, var(--gold-light));
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
}

.brand-title {
  
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--gold), silver, var(--gold-light));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.22);
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.28);
}


.page-shell {
  padding: clamp(2rem, 4vw, 3.5rem) 0 4rem;
  display: grid;
  gap: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.inline-icon {
  width: 90px;
  height: auto;
  display: inline-block;
  vertical-align: -10px;
  margin: 0 0.45rem;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.lead {
  font-size: 1.12rem;
  color: #4a3d30;
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-media,
.media-card {
  width: 100%;
}

.media-frame {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid rgba(47, 75, 58, 0.08);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.hero-media .media-frame img {
  width: 75%;
  max-width: 420px;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.media-frame.narrow img {
  max-height: 420px;
}

.media-frame figcaption {
  margin-top: 0.75rem;
  font-style: italic;
  color: var(--forest-dark);
  font-weight: 600;
}

.card,
.highlight-card {
  background: linear-gradient(145deg, #ffffff, var(--soft-cream));
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  border-left: 8px solid var(--gold);
  transition: var(--transition);
}

.card:hover,
.highlight-card:hover,
.callout:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -18px rgba(22, 43, 37, 0.35);
}

.card h2,
.card h3,
.highlight-card h3,
.callout h3 {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.card h2 i,
.card h3 i,
.callout h3 i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.card p { margin-bottom: 1rem; font-size: 1.05rem; }

.card-stack {
  display: grid;
  gap: 1.5rem;
}

.highlight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-left-color: var(--forest);
}

.stack-card {
  position: relative;
  overflow: hidden;
}

.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(210, 174, 109, 0.08), transparent 50%),
              radial-gradient(circle at 80% 10%, rgba(53, 94, 59, 0.08), transparent 48%);
  opacity: 0.9;
}

.stack-card > * {
  position: relative;
  z-index: 1;
}

.inline-heading { display: inline-block; }

.text-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.text-link:hover { border-bottom-color: var(--forest); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.list-styled {
  margin: 1rem 0 0 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: #4b3c31;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1rem;
}

.data-table th,
.data-table td {
  padding: 0.9rem;
  text-align: left;
}

.data-table th {
  background: var(--forest);
  color: #fff;
  letter-spacing: 0.02em;
}

.data-table tr:nth-child(even) { background: #f8f4ec; }

.data-table tr:nth-child(odd) { background: #ffffff; }

.table-wrap {
  overflow-x: auto;
}

.callout {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 75, 58, 0.1);
  padding: 1.1rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}

.safety-grid,
.resources-grid {
  gap: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
}

.primary-btn {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: #2e261c;
  box-shadow: 0 14px 30px -14px rgba(47, 75, 58, 0.6);
}

.primary-btn:hover { transform: translateY(-2px); }

.secondary-btn {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.secondary-btn:hover {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 24px -14px rgba(47, 75, 58, 0.6);
}

.section-intro { text-align: center; max-width: 760px; margin: 0 auto; }

.section-intro .lead { margin: 0 auto; }

.site-footer {
  background: linear-gradient(120deg, var(--forest), var(--forest-dark));
  color: rgba(255, 255, 255, 0.9);
  padding: 1.6rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.back-to-top {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 640px) {
  .header-bar { flex-direction: column; align-items: flex-start; }
  .highlight-card { flex-direction: column; align-items: flex-start; }
  .footer-content { flex-direction: column; align-items: flex-start; }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}




