/* ───────────────────────────────────────────
   TEDDY ROGERS — Winter & Spring Adventures
   Adventurous Outdoorsy Theme
─────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --green:      #2C5F2E;
  --green-mid:  #3d7a40;
  --green-light:#e8f2e8;
  --amber:      #D4621A;
  --amber-light:#fdf0e8;
  --sky:        #5ba4c8;
  --snow:       #f5f7f5;
  --stone:      #c4a882;
  --bark:       #4a3728;
  --text:       #1a2a1b;
  --text-light: #f0f4f0;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Nunito', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--snow); }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── HELPERS ── */
.container { max-width: 1160px; margin-inline: auto; padding-inline: 24px; }
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.eyebrow--light { color: var(--stone); }
.eyebrow--dark  { color: var(--green); }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--hero    { background: var(--amber); color: #fff; }
.btn--outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--outline:hover { background: rgba(255,255,255,.15); }

/* ── FADE-IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .3s, box-shadow .3s;
}
.nav--scrolled {
  background: rgba(28, 50, 28, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
}
.nav__links {
  display: flex; gap: 32px; align-items: center;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.nav__archive { color: var(--stone); }
.nav__burger {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 1.6rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero__img-wrap {
  position: absolute; inset: 0;
}
.hero__img { object-position: center 30%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,40,20,.35) 0%,
    rgba(20,40,20,.6) 60%,
    rgba(20,40,20,.85) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 20px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  letter-spacing: .06em;
}

/* ── SECTION BASE ── */
.section { padding: 100px 0; }

/* ── ABOUT ── */
.about { background: #fff; }
.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.about__photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about__photo {
  border-radius: var(--radius);
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about__text h2 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.1;
}
.about__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a4a3a;
  margin-bottom: 16px;
}
.about__facts {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.fact {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-light);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--green);
}
.fact__icon { font-size: 1.2rem; }

/* ── SEASON HEADER ── */
.season__header {
  margin-bottom: 60px;
  padding: 80px 0 60px;
}
.season--winter .season__header { background: var(--bark); }
.season--spring .season__header { background: var(--green-light); }
.season__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.season__title--dark { color: var(--green); }
.season__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 600px;
}
.season__desc--dark { color: #3a5a3a; }

/* ── ACTIVITIES ── */
.season--winter { background: #faf8f6; padding-top: 0; }
.season--spring { background: #fff; padding-top: 0; }

.activities { display: flex; flex-direction: column; gap: 40px; }

.activity {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  transition: box-shadow .3s;
}
.activity:hover { box-shadow: var(--shadow-lg); }

.activity__photos {
  overflow: hidden;
}
.activity__photos img {
  height: 100%; min-height: 280px;
  transition: transform .5s ease;
}
.activity:hover .activity__photos img { transform: scale(1.03); }
.activity__photos--duo {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.activity__photos--duo img { min-height: 180px; }

.activity__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.activity__tag {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.activity__body h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.1;
}
.activity__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a4a3a;
}
.activity--feature { grid-template-columns: 1fr 1fr; }
.activity--reverse { direction: rtl; }
.activity--reverse > * { direction: ltr; }

/* Three-column row */
.activity-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activity-row .activity {
  grid-template-columns: 1fr;
}
.activity-row .activity__photos img { height: 220px; min-height: 220px; }
.activity-row .activity__body { padding: 28px 28px 32px; }
.activity-row .activity__body h3 { font-size: 1.4rem; }

/* ── GALLERY ── */
.gallery-section { background: var(--bark); }
.gallery-section .eyebrow { color: var(--stone); }
.gallery-section h2 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.gallery-section__sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 48px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery__item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }

/* ── ARCHIVE ── */
.archive-section { background: var(--green); }
.archive-section__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.archive-section__text h2 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.archive-section__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 480px;
}
.stamp {
  width: 180px; height: 180px;
  border: 4px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  opacity: .85;
  padding: 16px;
}
.stamp__year {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stamp__text {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--stone);
  margin: 6px 0;
  line-height: 1.3;
}
.stamp__age {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}

/* ── FOOTER ── */
.footer { background: #0e1e0f; padding: 48px 0; }
.footer__inner { text-align: center; }
.footer__logo {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { height: 320px; }
  .activity { grid-template-columns: 1fr; }
  .activity--reverse { direction: ltr; }
  .activity--feature { grid-template-columns: 1fr; }
  .activity__photos--duo { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .activity__photos--duo img { min-height: 200px; }
  .activity-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .archive-section__inner { grid-template-columns: 1fr; }
  .stamp { display: none; }
}
@media (max-width: 640px) {
  .nav__links { 
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(28,50,28,.97);
    padding: 16px 0;
  }
  .nav__links.nav__links--open { display: flex; }
  .nav__links li { padding: 12px 32px; }
  .nav__burger { display: block; }
  .section { padding: 60px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 1; }
  .activity__body { padding: 24px 20px; }
  .hero__title { font-size: 3rem; }
}

/* ── ARCHIVE CARDS ── */
.archive-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.archive-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background .25s;
}
.archive-card:hover { background: rgba(255,255,255,.13); }
.archive-card__stamp {
  flex-shrink: 0;
  width: 90px; height: 90px;
  border: 3px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  padding: 8px;
}
.archive-card__stamp .stamp__year {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.archive-card__stamp .stamp__text {
  font-family: var(--font-head);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--stone);
  margin-top: 4px;
  line-height: 1.3;
}
.archive-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.archive-card__body p {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}
@media (max-width: 700px) {
  .archive-cards { grid-template-columns: 1fr; }
  .archive-card { flex-direction: column; gap: 16px; }
}
