:root {
  --bg: #ffffff;
  --bg-2: #f3f6fb;
  --bg-3: #e9eff8;
  --surface: #ffffff;
  --navy: #013281;
  --navy-deep: #011f55;
  --ink: #0a1f4a;
  --ink-muted: #5a6783;
  --ink-soft: #8493ad;
  --accent: #1E87FF;
  --accent-hover: #0a6fe6;
  --accent-soft: #e3f0ff;
  --line: rgba(15, 31, 75, 0.08);
  --line-strong: rgba(15, 31, 75, 0.14);
  --shadow-sm: 0 1px 2px rgba(15, 31, 75, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 31, 75, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 31, 75, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* NAV */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  position: relative;
  gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo svg {
  height: 38px; width: auto; display: block;
}
nav#primary-nav { display: flex; align-items: center; gap: 32px; }
nav ul { display: flex; gap: 32px; list-style: none; }
nav a {
  font-size: 14px; color: var(--ink-muted); font-weight: 500;
  transition: color .15s;
}
nav a:hover { color: var(--ink); }
nav a.active { color: var(--navy); font-weight: 600; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 13px 24px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .1s, background .15s, box-shadow .15s;
  border: none; cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 135, 255, 0.25);
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(30, 135, 255, 0.32); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn-outline:hover { background: var(--bg-2); border-color: var(--navy); }
.nav .nav-cta { padding: 11px 20px; font-size: 13px; min-height: 0; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-inner .nav-cta { display: none; }
  nav#primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 8px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  nav#primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav#primary-nav ul {
    flex-direction: column;
    gap: 0;
  }
  nav#primary-nav ul li { width: 100%; }
  nav#primary-nav ul a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--ink);
  }
  nav#primary-nav ul li:last-child a { border-bottom: none; }
  .nav-cta-mobile {
    display: inline-block !important;
    width: 100%;
    margin-top: 8px;
  }
}

/* HERO (light, two-column) */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 100% 0%, var(--accent-soft), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, #eaf2ff, transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-text h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 22px;
}
.hero-text h1 span.accent { color: var(--accent); }
.hero-text p.lead {
  font-size: 19px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 135, 255, 0.85), rgba(1, 50, 129, 0.95)),
    var(--accent);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  color: #ffffff;
  position: relative;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 300px at 30% 20%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .placeholder-text {
  text-align: center; padding: 24px;
  font-size: 13px;
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-size: 28px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px; color: var(--ink-muted);
  margin-top: 4px;
}
@media (max-width: 540px) {
  .hero { padding: 56px 0 72px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* PAGE HEADER */
.page-header {
  padding: 80px 0 56px;
  background:
    radial-gradient(900px 400px at 100% 0%, var(--accent-soft), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 800px;
  color: var(--navy-deep);
}
.page-header p {
  color: var(--ink-muted); font-size: 18px;
  max-width: 680px;
}

/* SECTIONS */
section { padding: 96px 0; }
section.alt { background: var(--bg-2); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy-deep);
}
.section-head p {
  color: var(--ink-muted); font-size: 18px;
}

/* SERVICES */
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .15s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 20px; font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy-deep);
}
.service-card p {
  color: var(--ink-muted); font-size: 14.5px; line-height: 1.65;
}
.service-card ul {
  margin-top: 14px; padding-left: 18px;
  color: var(--ink-muted); font-size: 14px; line-height: 1.75;
}
.service-card ul li::marker { color: var(--accent); }

