/* ═══════════════════════════════════════════════════════
   ELLIE MAY PHOTOGRAPHY — MODERNISED DESIGN
   Design System & Styles
═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ────────────────────────────────────── */
:root {
  --forest:      hsl(152, 29%, 17%);   /* Deep forest green */
  --forest-mid:  hsl(152, 25%, 24%);
  --forest-light:hsl(152, 20%, 32%);
  --cream:       hsl(42, 35%, 97%);
  --cream-warm:  hsl(38, 30%, 93%);
  --blush:       hsl(10, 35%, 88%);
  --gold:        hsl(38, 60%, 60%);
  --gold-light:  hsl(38, 70%, 75%);
  --charcoal:    hsl(220, 15%, 18%);
  --text-main:   hsl(220, 12%, 22%);
  --text-soft:   hsl(220, 10%, 42%);
  --white:       #ffffff;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --nav-h: 80px;
  --radius: 4px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 3px; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--forest-light); }

.section-sub {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-soft);
}
.section-sub.light { color: rgba(255,255,255,0.75); }

.body-text {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27, 60, 42, 0.35);
}
.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 60, 42, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-dark:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 60, 42, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* ─── NAVIGATION ────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.nav-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}
.nav-header.scrolled .logo-text,
.nav-header.scrolled .antler-icon { color: var(--forest); }
.nav-header.scrolled .nav-link { color: var(--text-main); }
.nav-header.scrolled .nav-link:hover { color: var(--forest); }
.nav-header.scrolled .nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  border-color: var(--forest);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.antler-icon {
  width: 36px;
  height: 28px;
  color: inherit;
  transition: color 0.3s;
}
.antler-icon.small { width: 28px; height: 21px; }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}

/* Real logo image in the nav — transparent PNG */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  /* White logo over the dark hero image */
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease-smooth);
}
/* Natural dark logo on the light cream scrolled nav */
.nav-header.scrolled .nav-logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 24, 17, 0.55) 0%,
    rgba(10, 24, 17, 0.3) 50%,
    rgba(10, 24, 17, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 820px;
  animation: heroFadeUp 1.2s var(--ease-smooth) 0.2s both;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 2.8rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease-smooth) 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ─── INTRO STRIP ───────────────────────────────────────── */
.intro-strip {
  background: var(--forest);
  padding: 1.1rem 0;
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.dot {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  background: var(--cream);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-primary {
  width: 75%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
}

.about-img-secondary {
  width: 52%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  position: absolute;
  bottom: -3rem;
  right: 0;
  z-index: 2;
  border: 5px solid var(--cream);
}

.about-badge {
  position: absolute;
  top: 2rem;
  right: 15%;
  z-index: 3;
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
}

.badge-ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  color: var(--gold);
  animation: rotateSlow 20s linear infinite;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}

.badge-label {
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.2rem;
  padding: 0 0.5rem;
  text-align: center;
}

.about-text {
  padding-right: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ─── PACKAGES ──────────────────────────────────────────── */
.packages {
  background: var(--forest);
  padding: clamp(5rem, 10vw, 9rem) 2rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4.5rem;
}

.packages-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}
.package-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}

.package-card.featured {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.package-card.featured:hover {
  transform: translateY(-14px);
}
.package-card.featured .pkg-title,
.package-card.featured .pkg-desc,
.package-card.featured .pkg-list li {
  color: var(--charcoal);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.pkg-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.pkg-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.pkg-list {
  flex: 1;
  margin-bottom: 2rem;
}

.pkg-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pkg-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.package-card.featured .pkg-list li {
  border-bottom-color: rgba(0,0,0,0.07);
}
.package-card.featured .pkg-list li::before { color: var(--forest); }

.pkg-btn { width: 100%; justify-content: center; }
.package-card.featured .btn-outline {
  border-color: var(--forest);
  color: var(--forest);
}
.package-card.featured .btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery-section {
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  background: var(--cream-warm);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px 300px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  transition: transform 0.7s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,24,17,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.gallery-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
}

.gallery-cta { text-align: center; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  background: var(--forest-mid);
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 22rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-track {
  margin: 3rem 0 2.5rem;
  min-height: 200px;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: tFadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 2rem;
}

cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.t-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.t-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.t-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

/* ─── CONTACT ───────────────────────────────────────────── */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  background: var(--cream);
}

.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info { padding-top: 0.5rem; }

.contact-details {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 0.25s;
}
a.contact-item:hover { color: var(--forest); }

.contact-icon {
  width: 38px; height: 38px;
  background: var(--cream-warm);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--forest);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all 0.3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--cream-warm);
  transform: translateY(-2px);
}

/* ─── FORM ──────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

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

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: all 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(27,60,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.footer-logo-img:hover { opacity: 1; }

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-copy a:hover { color: rgba(255,255,255,0.8); }

/* ─── KEYFRAMES ─────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7) translateY(6px); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-link {
    color: var(--text-main) !important;
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
  .nav-cta {
    margin-top: 1rem;
    border-color: var(--forest) !important;
    color: var(--forest) !important;
    text-align: center;
  }
  .nav-toggle { display: flex; }
  .nav-header .antler-icon,
  .nav-header .logo-text { color: var(--forest); }

  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .package-card.featured { transform: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.wide { grid-column: span 1; }
  .about-img-secondary { display: none; }
}
