/* ───────────────────────────────────────────
   Salmon Run Campground — Styles
   Teal + Slate Grey | Cormorant Garamond + Inter
   ─────────────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-deep: #0D4F6E;
  --teal-mid: #1A6B8A;
  --teal-light: #2A8FA8;
  --teal-pale: #E8F4F7;
  --slate-dark: #1C232E;
  --slate-mid: #3A4A5C;
  --slate-text: #5A6B7D;
  --slate-light: #8A9BAD;
  --slate-pale: #E8ECF0;
  --cream: #F5F0EB;
  --cream-dark: #EDE6DD;
  --white: #FAFAF8;
  --gold: #B8956A;
  --gold-light: #D4B896;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(28, 35, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 35, 46, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 35, 46, 0.12);
  --shadow-xl: 0 24px 60px rgba(28, 35, 46, 0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-dark);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--slate-dark);
  margin-bottom: var(--space-sm);
}

.title-ornament {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-lg);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-text);
  max-width: 520px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1px solid var(--teal-deep);
}
.btn-ghost:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1px solid var(--teal-deep);
}
.btn-outline:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--space-lg);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-brand {
  color: var(--slate-dark);
}

.nav-brand-icon {
  color: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.8);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.nav.scrolled .nav-links a {
  color: var(--slate-text);
}

.nav.scrolled .nav-links a:hover {
  color: var(--slate-dark);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(250, 250, 248, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.78rem !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: rgba(250, 250, 248, 0.1);
  border-color: rgba(250, 250, 248, 0.6);
}

.nav.scrolled .nav-cta {
  border-color: var(--teal-deep);
  color: var(--teal-deep) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--teal-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.5rem;
  transition: var(--transition);
}

.nav.scrolled .nav-toggle {
  color: var(--slate-dark);
}

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(28, 35, 46, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.7;
  transition: var(--transition);
}

.nav-overlay-link:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-overlay-cta {
  margin-top: var(--space-md);
  padding: 1rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-overlay-cta:hover {
  background: var(--gold);
  color: var(--slate-dark);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--teal-deep) 50%, #0A3D54 100%);
  display: flex;
  align-items: center;
  padding: 8rem var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left {
  padding-right: var(--space-lg);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero-accent {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(250, 250, 248, 0.7);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-actions .btn-ghost {
  border-color: rgba(250, 250, 248, 0.3);
  color: var(--white);
}

.hero-actions .btn-ghost:hover {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(250, 250, 248, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(250, 250, 248, 0.15);
}

/* Hero Image Stack */
.hero-right {
  position: relative;
}

.hero-img-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-main {
  width: 340px;
  height: 460px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-accent {
  width: 220px;
  height: 165px;
  bottom: 140px;
  left: 0;
  z-index: 3;
  border: 4px solid var(--white);
}

.hero-img-secondary {
  width: 200px;
  height: 143px;
  bottom: 0;
  right: 40px;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: -20px;
  z-index: 4;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--slate-mid);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.hero-badge svg {
  color: var(--teal-mid);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
  z-index: 1;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) 0;
  color: var(--slate-light);
}

/* ── About ── */
.about {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--white);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-image-col {
  position: relative;
  padding-top: var(--space-lg);
}

.about-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-small {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text-col {
  padding-top: var(--space-xl);
}

.about-text-col p {
  color: var(--slate-text);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.about-features {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-feature {
  display: flex;
  gap: var(--space-md);
  align-items: start;
}

.about-feature svg {
  color: var(--teal-mid);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feature strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 0.2rem;
}

.about-feature span {
  font-size: 0.88rem;
  color: var(--slate-text);
  line-height: 1.6;
}

/* ── Sites ── */
.sites {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--cream);
}

.sites-container {
  max-width: 1280px;
  margin: 0 auto;
}

.sites-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.sites-header .title-ornament {
  margin-left: auto;
  margin-right: auto;
}

.sites-header .section-desc {
  margin: 0 auto;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.site-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.site-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.site-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-card:hover .site-card-img img {
  transform: scale(1.05);
}

.site-card-tag {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

.site-card-body {
  padding: var(--space-lg);
}

.site-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: var(--space-sm);
}

.site-card-body p {
  font-size: 0.9rem;
  color: var(--slate-text);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.site-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-mid);
}

.site-card-features svg {
  color: var(--teal-mid);
  flex-shrink: 0;
}

/* ── Activities ── */
.activities {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--white);
}

.activities-container {
  max-width: 1280px;
  margin: 0 auto;
}

.activities-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.activities-intro {
  font-size: 1.05rem;
  color: var(--slate-text);
  line-height: 1.85;
  margin-bottom: var(--space-xl);
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.activity-item {
  display: flex;
  gap: var(--space-md);
  align-items: start;
}

.activity-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-pale);
  line-height: 1;
  min-width: 48px;
  padding-top: 0.3rem;
}

