@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --navy:        #1b2b4b;
  --navy-mid:    #2d3f60;
  --cream:       #faf8f2;
  --cream-dark:  #f0ede4;
  --white:       #ffffff;
  --teal:        #00adee;
  --teal-hover:  #0095cc;
  --teal-pale:   #e0f6ff;
  --teal-light:  #c8eeff;
  --text:        #1e2a3a;
  --text-muted:  #6b7585;
  --border:      #ddd9d0;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Source Sans 3', system-ui, sans-serif;

  --max-w:      1100px;
  --nav-h:      72px;
  --pad-section: 88px;
  --pad-page:    24px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); }

/* ── Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-page);
}

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

.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--teal);
  margin-top: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }


/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-page);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  display: block;
}
.nav-links li a:hover {
  color: var(--teal);
  background: var(--teal-pale);
}
.nav-weather-li { display: flex; align-items: center; }

/* Temps strip — body, mobile only */
.temps-strip {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: var(--teal-pale);
  border-top: 1px solid rgba(0,173,238,0.2);
  border-bottom: 1px solid rgba(0,173,238,0.2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.temps-strip:hover { background: var(--teal-light); }
.strip-label { color: var(--text-muted); }
.strip-air   { color: #2563eb; }
.strip-water { color: var(--teal); }
.strip-sep   { color: var(--border); margin: 0 8px; }
.nav-temps {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
  min-width: 0;
}
.nav-temps:empty { display: none; }
.nav-temps:hover { background: var(--teal-pale); border-color: var(--teal); }
.nav-temp-air   { color: #60a5fa; }
.nav-temp-water { color: var(--teal); }
.nav-temp-sep   { color: var(--border); }

.nav-ig a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav-ig a:hover { color: var(--teal); background: var(--teal-pale); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Advertising page ──────────────────────────────────── */
.ad-page-back {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s;
}
.ad-page-back:hover { color: var(--teal); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background-color: #0a2a3d;
  background-image: url('assets/photos/lake.jpg');
  background-size: cover;
  background-position: center 55%;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad-page);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8,24,40,0.72) 0%,
    rgba(8,24,40,0.52) 45%,
    rgba(8,24,40,0.68) 100%
  );
  z-index: 0;
}
.hero-content {
  max-width: 680px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  position: relative;
  z-index: 1;
}
.hero-content.visible {
  opacity: 1;
  transform: none;
}
.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero-headline-year {
  display: block;
  font-size: 0.48em;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 6px;
  opacity: 0.88;
}
.hero-subhead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.2px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}
.badge-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-date {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}
.badge-sep { opacity: 0.35; }
.badge-deadline {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
}


/* ── About ──────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.about-body {
  font-size: 1.125rem;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 1.2em;
}
.about-body:last-child { margin-bottom: 0; }
.about-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about-photo-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ── Photo Gallery ──────────────────────────────────────── */
.photo-gallery {
  overflow: hidden;
  line-height: 0; /* kill whitespace gaps */
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.58));
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-family: var(--sans);
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  opacity: 1;
}


/* ── Schedule ───────────────────────────────────────────── */
.schedule { background: var(--white); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.schedule-table thead th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.schedule-table tbody td {
  padding: 11px 20px;
}
.schedule-table tbody tr:hover { background: var(--cream); }
.schedule-table tr.past td   { opacity: 0.32; }
.schedule-table tr.upcoming  { background: var(--teal-light) !important; }
.schedule-table tr.upcoming td { font-weight: 700; color: var(--navy); }

.upcoming-tag {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
}
.schedule-footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ── Advertise ──────────────────────────────────────────── */
.advertise { background: var(--cream); }
.advertise-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 48px;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.ad-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.ad-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.ad-card-title {
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 18px;
}
.ad-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ad-table th {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: var(--cream);
}
.ad-table td {
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
}
.ad-table tr:last-child td { border-bottom: none; }
.ad-table tbody tr:hover td { background: var(--teal-pale); }

.ad-discount-note {
  margin: 12px 0 48px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.classified-body {
  padding: 16px 18px;
}
.classified-body ul {
  list-style: disc;
  padding-left: 18px;
}
.classified-body li {
  font-size: 0.875rem;
  padding: 4px 0;
  color: var(--text);
  line-height: 1.5;
}

.ad-custom-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.ad-custom-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ad-orientation {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 6px;
}

.ad-file-requirements {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  padding: 28px 32px;
  margin: 24px 0 48px;
}
.ad-file-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.ad-file-requirements p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 10px;
}
.ad-file-requirements p:last-child { margin-bottom: 0; }
.ad-file-requirements a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.advertise-cta {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  text-align: center;
}
.advertise-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}


/* ── Contact ────────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-item {}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.contact-info-value {
  font-size: 0.975rem;
  line-height: 1.5;
}
.contact-info-value a {
  color: var(--teal);
  font-weight: 600;
  transition: color 0.15s;
}
.contact-info-value a:hover { color: var(--teal-hover); }
.contact-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text) !important;
  font-weight: 600;
  transition: color 0.15s;
}
.contact-ig-link:hover { color: var(--teal) !important; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,173,238,0.15);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7585' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
#address-field-wrap { margin-top: 4px; }

.form-submit .btn {
  width: 100%;
  justify-content: center;
}


/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-logo-icon {
  height: 52px;
  width: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 2px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-ig a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-ig a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}


/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 260px; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --pad-section: 60px; }

  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 2px;
    border-top: 1px solid var(--border);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li a { padding: 12px 16px; border-radius: 4px; }
  .nav-ig { border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px; }

  .hero { min-height: 88vh; }
  .hero-badge { gap: 8px; padding: 14px 20px; }

  .nav-weather-li { display: none; }
  .temps-strip { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { display: flex; flex-direction: column; align-items: center; }
  .about-photo img { max-width: 300px; aspect-ratio: 1 / 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  .ad-grid { grid-template-columns: 1fr; }
  .ad-grid-bottom { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  :root { --pad-section: 48px; --pad-page: 18px; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badge { flex-direction: column; text-align: center; gap: 6px; }

  .schedule-table thead th,
  .schedule-table tbody td { padding: 10px 14px; }
}