/* SERVICE FEATURED (with image placeholder) */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.service-feature:last-child { margin-bottom: 0; }
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .service-feature { grid-template-columns: 1fr; gap: 32px; }
  .service-feature.reverse { direction: ltr; }
}
.service-photo {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--accent-soft), #d6e6fb);
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--line);
  font-style: italic;
  box-shadow: var(--shadow-sm);
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-feature h3 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700; color: var(--navy-deep);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.service-feature p {
  color: var(--ink-muted); font-size: 16px;
  margin-bottom: 14px;
}
.service-feature ul {
  margin-top: 12px; padding-left: 20px;
  color: var(--ink-muted); font-size: 15px;
  line-height: 1.8;
}
.service-feature ul li::marker { color: var(--accent); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-photo {
  aspect-ratio: 3/2;
  background:
    linear-gradient(135deg, var(--accent-soft), #d6e6fb);
  border-radius: 18px;
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 13px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--line);
  font-style: italic;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; color: var(--navy-deep); }
.about-text p {
  color: var(--ink-muted); font-size: 16.5px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text strong { color: var(--ink); font-weight: 600; }
.creds {
  margin-top: 14px;
  display: grid; gap: 10px;
  margin-bottom: 8px;
}
.about-subhead {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about-text > .about-subhead:first-of-type { margin-top: 32px; }
.cred-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
}
.cred-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 9px;
  flex-shrink: 0;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 20px; font-weight: 600; margin-bottom: 20px;
  color: var(--navy-deep);
}
.contact-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .label {
  font-size: 12px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  min-width: 70px;
  margin-top: 2px; font-weight: 600;
}
.contact-row .value { font-size: 15px; color: var(--ink); }
.booking-card {
  background: linear-gradient(135deg, var(--accent), var(--navy));
  color: #fff;
  border: none;
}
.booking-card h3 { color: #fff; }
.booking-card p { color: rgba(255,255,255,0.92); margin-bottom: 24px; font-size: 15px; line-height: 1.6; }
.booking-card .btn {
  background: #fff; color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.booking-card .btn:hover { background: #f5f9ff; }

/* CTA STRIP */
.cta-strip {
  padding: 80px 0;
  background:
    radial-gradient(800px 300px at 50% 50%, var(--accent-soft), transparent 60%),
    var(--bg-2);
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--navy-deep);
}
.cta-strip p {
  color: var(--ink-muted); font-size: 17px;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* BLOG LIST */
.blog-list {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .15s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card .meta {
  font-size: 12px; color: var(--ink-soft);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
}
.blog-card h3 {
  font-size: 21px; font-weight: 700; line-height: 1.25;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.blog-card p { color: var(--ink-muted); font-size: 15px; line-height: 1.6; }
.blog-card .read-more {
  margin-top: auto; color: var(--accent); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* BLOG ARTICLE */
.article {
  max-width: 760px; margin: 0 auto;
  padding: 80px 24px 96px;
}
.article .meta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600;
}
.article h1 {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800; line-height: 1.15;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.article .lede {
  font-size: 20px;
  color: var(--ink-muted);
  margin-bottom: 40px;
  line-height: 1.55;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.article h2 {
  font-size: 26px; font-weight: 700;
  color: var(--navy-deep);
  margin: 48px 0 16px;
  letter-spacing: -0.015em;
}
.article h3 {
  font-size: 19px; font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
}
.article p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink); margin-bottom: 18px;
}
.article ul, .article ol {
  margin: 8px 0 22px 24px;
  font-size: 17px; line-height: 1.8;
  color: var(--ink);
}
.article li { margin-bottom: 6px; }
.article li::marker { color: var(--accent); }
.article a { color: var(--accent); border-bottom: 1px solid rgba(30,135,255,0.3); }
.article a:hover { border-bottom-color: var(--accent); }
.article blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 4px;
  font-size: 16.5px; line-height: 1.7;
  color: var(--ink);
}
.article .references {
  margin-top: 56px;
  padding: 28px;
  background: var(--bg-2);
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}
.article .references h2 {
  margin: 0 0 16px;
  font-size: 18px;
}
.article .references ol {
  margin: 0 0 0 22px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.article .references li { margin-bottom: 8px; }
.article-footer {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-2);
  border-radius: 14px;
  text-align: center;
}
.article-footer h3 {
  color: var(--navy-deep);
  margin-bottom: 8px;
  font-size: 20px;
}
.article-footer p {
  color: var(--ink-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

/* FOOTER */
footer.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 14px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .footer-logo svg { height: 36px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-muted); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.footer-col h4 {
  font-size: 13px; font-weight: 600;
  color: var(--navy-deep);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--ink-muted); font-size: 14px; transition: color .15s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-address { color: var(--ink); font-size: 14px; line-height: 1.55; margin-bottom: 12px; }
.footer-meta { color: var(--ink-muted); font-size: 14px; margin-bottom: 8px; }
.footer-meta a { color: var(--ink-muted); }
.footer-meta a:hover { color: var(--accent); }
.footer-areas {
  border-top: 1px solid var(--line);
  padding: 24px 0 20px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footer-areas strong { color: var(--ink-muted); margin-right: 8px; }
.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
footer a:hover { color: var(--ink); }

/* HALAXY BOOKING EMBED */
.booking-embed-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 920px) {
  .booking-embed-section { grid-template-columns: 1fr; gap: 32px; }
}
.booking-embed-intro h2 {
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.18;
}
.booking-embed-intro p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.booking-embed-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface);
  height: 780px;
  min-height: 600px;
}
.booking-embed-frame iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 540px) {
  .booking-embed-frame { height: 720px; }
}

.contact-grid--single { grid-template-columns: 1fr !important; max-width: 720px; margin: 0 auto; }
.contact-grid--single .social-links { margin-top: 0; }

/* ENQUIRY FORM (contact page) */
.enquiry-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) {
  .enquiry-section { grid-template-columns: 1fr; gap: 32px; }
}
.enquiry-intro h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.enquiry-intro p {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.enquiry-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.enquiry-form .field { margin-bottom: 20px; }
.enquiry-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 540px) {
  .enquiry-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form { padding: 24px; }
}
.enquiry-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.enquiry-form .req { color: var(--accent); margin-left: 2px; }
.enquiry-form .optional {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 12px;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.enquiry-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.enquiry-form .form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 8px 0 18px;
  line-height: 1.5;
}
.enquiry-form .hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.enquiry-form .btn {
  width: 100%;
  padding: 14px 24px;
}

/* MAP CARD */
.map-card {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* SUCCESS MESSAGE */
.enquiry-sent {
  background: var(--accent-soft);
  border: 1px solid rgba(30, 135, 255, 0.3);
  color: var(--navy-deep);
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
}
.enquiry-sent::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner-inner {
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  flex: 1 1 280px;
}
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
  min-height: 40px;
}
.cookie-btn-primary {
  background: var(--accent);
  color: #fff;
}
.cookie-btn-primary:hover { background: var(--accent-hover); }
.cookie-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.cookie-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 540px) {
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; }
  .cookie-banner-inner { padding: 16px; flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* LEGAL BODY (privacy/terms pages) */
.legal-body h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--navy-deep);
  font-weight: 600;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-body ul { margin: 8px 0 16px 24px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--accent); border-bottom: 1px solid rgba(30,135,255,0.3); }
