  :root {
    --navy: #1A2452;
    --navy-deep: #0A0D26;
    --navy-mid: #212B5E;
    --green: #6FAF3E;
    --green-deep: #557F30;
    --paper: #131A45;
    --ink: #F2F0E6;
    --tan: #B98655;
    --tan-soft: #212B5E;
    --white: #FFFFFF;
    --font-head: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.55;
    overflow-x: hidden;
  }

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

  .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
  }

  h1, h2, h3, .brand {
    font-weight: 600;
  }

  /* ---------- FLOATING CTA ---------- */
  .floating-cta {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  }
  .floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  @media (max-width: 860px) {
    .floating-cta { bottom: 18px; right: 18px; padding: 12px 20px; font-size: 0.88rem; }
  }

  /* ---------- ANNOUNCEMENT BANNER ---------- */
  .announce-bar {
    background: var(--green);
    color: var(--navy-deep);
    text-align: center;
    padding: 11px 20px;
    font-size: 0.92rem;
    font-weight: 600;
  }
  .announce-bar a {
    color: var(--navy-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ---------- NAV ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(19,26,69,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    text-decoration: none;
  }
  .brand .mark {
    width: 58px; height: 58px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
  }
  .brand span.h { color: var(--green); }

  nav ul {
    display: flex;
    gap: 34px;
    list-style: none;
  }
  nav a.navlink {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease;
  }
  nav a.navlink:hover { color: var(--green); }

  nav ul li a[title="Gallery"] { font-size: 1.15rem; line-height: 1; }

  .nav-toggle-checkbox { display: none; }
  .nav-toggle-label {
    display: none;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    padding: 4px 8px;
  }

  .nav-item-dropdown { position: relative; }
  .nav-item-dropdown > .navlink::after { content: ' ▾'; font-size: 0.7em; opacity: 0.7; }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -14px;
    margin-top: 14px;
    background: var(--paper);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  }
  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 3px;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.92rem;
  }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--green); }

  .btn {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    font-family: var(--font-body);
  }
  .btn-primary { background: var(--green); color: var(--navy-deep); }
  .btn-primary:hover { background: var(--white); color: var(--navy-deep); }
  .btn-ghost { border-color: var(--white); color: var(--white); }
  .btn-ghost:hover { background: var(--white); color: var(--navy-deep); }

  /* ---------- HERO ---------- */
  header.hero {
    position: relative;
    padding: 96px 0 60px;
    overflow: hidden;
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--green);
  }
  .hero p.lede {
    margin-top: 22px;
    font-size: 1.12rem;
    max-width: 46ch;
    color: #C7CBE0;
  }
  .hero .cta-row {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero .stats {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 30px;
  }
  .hero .stats div strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--green);
  }
  .hero .stats div span {
    font-size: 0.85rem;
    color: #9FA4C4;
  }

  .hero-photo {
    position: relative;
    z-index: 2;
  }
  .hero-photo .frame {
    aspect-ratio: 4/5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 14px 18px 0 var(--tan-soft);
  }
  .hero-photo .frame img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero-photo .tag {
    position: absolute;
    bottom: 18px; left: 18px; right: 18px;
    background: rgba(18,23,59,0.85);
    color: var(--white);
    padding: 14px 16px;
    border-radius: 3px;
    font-size: 0.88rem;
  }
  .hero-photo .tag strong { color: var(--green); font-family: var(--font-head); }

  .home-video {
    margin: 0 0 90px;
  }
  .home-video video {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    background: var(--navy-deep);
  }

  /* ---------- MISSION (asymmetric) ---------- */
  section.mission {
    padding: 88px 0;
  }
  .mission .wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }
  .mission-photo {
    margin-top: 24px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 360px;
  }
  .mission-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mission h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1.15;
  }
  .mission .body p {
    font-size: 1.02rem;
    margin-bottom: 18px;
    color: #D5D8EA;
  }
  .mission .pillars {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .pillar {
    border-left: 3px solid var(--green);
    padding-left: 14px;
  }
  .pillar h3 {
    font-family: var(--font-head);
    font-size: 1.02rem;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .pillar p { font-size: 0.9rem; color: #A9AECB; margin: 0; }

  /* ---------- NEXT WALK PANEL ---------- */
  section.nextwalk {
    background: var(--tan-soft);
    padding: 70px 0;
  }
  .nextwalk .panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
    align-items: center;
    background: var(--white);
    border-radius: 4px;
    padding: 36px 40px;
    box-shadow: 0 1px 0 rgba(26,36,82,0.08);
  }
  .nextwalk .date-block {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 34px;
  }
  .nextwalk .date-block .day {
    font-family: var(--font-head);
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1;
  }
  .nextwalk .date-block .mon {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
    margin-top: 4px;
  }
  .nextwalk .info h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }
  .nextwalk .info p { color: #57563F; font-size: 0.96rem; }
  .nextwalk .info p span { color: var(--navy); font-weight: 600; }

  /* ---------- CALENDAR PREVIEW ---------- */
  section.calendar {
    padding: 90px 0;
  }
  .calendar .head {
    max-width: 60ch;
    margin-bottom: 40px;
  }
  .calendar h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--ink);
  }
  .calendar p.sub { margin-top: 12px; color: #A9AECB; font-size: 1.02rem; }

  .cal-mock {
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
  }
  .cal-mock .cal-head {
    background: var(--navy);
    color: var(--white);
    padding: 16px 22px;
    font-family: var(--font-head);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cal-mock .cal-body {
    padding: 22px;
  }
  .cal-row {
    display: grid;
    grid-template-columns: 90px 1fr 130px;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: center;
  }
  .cal-row:last-child { border-bottom: none; }
  .cal-row .d {
    font-family: var(--font-head);
    color: var(--navy);
    font-weight: 600;
  }
  .cal-row .loc { color: #57563F; font-size: 0.92rem; }
  .cal-row .loc strong { color: var(--navy-deep); font-weight: 600; display:block; font-size: 0.98rem; }
  .cal-row .t { color: var(--navy); font-size: 0.88rem; text-align: right; font-weight: 600; }

  /* ---------- GALLERY STRIP ---------- */
  section.gallery { padding: 0 0 90px; }
  .gallery .head { max-width: 60ch; margin: 0 0 34px; }
  .gallery h2 { font-family: var(--font-head); font-size: 2rem; color: var(--ink); }
  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
  }
  .gphoto {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }
  .gphoto img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .gphoto:hover img { transform: scale(1.04); }
  .gphoto.wide { grid-column: span 2; }

  /* ---------- VIDEOS ---------- */
  section.videos { padding: 0 0 90px; }
  .videos .head { max-width: 60ch; margin: 0 0 34px; }
  .videos h2 { font-family: var(--font-head); font-size: 2rem; color: var(--ink); }
  .videos p.sub { margin-top: 10px; color: #A9AECB; }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .video-grid video {
    width: 100%;
    border-radius: 4px;
    background: var(--navy-deep);
    aspect-ratio: 9/16;
    object-fit: cover;
  }

  /* ---------- SIGNUP BAND ---------- */
  section.signup {
    background: var(--navy-deep);
    color: var(--white);
    padding: 84px 0;
  }
  .signup .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .signup h2 {
    font-family: var(--font-head);
    font-size: 2.1rem;
    line-height: 1.15;
  }
  .signup p { margin-top: 14px; color: #c7cae0; max-width: 42ch; }
  .signup form {
    display: flex;
    gap: 10px;
  }
  .signup input[type="email"], .signup input[type="text"] {
    flex: 1;
    padding: 14px 16px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
  }
  .signup input::placeholder { color: #7A80A8; }
  .signup .fields { display: flex; flex-direction: column; gap: 10px; }
  .signup .fields .row { display: flex; gap: 10px; }
  .signup small { display: block; margin-top: 10px; color: #7A80A8; font-size: 0.8rem; }

  /* ---------- CONTACT ---------- */
  section.contact { padding: 90px 0; }
  .contact .wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }
  .contact h2 { font-family: var(--font-head); font-size: 2rem; color: var(--ink); }
  .contact p.sub { margin-top: 14px; color: #A9AECB; max-width: 40ch; }
  .contact .details { margin-top: 30px; }
  .contact .details div { margin-bottom: 16px; }
  .contact .details .k { font-size: 0.8rem; color: var(--green); font-weight: 600; }
  .contact .details .v { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }

  .contact-form {
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 30px;
  }
  .contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    margin-top: 16px;
  }
  .contact-form label:first-child { margin-top: 0; }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--paper);
  }
  .contact-form textarea { min-height: 100px; resize: vertical; }
  .contact-form button { margin-top: 22px; width: 100%; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--navy-deep);
    color: #7A80A8;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer .fbrand { color: var(--white); font-family: var(--font-head); font-weight: 600; display: flex; align-items: center; gap: 10px; }
  footer .fbrand img { width: 46px; height: 46px; border-radius: 50%; }
  footer .fbrand .h { color: var(--green); }
  footer ul { display: flex; gap: 24px; list-style: none; font-size: 0.88rem; }
  footer a { color: #7A80A8; text-decoration: none; }
  footer a:hover { color: var(--white); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-photo { order: -1; max-width: 280px; }
    .mission .wrap { grid-template-columns: 1fr; }
    .mission .pillars { grid-template-columns: 1fr; }
    .nextwalk .panel { grid-template-columns: 1fr; text-align: center; }
    .nextwalk .date-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0 0 18px; }
    .gallery-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .gphoto.wide { grid-column: span 2; }
    .video-grid { grid-template-columns: 1fr; }
    .signup .wrap { grid-template-columns: 1fr; }
    .contact .wrap { grid-template-columns: 1fr; }
    nav ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--paper);
      flex-direction: column;
      gap: 4px;
      padding: 14px 28px 22px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 16px 32px rgba(0,0,0,0.4);
    }
    .nav-toggle-checkbox:checked ~ ul { display: flex; }
    .nav-toggle-label { display: block; margin-left: auto; margin-right: 16px; }
    nav li { width: 100%; }
    nav a.navlink { display: block; padding: 10px 0; }
    .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      background: transparent;
      min-width: 0;
      padding: 0 0 0 14px;
      margin-top: 0;
    }
    .nav-item-dropdown > .navlink::after { content: ''; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

/* ---------- PAGE HERO (Gallery / Walks / Contact) ---------- */
.page-hero {
  padding: 130px 0 50px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
}
.page-hero p.sub {
  margin-top: 14px;
  color: #A9AECB;
  font-size: 1.05rem;
  max-width: 56ch;
}
.page-hero-photo {
  margin-top: 34px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 21/7;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .page-hero-photo { aspect-ratio: 4/3; }
}

/* ---------- FULL GALLERY GRID ---------- */
.full-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
  padding-bottom: 90px;
}
.full-gallery .gphoto.tall { grid-row: span 2; }

/* ---------- CALENDAR EMBED SLOT ---------- */
.calendar-embed-slot {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  min-height: 600px;
}
.calendar-embed-slot iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}
.calendar-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #A9AECB;
  background: var(--tan-soft);
  padding: 14px 18px;
  border-radius: 3px;
}

nav a.navlink.active { color: var(--green); font-weight: 700; }

@media (max-width: 860px) {
  .full-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .full-gallery .gphoto.tall { grid-row: span 1; }
  .page-hero { padding: 110px 0 40px; }
}
