:root {
  --navy: #003049;
  --gold: #D4A843;
  --gold-light: #F2E6C5;
  --verde: #3A6B4C;
  --sky: #4A90A4;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text: #333340;
  --text-light: #6B6B7B;
  --border: #E0DDD6;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 48, 73, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-brand span { color: var(--gold); }
.nav-fleur { height: 32px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-join {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-join:hover {
  background: #C49A35 !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

.hero {
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(58, 107, 76, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(74, 144, 164, 0.15) 0%, transparent 40%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 8px, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 9px);
  background-size: 40px 40px;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .gold { color: var(--gold); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-gold { background: var(--gold); color: var(--navy); }

.btn-gold:hover {
  background: #C49A35;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(0, 48, 73, 0.35);
}

.btn-outline-navy:hover {
  border-color: var(--navy);
  background: rgba(0, 48, 73, 0.06);
}

.hero-adventure-on {
  max-width: 220px;
  height: auto;
  margin-top: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

.hero-adventure-on:hover { opacity: 1; transform: scale(1.03); }

.adventure-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--navy);
}

.adventure-strip img { width: 100%; height: auto; display: block; opacity: 0.6; }

/* JOIN CTA BANNER */
.join-banner {
  background: var(--gold);
  padding: 2.5rem 2rem;
  text-align: center;
}

.join-banner .container { max-width: 728px; margin: 0 auto; }

/* Top banner strip. Extra top padding clears the fixed nav. */
.top-banner {
  background: var(--navy);
  padding: calc(60px + 1.5rem) 2rem 0.5rem;
  text-align: center;
}

.top-banner-ad {
  display: block;
  max-width: 728px;
  margin: 0 auto;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-banner-ad:hover,
.top-banner-ad:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.top-banner-ad img { width: 100%; height: auto; display: block; }

@media (prefers-reduced-motion: reduce) {
  .top-banner-ad { transition: none; }
  .top-banner-ad:hover, .top-banner-ad:focus-visible { transform: none; }
}

.join-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.join-banner p {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.btn-navy { background: var(--navy); color: var(--white); }

.btn-navy:hover {
  background: #00405F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 48, 73, 0.3);
}

.info-section { padding: 5rem 2rem; background: var(--white); }
.info-section .container { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-text { font-size: 1.1rem; color: var(--text-light); max-width: 640px; line-height: 1.8; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}

.info-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.info-card + .info-card { margin-top: 1.25rem; }

.info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.icon-when { background: rgba(74, 144, 164, 0.12); color: var(--sky); }
.icon-who { background: rgba(58, 107, 76, 0.12); color: var(--verde); }
.icon-where { background: rgba(212, 168, 67, 0.15); color: #B8922F; }

.info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.info-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

.info-card a { color: var(--sky); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.info-card a:hover { color: var(--navy); }

/* CONTACT SECTION */
.contact-section {
  padding: 5rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.contact-section .container { max-width: 1000px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 48, 73, 0.08);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }

.contact-card p a {
  color: var(--sky);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 144, 164, 0.35);
}

.contact-card p a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.contact-card .btn {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}

/* RESOURCES SECTION */
.resources-section {
  padding: 4rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.resources-section .container { max-width: 1000px; margin: 0 auto; text-align: center; }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.resource-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.resource-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 48, 73, 0.08);
}

.resource-link h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.resource-link p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

.resource-link .arrow {
  margin-top: 0.75rem;
  color: var(--sky);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

/* CONSTRUCTION NOTICE */
.construction-notice {
  background: linear-gradient(135deg, var(--verde), #2D5A3F);
  padding: 2rem 2rem;
  text-align: center;
}

.construction-notice .container { max-width: 700px; margin: 0 auto; }

.construction-notice p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.construction-notice a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content { max-width: 600px; margin: 0 auto; }

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-fleur { height: 56px; width: auto; opacity: 0.85; }

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--gold); }
footer p { font-size: 0.85rem; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(0, 48, 73, 0.98);
    padding: 1.5rem 2rem; gap: 1.25rem;
  }
  .nav-join { text-align: center; }
  .top-banner { padding: calc(60px + 1rem) 1rem 0.25rem; }
  .hero { min-height: auto; padding: 2.5rem 1.5rem 4rem; }
  .hero h1 { font-size: 2rem; }
  .hero-adventure-on { max-width: 180px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-outline { margin-top: 0; }
  .info-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .resources-grid { grid-template-columns: 1fr; }
  .info-section, .contact-section { padding: 3rem 1.5rem; }
  .footer-logos { gap: 1.25rem; }
  .footer-fleur { height: 44px; }
}

/* ---------------------------------------------------------
   NEW MEMBERS PAGE
   --------------------------------------------------------- */

.page-header {
  background: var(--navy);
  padding: calc(60px + 3.5rem) 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(58, 107, 76, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.12) 0%, transparent 50%);
}

.page-header .container { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; }

.prose-section { padding: 4rem 2rem; background: var(--white); }
.prose-section:nth-of-type(even) { background: var(--cream); }
.prose-section .container { max-width: 820px; margin: 0 auto; }
.prose-section p { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.prose-section p:last-child { margin-bottom: 0; }
.prose-section a { color: var(--sky); font-weight: 600; }
.prose-section a:hover { color: var(--navy); }

/* Den table */
.den-table { width: 100%; border-collapse: collapse; margin-top: 1.75rem; }

.den-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  text-align: left;
  padding: 0 0 0.75rem;
  border-bottom: 2px solid var(--border);
}

.den-table td { padding: 0.9rem 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.den-table td:first-child { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); white-space: nowrap; padding-right: 1.5rem; }
.den-table td:nth-child(2) { color: var(--text-light); white-space: nowrap; padding-right: 1.5rem; }
.den-table td:last-child { color: var(--text-light); font-size: 0.95rem; }

/* Numbered steps */
.steps { list-style: none; counter-reset: step; margin-top: 1.75rem; }

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: 1.75rem;
}

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

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.15rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.steps p { margin-bottom: 0; }

/* Checklist */
.checklist { list-style: none; margin-top: 1.5rem; }

.checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--verde);
}

.checklist strong { color: var(--navy); font-weight: 600; }

/* Callout */
.callout {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 2px 12px rgba(0, 48, 73, 0.06);
}

.prose-section:nth-of-type(even) .callout { background: var(--white); }
.prose-section:nth-of-type(odd) .callout { background: var(--cream); }

.callout h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.callout p { font-size: 0.98rem; margin-bottom: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.4rem 0; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-item h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.faq-item p { font-size: 0.98rem; margin-bottom: 0; }

/* Page CTA */
.page-cta { background: var(--gold); padding: 3rem 2rem; text-align: center; }
.page-cta .container { max-width: 640px; margin: 0 auto; }

.page-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.page-cta p { color: var(--navy); font-size: 1.02rem; margin-bottom: 1.75rem; }

.page-cta .btn + .btn { margin-left: 0.75rem; }

@media (max-width: 768px) {
  .page-header { padding: calc(60px + 2.5rem) 1.5rem 2.5rem; }
  .prose-section { padding: 3rem 1.5rem; }
  .den-table td:last-child { font-size: 0.9rem; }
  .page-cta .btn { display: block; width: 100%; }
  .page-cta .btn + .btn { margin-left: 0; margin-top: 0.75rem; }
}

/* ---------------------------------------------------------
   EVENTS PAGE
   --------------------------------------------------------- */

.calendar-wrap {
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 48, 73, 0.07);
  margin-top: 1.75rem;
}

.calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
}

.calendar-fallback {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.subscribe-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.35rem 1.5rem;
}

.prose-section:nth-of-type(even) .highlight-card { background: var(--white); }

.highlight-date {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.4rem;
}

.highlight-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.highlight-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .calendar-wrap iframe { height: 520px; }
  .subscribe-row .btn { width: 100%; text-align: center; }
}
