/*
Theme Name: Gunyatoo
Theme URI: https://gunyatoo.com
Author: Ryan
Description: Custom theme for Gunyatoo Trout Farm & Guest Lodge
Version: 3.0.0
License: GPL-2.0+
Text Domain: gunyatoo
*/

/* ============================================================
   DESIGN SYSTEM
   ============================================================ */

:root {
  --dark:       #1E1A18;
  --charcoal:   #2A2420;
  --charcoal-m: #3D3430;
  --charcoal-l: #524540;
  --copper:     #E5A76B;
  --copper-d:   #C8854A;
  --terracotta: #C65D3B;
  --cream:      #F5F1E8;
  --cream-d:    #E8E2D5;
  --white:      #FFFFFF;
  --text:       #2A2420;
  --text-light: #6B5F58;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-apapa: 'APAPA', Georgia, serif;

  --max-w:      1200px;
  --section-v:  100px;
  --gap:        40px;
  --radius:     4px;
  --transition: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-d); }

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 {
  font-family: 'APAPA', 'Playfair Display', serif !important;
  font-weight: 400 !important;
  font-size: 1.15rem;
}

p { margin-bottom: 1.2rem; font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font-apapa);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-v) 0; }
.section--dark { background: var(--charcoal); }
.section--charcoal { background: var(--charcoal-m); }
.section--cream { background: var(--cream); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   STICKY HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--charcoal);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.site-logo img {
  height: 60px;
  width: auto;
  transition: height var(--transition);
}

.site-header.scrolled .site-logo img { height: 44px; }

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

.site-nav a {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.site-nav a:hover { color: #E5A76B; }
.site-nav a:hover::after { width: 100%; }

.nav-cta {
  background: #E5A76B !important;
  color: var(--charcoal) !important;
  font-family: var(--font-apapa) !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.12em !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #C8854A !important; color: var(--charcoal) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — FULL SCREEN
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 26, 24, 0.35) 0%,
    rgba(30, 26, 24, 0.55) 60%,
    rgba(30, 26, 24, 0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 clamp(20px, 5vw, 60px);
  color: var(--cream);
}

.hero__tag {
  font-family: var(--font-apapa);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 3px #000;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--cream);
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 26, 24, 0.9) 0%,
    rgba(30, 26, 24, 0.4) 60%,
    rgba(30, 26, 24, 0.2) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px clamp(20px, 5vw, 60px);
  color: var(--cream);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.page-hero__content .eyebrow { margin-bottom: 0.75rem; }
.page-hero__content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero__content p { color: var(--cream); opacity: 0.85; max-width: 600px; font-size: 1.15rem; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-apapa);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: #E5A76B;
  color: var(--charcoal);
}

.btn--primary:hover {
  background: #C8854A;
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 167, 107, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 241, 232, 0.5);
}

.btn--outline:hover {
  border-color: #E5A76B;
  color: #E5A76B;
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   INTRO STRIP — STATS / FACTS
   ============================================================ */

.intro-strip {
  background: var(--copper);
  padding: 28px 0;
}

.intro-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}

.intro-strip__item {
  text-align: center;
  color: var(--charcoal);
}

.intro-strip__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.intro-strip__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}

.intro-strip__divider {
  width: 1px;
  height: 40px;
  background: rgba(42, 36, 32, 0.2);
}

/* ============================================================
   PILLARS / FEATURES
   ============================================================ */

.pillars { padding: var(--section-v) 0; }

.pillars__header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.pillars__header h2 { margin-bottom: 1rem; }

.pillar {
  position: relative;
  padding: 40px 32px;
  border-top: 2px solid var(--cream-d);
  transition: border-color var(--transition);
}

.pillar:hover { border-color: var(--copper); }

.pillar__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.pillar p { color: var(--text-light); font-size: 1rem; line-height: 1.8; }

/* ============================================================
   SPLIT SECTIONS (Image + Text)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split__image:hover img { transform: scale(1.03); }

.split__content {
  padding: clamp(50px, 7vw, 100px) clamp(30px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split__content--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.split__content--dark h2,
.split__content--dark h3 { color: var(--cream); }

.split__content--dark p { color: rgba(245, 241, 232, 0.8); }

.split__content h2 { margin-bottom: 1.5rem; }
.split__content p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ============================================================
   ACCOMMODATION CARDS
   ============================================================ */

.acc-grid { padding: var(--section-v) 0; }

.acc-grid__header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.acc-grid__header h2 { margin-bottom: 1rem; }

.acc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.acc-cards--4 { grid-template-columns: repeat(4, 1fr); }
.acc-cards--3 { grid-template-columns: repeat(3, 1fr); }

.acc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42, 36, 32, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.acc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(42, 36, 32, 0.15);
}

.acc-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--charcoal-m);
}

.acc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.acc-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--copper);
  color: var(--charcoal);
  font-family: var(--font-apapa);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.acc-card__body {
  padding: 28px 24px;
  background: var(--charcoal);
}