.legal-body a:hover { border-bottom-color: var(--accent); }

/* ARTICLE BODY (landing pages) */
.article-body h2 {
  font-size: 24px;
  margin: 36px 0 14px;
  color: var(--navy-deep);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--ink);
  font-weight: 600;
}
.article-body p, .article-body li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
}
.article-body p { margin-bottom: 16px; }
.article-body ul { margin: 8px 0 18px 22px; }
.article-body li { margin-bottom: 6px; }
.article-body li::marker { color: var(--accent); }
.article-body a { color: var(--accent); border-bottom: 1px solid rgba(30,135,255,0.3); }
.article-body a:hover { border-bottom-color: var(--accent); }

/* MAP SECTION (home) */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .map-section { grid-template-columns: 1fr; gap: 32px; }
}
.map-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
}
.map-info p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}
.map-info p strong { color: var(--ink); font-weight: 600; }
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 360px;
  background: var(--bg-2);
}
.map-frame iframe { height: 100%; min-height: 360px; }

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink-muted) !important;
  background: var(--surface);
  transition: color 0.15s, border-color 0.15s, transform 0.1s, background 0.15s;
}
.social-link svg { width: 20px; height: 20px; display: block; }
.social-link:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
  background: var(--bg);
  transform: translateY(-1px);
}
/* On dark booking-card */
.booking-card .social-link {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff !important;
}
.booking-card .social-link:hover {
  background: #fff;
  color: var(--accent) !important;
  border-color: #fff;
}
.booking-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.booking-socials-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.booking-socials .social-links { margin-top: 0; }

/* CONDITIONS GRID */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 32px;
}
.condition-group h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.condition-group ul {
  list-style: none;
  padding: 0;
}
.condition-group ul li {
  font-size: 14.5px;
  padding: 6px 0;
  color: var(--ink);
  line-height: 1.5;
}
.condition-group ul li::before {
  content: "—";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 600;
}
.condition-group ul a {
  color: var(--accent);
  border-bottom: 1px dotted rgba(30, 135, 255, 0.4);
}
.condition-group ul a:hover { border-bottom-style: solid; }

/* 404 */
.not-found {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(900px 400px at 50% 0%, var(--accent-soft), transparent 60%),
    var(--bg);
  min-height: 60vh;
}
.not-found h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 18px;
}
.not-found p {
  color: var(--ink-muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
}
.not-found-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.not-found-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.not-found-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.not-found-card strong {
  color: var(--navy-deep);
  font-size: 15px;
}
.not-found-card span {
  color: var(--ink-muted);
  font-size: 13.5px;
}

.placeholder { color: var(--accent); font-style: italic; }

/* PRICING BOX */
.pricing-box {
  margin-top: 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(30, 135, 255, 0.25);
  border-radius: 14px;
  padding: 22px 24px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 135, 255, 0.18);
}
.pricing-row:last-of-type { border-bottom: none; }
.pricing-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
}
.pricing-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.pricing-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.pricing-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.pricing-note strong { color: var(--navy-deep); font-weight: 600; }

