:root {
  --navy: #0d163f;
  --deep-blue: #162a74;
  --royal: #2b2fcf;
  --ice: #d9e8ee;
  --soft-blue: #8db8c9;
  --silver: #c9ced6;
  --silver-2: #eef2f6;
  --white: #ffffff;
  --text: #111827;
  --muted: #5f6b7a;
  --border: rgba(13, 22, 63, 0.12);
  --shadow: 0 20px 50px rgba(13, 22, 63, 0.12);
  --radius: 22px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fc 0%, #edf3f7 100%);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(13, 22, 63, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(13, 22, 63, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.brand-sub {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--soft-blue));
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(141, 184, 201, 0.35), transparent 30%),
    linear-gradient(135deg, #f7fafc 0%, #e8f0f5 45%, #f9fbfd 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13, 22, 63, 0.04), transparent 35%),
    linear-gradient(300deg, rgba(43, 47, 207, 0.04), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 206, 214, 0.45);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.hero-text {
  margin-top: 24px;
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 22, 63, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border: 1px solid rgba(13, 22, 63, 0.12);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 600;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 22, 63, 0.08);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(233, 240, 245, 0.9));
  border: 1px solid rgba(13, 22, 63, 0.08);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  min-height: 480px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.center-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  max-width: 62ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(13, 22, 63, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 22, 63, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: var(--white);
  font-weight: 800;
}

.card h3,
.feature h3,
.panel-header h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card p,
.feature p,
.about-copy p,
.contact-copy p,
.panel-header p {
  color: var(--muted);
}

.about {
  background: linear-gradient(180deg, rgba(201, 206, 214, 0.16), rgba(255, 255, 255, 0.5));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #0d163f, #243990);
  border-radius: 30px;
  padding: 16px;
  overflow: hidden; /* 🔥 THIS IS THE KEY FIX */
  display: flex;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 18px;
}

.about-copy p + p {
  margin-top: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--deep-blue);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(233, 240, 245, 0.75));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(13, 22, 63, 0.05);
}

.book-contact {
  background:
    radial-gradient(circle at top left, rgba(141, 184, 201, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(233,240,245,0.9));
}

.forms-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.form-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-header {
  margin-bottom: 22px;
}

.booking-embed-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(13, 22, 63, 0.08);
  background: var(--white);
}

.booking-embed-wrap iframe {
  display: block;
  width: 100%;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-item + .contact-item {
  margin-top: 22px;
}

.contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-item a {
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  padding: 24px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-top {
  color: var(--silver);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 1100px) {
  .forms-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .feature-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-card {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(13, 22, 63, 0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .hero {
    padding-top: 70px;
  }

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

  .btn {
    width: 100%;
  }

  .card,
  .feature,
  .contact-card,
  .form-panel {
    padding: 22px;
  }

  .hero-image {
    min-height: 320px;
  }
}