.activity-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 0.3rem;
}

.activity-content p {
  font-size: 0.9rem;
  color: var(--slate-text);
  line-height: 1.7;
}

.activities-image-col {
  position: relative;
  padding-top: var(--space-lg);
}

.activities-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.activities-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activities-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.activities-img-small {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.activities-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Gallery ── */
.gallery {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--cream);
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery-header .title-ornament {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item-wide {
  grid-column: 1 / -1;
  height: 300px;
}

.gallery-item:nth-child(2) {
  height: 280px;
}

.gallery-item:nth-child(3) {
  height: 280px;
}

.gallery-item:nth-child(4) {
  height: 280px;
}

.gallery-item:nth-child(5) {
  height: 280px;
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 79, 110, 0.88) 0%, rgba(28, 35, 46, 0.82) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow {
  color: var(--gold-light);
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner-content > p {
  font-size: 1.05rem;
  color: rgba(250, 250, 248, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.cta-banner-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner-actions .btn-ghost {
  border-color: rgba(250, 250, 248, 0.3);
  color: var(--white);
}

.cta-banner-actions .btn-ghost:hover {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

/* ── Contact ── */
.contact {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--white);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info p {
  color: var(--slate-text);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  align-items: start;
}

.contact-detail svg {
  color: var(--teal-mid);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 0.15rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--slate-text);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--teal-mid);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-col {
  position: relative;
}

.contact-form-wrap {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--slate-text);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-pale);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--slate-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(26, 107, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  gap: var(--space-sm);
}

.form-success.active {
  display: flex;
}

.form-success svg {
  color: var(--teal-mid);
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--slate-dark);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--slate-text);
  line-height: 1.7;
}

/* ── Map Section ── */
.map-section {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--cream);
}

.map-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  background: var(--teal-deep);
  color: var(--white);
}

.map-info .section-eyebrow {
  color: var(--gold-light);
}

.map-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
}

.map-info p {
  font-size: 0.9rem;
  color: rgba(250, 250, 248, 0.7);
  line-height: 1.7;
}

.map-info .btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
  align-self: start;
}

.map-info .btn-outline:hover {
  background: var(--gold);
  color: var(--slate-dark);
}

.map-embed {
  min-height: 320px;
}

.map-embed iframe {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ── Footer ── */
.footer {
  background: var(--slate-dark);
  color: var(--white);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(250, 250, 248, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.7;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav strong,
.footer-contact strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.6);
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.4);
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250, 250, 248, 0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-left {
    padding-right: 0;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img-stack {
    height: 480px;
  }

  .about-layout,
  .activities-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .activities-image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .sites-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .map-container {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 280px;
  }

  .map-embed iframe {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 7rem var(--space-md) var(--space-xl);
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-img-stack {
    height: 400px;
  }

  .hero-img-main {
    width: 240px;
    height: 320px;
  }

  .hero-img-accent {
    width: 160px;
    height: 120px;
    bottom: 100px;
  }

  .hero-img-secondary {
    width: 140px;
    height: 100px;
    bottom: 0;
    right: 20px;
  }

  .hero-badge {
    right: 0;
    font-size: 0.68rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .about-img-small {
    width: 150px;
    bottom: -30px;
    right: -10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: 1;
    height: 220px;
  }

  .gallery-item:nth-child(n) {
    height: 220px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 6rem var(--space-sm) var(--space-lg);
  }

  .hero-img-stack {
    height: 320px;
  }

  .hero-img-main {
    width: 200px;
    height: 270px;
  }

  .hero-img-accent {
    width: 130px;
    height: 98px;
    bottom: 80px;
  }

  .hero-img-secondary {
    width: 120px;
    height: 86px;
  }

  .hero-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-sm);
    display: inline-flex;
  }

  .hero-right {
    text-align: center;
  }

  .contact-form-wrap {
    padding: var(--space-md);
  }
}