/* FAQ ACCORDION */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s;
  box-shadow: var(--shadow-sm);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-deep);
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item summary:hover { background: var(--bg-2); }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-answer p { margin: 0; }
@media (max-width: 540px) {
  .faq-item summary { padding: 18px 48px 18px 20px; font-size: 16px; }
  .faq-answer { padding: 0 20px 20px; font-size: 15px; }
  .faq-item summary::after { right: 18px; }
}

.nav-cta-mobile { display: none; }

/* Long content protection */
.article p, .article li, .blog-card p, .service-card p, .service-feature p,
.about-text p, .hero-text p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ============ MOBILE TIGHTENING ============ */
@media (max-width: 820px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .page-header { padding: 56px 0 40px; }
  .article { padding: 48px 24px 64px; }
  .cta-strip { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .service-feature { margin-bottom: 56px; }
  .nav-inner { height: 70px; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .page-header { padding: 48px 0 32px; }
  .article { padding: 40px 20px 56px; }
  .cta-strip { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  .service-card { padding: 28px 24px; }
  .blog-card { padding: 28px 24px; }
  .contact-card { padding: 28px 24px; }
  .article .references { padding: 24px; }

  .hero-grid { gap: 36px; }
  .hero-photo { aspect-ratio: 4/3; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
  }

  .hero-text p.lead { font-size: 17px; }
  .article h1 { line-height: 1.18; }
  .article p, .article ul, .article ol { font-size: 16px; }
  .article h2 { font-size: 22px; margin: 36px 0 12px; }
  .article h3 { font-size: 18px; margin: 24px 0 10px; }
  .article .lede { font-size: 17.5px; }

  .creds { margin-top: 24px; padding-top: 22px; }

  /* Tighten contact rows on small screens */
  .contact-row { flex-direction: column; gap: 4px; padding: 12px 0; }
  .contact-row .label { min-width: 0; }

  /* Footer wraps gracefully */
  footer .container p { line-height: 1.8; }
}

/* ============ MOBILE POLISH PASS ============ */

/* Tap-highlight: nicer touch feedback on iOS/Android */
* { -webkit-tap-highlight-color: rgba(30, 135, 255, 0.18); }

/* Smooth font rendering on mobile */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* iOS focus zoom prevention — inputs must be ≥16px */
.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select { font-size: 16px; }

/* Better tap-feedback on buttons */
.btn, .cookie-btn, .nav-toggle, .social-link, summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Tighter mobile booking iframe (was too tall on phones) */
@media (max-width: 540px) {
  .booking-embed-frame { height: 640px; min-height: 540px; }
  .booking-embed-section { gap: 24px; }
  .booking-embed-intro h2 { font-size: 26px; }
}

/* Mobile photo sizing — hero photo can be a bit shorter on small screens */
@media (max-width: 540px) {
  .hero-photo { aspect-ratio: 4/3; }
  .about-photo { aspect-ratio: 4/3; border-radius: 14px; }
  .service-photo { aspect-ratio: 16/10; border-radius: 12px; }
}

/* Tighter map on small screens */
@media (max-width: 540px) {
  .map-frame { min-height: 280px; }
  .map-frame iframe { min-height: 280px; }
}

/* Service feature padding on mobile */
@media (max-width: 540px) {
  .service-feature { gap: 24px; margin-bottom: 48px; }
}

/* Stop horizontal scroll on long titles */
body, html { overflow-x: hidden; }

/* Increase tap-target padding on inline links inside paragraphs (mobile only) */
@media (max-width: 540px) {
  .article-body a, .legal-body a { padding: 2px 0; display: inline-block; }
}

/* Footer column stacks tighter on phones */
@media (max-width: 540px) {
  .footer-grid { gap: 28px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-meta, .footer-address { font-size: 13.5px; }
}

/* Conditions grid: allow narrower cards on phones */
@media (max-width: 540px) {
  .conditions-grid { gap: 14px; grid-template-columns: 1fr; }
  .condition-group { padding: 22px 20px; }
}

/* Hero CTAs stack full-width on small screens for easier tapping */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

/* Cookie banner: prevent overlap with safe-area on iPhone */
.cookie-banner { padding-bottom: env(safe-area-inset-bottom, 0); }