.acc-card__meta {
  font-size: 0.8rem;
  color: var(--copper);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.acc-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.acc-card__desc {
  color: rgba(245, 241, 232, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.acc-card__footer {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 20px;
}

.acc-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 12px 24px;
}

/* ============================================================
   QUOTE / TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: var(--section-v) 0;
  background: var(--dark);
}

.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.testimonials__header h2 { color: var(--cream); margin-bottom: 0.5rem; }

.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.testimonial {
  padding: 40px 32px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: var(--radius);
  position: relative;
  transition: border-color var(--transition);
}

.testimonial:hover { border-color: var(--copper); }

.testimonial__quote {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.testimonial__text {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__name {
  color: var(--copper);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial__origin {
  color: rgba(245, 241, 232, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* Big pull quote */
.pull-quote {
  padding: var(--section-v) 0;
  background: var(--charcoal);
  text-align: center;
}

.pull-quote blockquote {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.pull-quote blockquote p {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.pull-quote cite {
  color: var(--copper);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  display: block;
}

/* ============================================================
   ACTIVITIES
   ============================================================ */

.activities { padding: var(--section-v) 0; background: var(--cream); }

.activities__header { text-align: center; max-width: 700px; margin: 0 auto 70px; }

.activity-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  margin-bottom: 2px;
}

.activity-item:nth-child(even) .activity-item__content { order: -1; }

.activity-item__image {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.activity-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.activity-item:hover .activity-item__image img { transform: scale(1.04); }

.activity-item__content {
  padding: clamp(40px, 6vw, 80px) clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.activity-item__content h3 { margin-bottom: 1rem; color: var(--charcoal); }
.activity-item__content p { color: var(--text-light); margin-bottom: 1.5rem; }

.activity-item__list {
  margin-bottom: 2rem;
}

.activity-item__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-d);
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-item__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ============================================================
   NEARBY ATTRACTIONS
   ============================================================ */

.nearby { padding: var(--section-v) 0; }

.nearby__header { text-align: center; max-width: 600px; margin: 0 auto 60px; }

.nearby__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

.nearby__item {
  padding: 28px 24px;
  border: 1px solid var(--cream-d);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
}

.nearby__item:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(42, 36, 32, 0.08);
}

.nearby__emoji { font-size: 2rem; display: block; margin-bottom: 12px; }

.nearby__name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.nearby__dist {
  font-size: 0.8rem;
  color: var(--copper);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact { padding: var(--section-v) 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__form h2 { margin-bottom: 0.5rem; }
.contact__form .lead { margin-bottom: 2.5rem; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-d);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}

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

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

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

.contact__info { padding-top: 20px; }

.contact__info h2 { margin-bottom: 2rem; }

.contact__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact__icon {
  width: 44px; height: 44px;
  background: var(--copper);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__detail-content strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact__detail-content span,
.contact__detail-content a {
  font-size: 1.05rem;
  color: var(--charcoal);
}

.contact__detail-content a:hover { color: var(--copper); }

.contact__story {
  margin-top: 40px;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--copper);
}

.contact__story p { color: var(--text-light); font-size: 0.95rem; }
.contact__story p strong { color: var(--charcoal); }

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: var(--section-v) 0 !important;
  background: var(--charcoal-m) !important;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23E5A76B" stroke-width="0.3" opacity="0.15"/></svg>') center/400px;
}

.cta-band .container { position: relative; }

.cta-band h2 { font-family: var(--font-head) !important; color: var(--cream) !important; margin-bottom: 1rem; }
.cta-band p, .cta-band p a { color: rgba(245, 241, 232, 0.7) !important; margin-bottom: 2.5rem; font-size: 1.15rem; max-width: 600px; margin-left: auto; margin-right: auto; text-decoration: none !important; }
.cta-band .btn, .cta-band a.btn {
  display: inline-flex !important;
  font-family: var(--font-apapa) !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  background: var(--copper) !important;
  color: var(--charcoal) !important;
  border-radius: 2px !important;
  padding: 15px 36px !important;
  margin: 0 8px;
  text-decoration: none !important;
  border: none !important;
}
.cta-band a.btn:hover, .cta-band .btn:hover { background: var(--copper-d) !important; }

/* ============================================================
   STORY SECTION
   ============================================================ */

.story { padding: var(--section-v) 0; background: var(--dark); }

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__text .eyebrow { color: var(--copper); }
.story__text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.story__text p { color: rgba(245, 241, 232, 0.7); margin-bottom: 1.2rem; }
.story__text .btn { margin-top: 1rem; }

.story__image-stack { position: relative; }

.story__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.story__img-inset {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--dark);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(245, 241, 232, 0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.footer__brand img { height: 50px; margin-bottom: 20px; }

.footer__brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; }

.footer__col h5 {
  font-family: var(--font-apapa);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul li a {
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--copper); }

.footer__col p { font-size: 0.9rem; line-height: 1.8; }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.3);
}

.footer__bottom a { color: rgba(245, 241, 232, 0.3); }
.footer__bottom a:hover { color: var(--copper); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .acc-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-v: 70px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .split__image { height: 400px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .activity-item { grid-template-columns: 1fr; }
  .activity-item:nth-child(even) .activity-item__content { order: 0; }
  .activity-item__image { height: 350px; }

  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .story__inner { grid-template-columns: 1fr; }
  .story__img-inset { display: none; }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .site-nav.open a { font-size: 1.1rem; }
}

@media (max-width: 700px) {
  :root { --section-v: 60px; }

  .acc-cards--4,
  .acc-cards--3 { grid-template-columns: 1fr; }

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

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

  .hero__actions { flex-direction: column; align-items: center; }

  .intro-strip .container { gap: 20px; }
  .intro-strip__divider { display: none; }

  .cta-band .btn { display: block; width: 100%; max-width: 280px; margin: 8px auto; }
}

@media (max-width: 480px) {
  :root { --section-v: 36px; }
}