:root {
  --navy: #0f2a44;
  --navy-deep: #081a2b;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --cream: #f7f4ee;
  --white: #ffffff;
  --slate: #4a5d73;
  --slate-light: #8fa3b8;
  --border: rgba(15, 42, 68, 0.12);
  --shadow: 0 18px 50px rgba(8, 26, 43, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --max: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-underline-offset: 0.18em; }
a:hover { color: var(--gold); }
a.btn:hover,
button.btn:hover {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.75rem 1rem;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 45%, var(--navy) 46%);
  box-shadow: inset 0 0 0 3px var(--navy);
}

.brand-text em { font-style: normal; color: var(--gold); font-weight: 600; }

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a {
  display: block;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 999px;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(15, 42, 68, 0.06);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy-deep) !important; }

main { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #163552 100%);
  color: var(--white);
  padding: 4.5rem 1.25rem 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero .eyebrow,
.section-white .eyebrow {
  color: #9a7b1a;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
a.btn:hover,
button.btn:hover { transform: translateY(-1px); }

.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
}

.btn-outline,
a.btn-outline,
button.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover,
a.btn-outline:hover,
button.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark,
a.btn-dark,
button.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover,
a.btn-dark:hover,
button.btn-dark:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-text,
a.btn-text,
button.btn-text {
  background: transparent;
  border: none;
  color: var(--navy);
  padding-inline: 0.5rem;
}
.btn-text:hover,
a.btn-text:hover,
button.btn-text:hover {
  color: var(--gold);
  background: transparent;
}

/* Override prose/global link colours inside buttons */
.prose a.btn,
.prose a.btn-dark,
.prose a.btn-primary,
.prose a.btn-outline,
.prose a.btn-text {
  font-weight: 600;
}
.prose a.btn-dark { color: var(--white); }
.prose a.btn-dark:hover { color: var(--navy-deep); }
.prose a.btn-primary { color: var(--navy-deep); }
.prose a.btn-primary:hover { color: var(--navy-deep); }

/* Light-surface outline buttons (cookie banner, cards) */
.cookie-banner .btn-outline,
.contact-panel .btn-outline,
.package-card .btn-outline,
.page-hero .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
.cookie-banner .btn-outline:hover,
.contact-panel .btn-outline:hover,
.package-card .btn-outline:hover,
.page-hero .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.cta-band .btn-primary {
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.package-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.section {
  padding: 4.5rem 1.25rem;
}

.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-white { background: var(--white); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: #3a5068;
  max-width: 68ch;
  line-height: 1.75;
}
.section-dark .section-head p { color: rgba(255,255,255,0.88); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(8, 26, 43, 0.04);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #1a3f5f);
  margin-bottom: 1rem;
  position: relative;
}
.card-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.card-media {
  margin: -0.15rem -0.15rem 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: #3a5068;
  font-size: 1rem;
  line-height: 1.65;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-block img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.feature-split img,
.feature-split .media-block img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.figure-caption {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a6178;
}

.section-dark .figure-caption { color: rgba(255,255,255,0.72); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
}

.stat span { font-size: 0.92rem; color: rgba(255,255,255,0.75); }

.cta-band {
  background: linear-gradient(90deg, var(--navy), #163552);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 3.5rem 1.25rem 2.5rem;
  background: linear-gradient(180deg, #e8e2d6 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero.has-visual {
  padding-bottom: 0;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.page-hero-grid .page-hero-visual {
  margin-top: 0;
}

.page-hero-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  max-width: 68ch;
  color: #3a5068;
  line-height: 1.75;
}

.content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.content-wrap.narrow { max-width: 780px; }

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
  color: var(--navy);
}

.prose h3 { font-size: 1.12rem; margin: 1.5rem 0 0.5rem; color: var(--navy); }
.prose p,
.prose li {
  color: #3a5068;
  max-width: 68ch;
  line-height: 1.75;
}
.prose ul, .prose ol { padding-left: 1.25rem; max-width: 72ch; }
.prose a:not(.btn) { color: var(--navy); font-weight: 500; }

.text-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #3a5068;
  max-width: 68ch;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.15);
  transform: translateY(-4px);
}

.package-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0.35rem 0 1rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.package-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
  color: #3a5068;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-panel address {
  font-style: normal;
  line-height: 1.7;
}

.form-field { margin-bottom: 1rem; }

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--cream);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-required { font-weight: 400; color: var(--slate-light); font-size: 0.9rem; }

.form-notice {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.form-notice-success {
  background: #e8f5ea;
  border: 1px solid #9fd0a7;
  color: #1f4d28;
}

.map-section { margin-top: 2rem; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.map-placeholder {
  padding: 2rem;
  text-align: center;
}

.map-placeholder p { color: var(--slate); margin-bottom: 1rem; }

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.62rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}

.timeline-item h3 { margin: 0 0 0.35rem; font-size: 1.08rem; color: var(--navy); }
.timeline-item p { margin: 0; color: #3a5068; line-height: 1.7; max-width: 68ch; }

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding: 3.5rem 1.25rem 2rem;
}

.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.footer-tagline { margin: 0; font-size: 0.95rem; }

.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.85rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-address { margin-bottom: 0.75rem; }
.footer-hours { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-note { margin-top: 0.35rem; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(8, 26, 43, 0.12);
  padding: 1.25rem;
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-title { margin: 0 0 0.35rem; font-weight: 700; }
.cookie-desc { margin: 0 0 1rem; color: var(--slate); font-size: 0.95rem; }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option p { margin: 0.2rem 0 0; font-size: 0.9rem; color: var(--slate); }

.cookie-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.toggle-switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #c8d2dc;
  position: relative;
  cursor: pointer;
}
.toggle-switch[aria-checked="true"] { background: var(--navy); }
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.15s ease;
}
.toggle-switch[aria-checked="true"]::after { transform: translateX(20px); }

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

@media (max-width: 960px) {
  .hero-inner,
  .feature-split,
  .contact-layout,
  .grid-3,
  .package-grid,
  .footer-top,
  .stats-row,
  .page-hero-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1rem;
    display: none;
  }

  .primary-nav.is-open { display: block; }

  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list a { padding: 0.75rem 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
