
:root {
  --navy: #163f86;
  --navy-dark: #102f63;
  --teal: #148e9d;
  --teal-dark: #0d6c75;
  --sky: #eaf4fb;
  --mint: #edf8f6;
  --sand: #faf6ef;
  --map: #f2f7fb;
  --text: #1d3449;
  --muted: #5d6f7f;
  --bg: #f5f7fa;
  --card: #ffffff;
  --border: #d8e2ea;
  --shadow: 0 14px 32px rgba(16, 47, 99, 0.08);
  --radius: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  font-size: 18px;
}

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

a {
  color: var(--navy);
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.section {
  padding: 5.5rem 0;
}

.alt-bg {
  background: linear-gradient(180deg, #f7fafc 0%, #f4f7fa 100%);
}

.section-soft-blue {
  background: linear-gradient(180deg, #ffffff 0%, var(--sky) 100%);
}

.section-soft-teal {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint) 100%);
}

.section-soft-sand {
  background: linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
}

.section-soft-map {
  background: linear-gradient(180deg, #ffffff 0%, var(--map) 100%);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 226, 234, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 88px;
}

.brand img {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy-dark);
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--navy-dark);
}

.hero {
  padding: 5.5rem 0 4rem;
  background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: #c9edf0;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 48rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.35rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-primary:hover {
  background: var(--navy-dark);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--navy-dark);
  border: 1px solid var(--border);
}

.button-secondary:hover {
  background: #f7fafc;
}

.section-title-with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title-with-icon.center {
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
}

.icon-badge,
.card-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  border: 1px solid #d8e5fb;
  box-shadow: 0 8px 20px rgba(22, 63, 134, 0.08);
}

.icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.icon-badge svg,
.card-icon svg {
  width: 32px;
  height: 32px;
}

.media-frame {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 226, 234, 0.75);
  min-height: 320px;
}

.hero-image-card {
  position: relative;
  min-height: 420px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 226, 234, 0.75);
}

.hero-image-card img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #eff5fb 0%, #e8f6f4 100%);
  color: var(--navy-dark);
  font-weight: 700;
}

.media-frame.image-missing .media-frame-fallback,
.hero-image-card.image-missing .media-frame-fallback {
  display: flex;
}

.section-heading {
  margin-bottom: 2rem;
}

.card-grid.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card,
.price-card,
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(16, 47, 99, 0.04);
}

.icon-card {
  padding-top: 1.6rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.pricing-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.price span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-sub {
  color: var(--muted);
  margin-bottom: 0;
}

.text-link {
  font-weight: 700;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card ul {
  margin: 0 0 1rem;
}

.service-price {
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.book-visit-section {
  padding-top: 2rem;
  padding-bottom: 5.5rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.booking-list {
  display: grid;
  gap: 1rem;
}

.booking-item {
  display: block;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
}

.booking-item:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.booking-item-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 2rem;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-column,
  .cta-card,
  .pricing-highlight-grid,
  .service-menu-grid,
  .card-grid.three-up {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 1rem;
    right: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero-grid,
  .two-column,
  .cta-card,
  .pricing-highlight-grid,
  .service-menu-grid,
  .card-grid.three-up {
    grid-template-columns: 1fr;
  }

  .section-title-with-icon {
    align-items: flex-start;
  }

  .section-title-with-icon.center {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-image-card {
    min-height: 300px;
  }

  .brand img {
    height: 48px;
  }

  .header-inner {
    min-height: 80px;
  }

  .info-card,
  .price-card,
  .service-card,
  .cta-card,
  .booking-item,
  .hero-image-card,
  .media-frame {
    border-radius: 20px;
  }
}
