:root {
  --navy: #142F45;
  --navy-2: #1F4864;
  --terracotta: #E4603C;
  --terracotta-dark: #C64B2A;
  --teal: #3C7A80;
  --teal-dark: #2C5C61;
  --gold: #D9A441;
  --sand: #F7F2E9;
  --sky: #EAF2F1;
  --white: #FFFFFF;
  --text: #23323F;
  --muted: #5C6B76;
  --border: #E3DFD2;
  --shadow: 0 12px 30px rgba(20, 47, 69, 0.14);
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.15rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--teal); }
a:hover { color: var(--terracotta); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  cursor: pointer;
  white-space: nowrap;
  font-size: .98rem;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(228, 96, 60, 0.35);
}
.btn-primary:hover { background: var(--terracotta-dark); color: var(--white); }

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

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

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.header-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: .2px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-link {
  color: #DCE6EC;
  text-decoration: none;
  font-weight: 600;
  font-size: .94rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 22px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
}
.nav-close svg { width: 18px; height: 18px; }
.nav-close:hover { background: rgba(255,255,255,0.2); }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 60px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 44px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .8rem;
  margin: 0 0 10px;
}
.hero h1 { color: var(--white); margin-bottom: .2em; }
.hero-slogan {
  color: var(--terracotta);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  margin: 0 0 .7em;
}
.hero-intro { color: #DCE6EC; font-size: 1.06rem; max-width: 50ch; margin-bottom: 1.6em; }

.panel-card {
  --pf-row-bg: rgba(255,255,255,0.05);
  --pf-icon-bg: rgba(255,255,255,0.16);
  --pf-icon-color: var(--gold);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(2px);
}
.panel-card h2 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.panel-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.panel-facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 10px;
  background: var(--pf-row-bg);
}
.pf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pf-icon-bg);
  color: var(--pf-icon-color);
}
.pf-icon svg { width: 22px; height: 22px; }
.pf-text { display: flex; flex-direction: column; font-size: .92rem; color: #C7D3DB; }
.pf-text strong { color: var(--white); font-size: .98rem; margin-bottom: 2px; }

.section { padding: 76px 0; }
.section-alt { background: var(--sand); }
.section-alt-2 { background: var(--sky); }
.section-heading-center { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-lede { color: var(--muted); font-size: 1.02rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gallery-trigger {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: default;
  width: 100%;
  height: 100%;
}
.gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 47, 69, 0.8);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
@media (min-width: 761px) {
  .gallery-trigger { cursor: zoom-in; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item:hover .gallery-zoom { opacity: 1; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 33, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { max-width: min(90vw, 980px); max-height: 86vh; margin: 0; }
.lightbox-figure img { max-height: 86vh; width: auto; margin: 0 auto; border-radius: 10px; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: start;
}
.content-grid .panel-card {
  --pf-row-bg: rgba(20,47,69,0.045);
  --pf-icon-bg: rgba(60,122,128,0.14);
  --pf-icon-color: var(--teal);
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.content-grid .panel-card h2 { color: var(--navy); }
.content-grid .pf-text { color: var(--muted); }
.content-grid .pf-text strong { color: var(--navy); }

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 30px;
  padding-left: 6px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 34px;
  bottom: -6px;
  width: 3px;
  background: var(--teal);
}
.timeline-item:last-child::before { display: none; }

.timeline-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.timeline-start .timeline-dot { background: var(--navy-2); }
.timeline-end .timeline-dot { background: var(--navy-2); }
.timeline-highlight .timeline-dot { background: var(--terracotta); }
.timeline-item div strong { color: var(--navy); display: block; margin-bottom: 2px; }
.timeline-item div p { margin: 0; color: var(--muted); font-size: .95rem; }

.highlights-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.check-list, .yes-list, .no-list, .dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li, .yes-list li {
  padding-left: 32px;
  position: relative;
}
.check-list li::before, .yes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.no-list li {
  padding-left: 32px;
  position: relative;
  color: var(--muted);
}
.no-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}
.dot-list li {
  padding-left: 22px;
  position: relative;
}
.dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.highlights-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.includes-grid, .prepare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.includes-card, .prepare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 26px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--teal);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p { color: var(--muted); padding: 0 0 22px; margin: 0; }

.meeting-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.meeting-pin { font-size: 2rem; margin-bottom: 10px; }

.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { color: #C7D3DB; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { justify-content: center; }

.cta-banner-alt {
  background: var(--sky);
  padding: 56px 0;
  text-align: center;
}
.cta-banner-alt p { color: var(--muted); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-banner-alt .btn-row { justify-content: center; }

.reviews-intro {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: -20px auto 40px;
}
.reviews-grid {
  columns: 3;
  column-gap: 24px;
}
.review-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 8px; }
.review-name { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.review-loc { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; margin-top: 2px; }
.review-text { color: var(--text); font-size: .95rem; }
.review-reply {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: .89rem;
  color: var(--muted);
}
.review-reply strong { color: var(--teal); }

.prefooter-cta {
  background: linear-gradient(120deg, var(--navy) 0%, var(--teal) 100%);
  padding: 58px 0;
}
.prefooter-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 34px;
  align-items: center;
}
.prefooter-action { display: flex; justify-content: center; }
.prefooter-action .btn { box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.prefooter-text h2, .prefooter-text p { color: var(--white); }
.prefooter-text p { max-width: 60ch; opacity: .96; margin: 0; }

.site-footer { background: var(--navy); color: #C7D3DB; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: #9FB0BC; margin-top: 14px; }
.footer-nav h3, .footer-contact h3 { color: var(--white); font-family: Georgia, serif; margin-bottom: 16px; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #C7D3DB; text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 6px; }
.footer-contact a { color: var(--gold); text-decoration: none; }
address { font-style: normal; color: #C7D3DB; margin-bottom: 20px; line-height: 1.5; }
.footer-contact .btn { margin-top: 8px; }
.footer-contact a.btn-primary { color: var(--white); }
.footer-contact a.btn-primary:hover { color: var(--white); }
.footer-bottom { padding: 22px 24px; text-align: center; font-size: .85rem; color: #8DA0AD; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(217, 164, 65, 0.4);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 47, 69, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .15s ease;
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-2); }

@media (max-width: 980px) {
  .hero-grid, .content-grid, .highlights-grid, .prefooter-grid {
    grid-template-columns: 1fr;
  }
  .content-grid .panel-card { position: static; }
  .highlights-grid .highlights-card { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid, .prepare-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .hero { padding-top: 40px; text-align: center; }
  .hero-grid { gap: 34px; }
  .eyebrow, .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-intro { max-width: 52ch; }
  .btn-row { justify-content: center; }

  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 28px 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 20px; }
  .nav-link { font-size: 1.05rem; display: block; }
  .nav-close { display: flex; }

  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-zoom { display: none; }

  .includes-grid, .prepare-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav ul, .panel-facts, .footer-contact { align-items: center; }
  .footer-nav ul { align-items: center; }
  .meeting-wrap { padding: 30px 22px; }

  .section { padding: 54px 0; }

  .btn {
    width: min(86vw, 340px);
    padding: 15px 20px;
  }
  .prefooter-action .btn, .footer-contact .btn { width: min(86vw, 340px); }

  .panel-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .panel-facts li { flex-direction: column; text-align: center; gap: 8px; padding: 16px 10px; }
  .pf-text { align-items: center; }
}
