/* =====================
   Variables
   ===================== */
:root {
  --bg-dark: #121212;
  --bg-light: #f5f1e8;
  --text-light: #f5f1e8;
  --text-dark: #121212;
  --text-muted-dark: rgba(245, 241, 232, 0.60);
  --text-muted-light: rgba(18, 18, 18, 0.72);
  --accent: #76d9da;
  --column: 680px;
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

/* =====================
   Layout
   ===================== */
.container {
  width: min(calc(100% - 40px), var(--column));
  margin: 0 auto;
}

/* =====================
   Typography
   ===================== */
h1, h2 {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(36px, 6vw, 52px);
  color: var(--text-light);
}

h2 {
  font-size: 32px;
  line-height: 1.1;
  color: var(--text-dark);
}

p, li {
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 28px;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

/* =====================
   Hero (image-led)
   ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.35) 0%,
    rgba(18, 18, 18, 0) 20%,
    rgba(18, 18, 18, 0) 30%,
    rgba(18, 18, 18, 0.85) 100%
  );
}

@media (max-width: 639px) {
  .hero::before {
    background:
      linear-gradient(
        to right,
        rgba(18, 18, 18, 0.55) 0%,
        rgba(18, 18, 18, 0.40) 40%,
        rgba(18, 18, 18, 0.25) 75%,
        rgba(18, 18, 18, 0.15) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(18, 18, 18, 0.15) 0%,
        rgba(18, 18, 18, 0) 25%,
        rgba(18, 18, 18, 0) 50%,
        rgba(18, 18, 18, 0.85) 100%
      );
  }

  .hero h1,
  .hero-text p:not(.quick-facts) {
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.9),
      0 2px 10px rgba(0, 0, 0, 0.7),
      0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .hero-text .quick-facts {
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.9),
      0 2px 6px rgba(0, 0, 0, 0.6);
  }
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 80px;
}

.hero-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.hero-text {
  max-width: 680px;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text p {
  color: rgba(245, 241, 232, 0.88);
  max-width: 560px;
  margin-bottom: 0;
}

.quick-facts {
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
  margin-top: 32px;
  margin-bottom: 0;
}

.cue-item + .cue-item::before {
  content: '\00a0\00a0•\00a0\00a0';
}

@media (max-width: 639px) {
  .mobile-br { display: block; }

  .cue-item {
    display: block;
  }

  .cue-item + .cue-item::before {
    content: none;
  }
}

/* Footer logo */
.logo {
  height: 32px;
  width: auto;
}

/* =====================
   Content Sections
   ===================== */
.content-section {
  padding: 96px 0;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(18, 18, 18, 0.18) 0%, transparent 36%) 1;
}

.content-section.no-border {
  border-bottom: none;
  border-image: none;
  padding-bottom: 40px;
}

.content-section h2 {
  margin-bottom: 32px;
}

/* =====================
   When & Where — Address Block
   ===================== */
.address-block {
  margin-top: 48px;
  margin-bottom: 28px;
}

.address-block p {
  margin-bottom: 4px;
}

.address-block p:last-child {
  margin-bottom: 0;
  color: var(--text-muted-light);
  font-size: 16px;
}

/* =====================
   Text Link Buttons (Add to calendar, Share)
   ===================== */
.text-link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(118, 217, 218, 0.4);
  text-underline-offset: 3px;
  transition: color 0.12s ease, text-decoration-color 0.12s ease;
}

.text-link-btn:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.text-link-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =====================
   Calendar Picker Dropdown
   ===================== */
.cal-picker {
  position: relative;
  display: block;
}

.cal-picker__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-light);
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 6px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  min-width: 172px;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.10);
  z-index: 10;
}

.cal-picker__option {
  display: block;
  padding: 9px 16px;
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: color 0.12s ease;
}

.cal-picker__option:hover {
  color: var(--accent);
}

/* =====================
   Photo Grid
   ===================== */
.photo-grid-wrap {
  padding: 64px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--bg-dark);
}

.photo-grid img {
  width: 100%;
  height: clamp(140px, 22vw, 260px);
  object-fit: cover;
  display: block;
}

/* =====================
   Questions Section
   ===================== */
.questions-section {
  padding: 40px 0 80px;
}

.questions-section h2 {
  margin-bottom: 12px;
}

.questions-lead {
  color: var(--text-muted-light);
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.contact-list li {
  margin-bottom: 6px;
  font-size: 18px;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-list a {
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-color: rgba(18, 18, 18, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.12s ease;
}

.contact-list a:hover {
  text-decoration-color: var(--text-dark);
}

/* =====================
   Footer
   ===================== */
.footer-dark {
  background: #0e0e0e;
  padding: 64px 0 56px;
}

.footer-inner {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .logo {
  height: 32px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(245, 241, 232, 0.72);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  margin: 16px 0;
}

.footer-since {
  color: rgba(245, 241, 232, 0.38);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.footer-col-heading {
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
}

.footer-col p {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.60);
  margin-bottom: 6px;
  line-height: 1.55;
}

.footer-col p:last-child {
  margin-bottom: 0;
}

.footer-col a {
  color: rgba(245, 241, 232, 0.60);
  transition: color 0.12s ease;
}

.footer-col a:hover {
  color: rgba(245, 241, 232, 0.90);
}

/* =====================
   Desktop (640px+)
   ===================== */
@media (min-width: 640px) {
  .hero {
    height: 85vh;
  }

  .hero-inner {
    padding: 40px 60px 100px;
  }

  .hero-logo img {
    height: 36px;
  }

  .hero-text {
    max-width: 640px;
  }

  .hero-text p {
    max-width: 480px;
  }

  h2 {
    font-size: 42px;
  }

  .content-section {
    padding: 128px 0;
  }

  .questions-section {
    padding: 40px 0 108px;
  }

  .photo-grid-wrap {
    padding: 72px 0;
  }

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

  .photo-grid img {
    height: clamp(160px, 18vw, 300px);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  .footer-brand .logo {
    height: 32px;
    margin-bottom: 16px;
  }
}
