:root {
  --ink: #153047;
  --muted: #5d6b7a;
  --deep: #0d4968;
  --sky: #e6f7ff;
  --sky-strong: #8fdfff;
  --sun: #ffc845;
  --coral: #ff6f59;
  --green: #58b96c;
  --violet: #7a58d6;
  --paper: #ffffff;
  --soft: #f7fbfd;
  --line: #d7e6ee;
  --shadow: 0 18px 45px rgba(21, 48, 71, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem max(1rem, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.mobile-menu {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  background: var(--deep);
  border: 3px solid var(--sun);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-weight: 700;
  color: var(--deep);
}

.nav-links a,
.header-phone,
.button {
  text-decoration: none;
}

.nav-links a {
  padding: 0.45rem 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--coral);
}

.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border: 2px solid var(--deep);
  border-radius: 8px;
  color: var(--deep);
  font-weight: 900;
  white-space: nowrap;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 2px solid var(--deep);
  border-radius: 8px;
  color: var(--deep);
  background: var(--paper);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 22px;
  height: 3px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 1rem;
  width: min(280px, calc(100vw - 2rem));
  display: grid;
  gap: 0.3rem;
  padding: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.75rem;
  color: var(--deep);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: var(--sky);
}

.mobile-menu-panel .mobile-phone {
  justify-content: center;
  margin-top: 0.3rem;
  color: #392900;
  background: var(--sun);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("assets/site/hero-activity.jpg") center 42% / cover no-repeat;
}

.hero-overlay {
  z-index: -2;
  background: rgba(10, 40, 58, 0.58);
}

.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}

.hero-logo {
  width: min(440px, 82vw);
  margin-bottom: 1.25rem;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.02;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: #f2fbff;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 900;
}

.button-primary {
  background: var(--sun);
  color: #392900;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffdb70;
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.quick-facts {
  width: min(1180px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
}

.fact {
  min-height: 118px;
  padding: 1.05rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--sky-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fact:nth-child(2) {
  border-top-color: var(--sun);
}

.fact:nth-child(3) {
  border-top-color: var(--coral);
}

.fact:nth-child(4) {
  border-top-color: var(--green);
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section h2,
.tour-band h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.1;
}

.section p,
.tour-band p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: start;
}

.intro-grid > div:first-child p {
  max-width: 580px;
  margin: 1.2rem 0 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.feature,
.trust-grid article {
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.feature h3,
.trust-grid h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.16rem;
}

.feature p,
.trust-grid p {
  margin: 0;
}

.feature-dot {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
}

.feature-dot.orange {
  background: var(--coral);
}

.feature-dot.blue {
  background: var(--sky-strong);
}

.feature-dot.green {
  background: var(--green);
}

.spaces {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 380px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.section-heading p {
  margin: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-auto-rows: 285px;
  gap: 0.9rem;
}

.photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
}

.photo-card.large {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.55rem 0.7rem;
  color: var(--paper);
  background: rgba(10, 40, 58, 0.78);
  border-radius: 6px;
  font-weight: 900;
}

.day {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.day-copy p {
  margin: 1rem 0 0;
}

.day-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.day-list li {
  padding-left: 1.15rem;
  border-left: 5px solid var(--sun);
  font-weight: 750;
}

.day-list li:nth-child(2) {
  border-left-color: var(--coral);
}

.day-list li:nth-child(3) {
  border-left-color: var(--green);
}

.day-list li:nth-child(4) {
  border-left-color: var(--violet);
}

.portrait-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.portrait-row img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.tour-band {
  width: min(1180px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 1rem auto 0;
  padding: 2rem;
  color: var(--paper);
  background: var(--deep);
  border-radius: 8px;
}

.tour-band p {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: #dff5ff;
}

.tour-band .eyebrow {
  color: var(--sun);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy p {
  margin: 1rem 0 0;
}

.contact-panel {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.contact-panel dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 58px;
  padding: 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel dt {
  color: var(--deep);
  font-weight: 900;
}

.contact-panel dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-panel a {
  color: var(--deep);
}

.blank-line {
  display: block;
  width: min(100%, 420px);
  height: 24px;
  border-bottom: 2px solid #8caabd;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1rem, calc((100% - 1180px) / 2));
  color: var(--paper);
  background: #10283c;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: var(--paper);
}

@media (max-width: 960px) {
  .site-header {
    align-items: center;
  }

  .nav-links {
    gap: 0.95rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .quick-facts,
  .feature-list,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .section-heading,
  .day,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .portrait-row img {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    flex-wrap: nowrap;
    padding: 0.7rem 1rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .nav-links,
  .header-phone {
    display: none;
  }

  .mobile-menu {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero {
    min-height: 600px;
    align-items: start;
  }

  .hero-overlay {
    background: rgba(10, 40, 58, 0.66);
  }

  .hero-content {
    padding: 2.1rem 0 3rem;
  }

  .hero-logo {
    width: min(100%, 360px);
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.42rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .tour-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-facts,
  .feature-list,
  .trust-grid,
  .portrait-row {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section h2,
  .tour-band h2 {
    font-size: 2rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .photo-card.large {
    grid-row: span 1;
  }

  .portrait-row img {
    height: 360px;
  }

  .contact-panel dl > div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 0.9rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .fact {
    min-height: 100px;
  }
}
