:root {
  --tippets-brown: #6f3f1d;
  --tippets-rust: #b95f32;
  --tippets-gold: #d9a441;
  --tippets-cream: #fff7ea;
  --tippets-dark: #2d2118;
  --tippets-soft: #f6efe4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--tippets-dark);
  background: var(--tippets-cream);
  line-height: 1.6;
}

.site-header {
  background: var(--tippets-brown);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.site-branding {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-title {
  color: white;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: bold;
  letter-spacing: .02em;
}

.site-subtitle {
  color: #f9e2ac;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  background: rgba(0,0,0,.16);
}

.main-nav ul {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav li { margin: 0; }

.main-nav a {
  color: white;
  display: block;
  padding: 13px 14px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 4px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,.09);
  border-bottom-color: var(--tippets-gold);
  color: #ffe6ad;
}

.reunion-page img {
  max-width: 100%;
  display: block;
}

.hero {
  min-height: 560px;
  background-image: linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.45)), url('../images/bryce-canyon-national-park.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-inner { max-width: 1000px; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  margin: 0 0 18px;
  text-shadow: 0 3px 16px rgba(0,0,0,.55);
}

.hero .date-line {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: bold;
  margin: 0 0 16px;
}

.hero .tagline {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 999px;
  font-size: 1.15rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.18);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 22px;
}

.section h2 {
  color: var(--tippets-brown);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 22px;
}

.section h3 {
  color: var(--tippets-rust);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.intro-card, .coming-card, .archive-card {
  background: white;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 12px 30px rgba(45,33,24,.11);
  border-top: 6px solid var(--tippets-gold);
}

.save-date {
  background: var(--tippets-brown);
  color: white;
  text-align: center;
  padding: 38px 20px;
}

.save-date h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  letter-spacing: .06em;
}

.save-date p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.quote {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 6px solid var(--tippets-gold);
  background: var(--tippets-soft);
  font-size: 1.25rem;
  font-style: italic;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.activity-list li {
  background: white;
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: 0 6px 16px rgba(45,33,24,.08);
  border-left: 5px solid var(--tippets-rust);
  font-weight: bold;
}

.photo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.photo-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(45,33,24,.12);
}

.photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.photo-card-content { padding: 22px; }
.photo-card-content h3 { margin-top: 0; }

.feature-image {
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(45,33,24,.18);
  width: 100%;
}

.coming-list {
  columns: 2;
  padding-left: 22px;
}

.final-banner {
  background: linear-gradient(135deg, var(--tippets-rust), var(--tippets-brown));
  color: white;
  text-align: center;
  padding: 50px 22px;
}

.final-banner h2 {
  color: white;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-banner p {
  margin: 6px 0;
  font-size: 1.25rem;
}

@media (max-width: 850px) {
  .site-branding { justify-content: center; text-align: center; }
  .main-nav ul { justify-content: center; }
  .main-nav a { padding: 11px 10px; font-size: .95rem; }
  .grid-2, .photo-card-grid { grid-template-columns: 1fr; }
  .hero { min-height: 440px; }
  .coming-list { columns: 1; }
}
