@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,600;0,900;1,300&family=DM+Sans:wght@300;400;500&display=swap");

:root {
  --blue-deep: #003580;
  --blue-mid: #0057b8;
  --blue-light: #e8f0fb;
  --yellow: #FFD700;
  --yellow-soft: #fff3b0;
  --yellow-dark: #e6b800;
  --white: #ffffff;
  --text-dark: #0a1628;
  --text-muted: #4a6080;
  --border: rgba(0,53,128,0.12);
  --shadow: 0 8px 40px rgba(0,53,128,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; padding-top: 34px; }

.top-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 5vw;
  background: var(--blue-deep);
  color: white;
  font-size: 0.82rem;
  line-height: 1.25;
}
.top-contact-bar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.top-contact-bar a:hover { color: var(--yellow); }

/* ── NAV ── */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 96px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.logo-wrap {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
  min-width: 0;
}
.logo-circle {
  width: clamp(170px, 18vw, 240px); height: auto;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-circle img {
  width: 100%; height: auto; max-height: 72px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: "Fraunces", serif; font-weight: 900; font-size: 1.1rem;
  color: var(--blue-deep); letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.68rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta {
  background: var(--yellow) !important; color: var(--blue-deep) !important;
  padding: 8px 20px; border-radius: 30px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--blue-deep);
  display: block; border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 130px; left: 0; right: 0;
  background: white; padding: 20px 5vw;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 99;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none; font-size: 1rem;
  font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border);
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 110px 5vw 60px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0f5ff 0%, #fff9d6 100%);
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.circle { position: absolute; border-radius: 50%; animation: float 8s ease-in-out infinite; }
.circle-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,87,184,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.circle-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.25) 0%, transparent 70%);
  bottom: 50px; left: 10%; animation-delay: 3s;
}
.circle-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,53,128,0.08) 0%, transparent 70%);
  top: 30%; left: 40%; animation-delay: 5s;
}
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content {
  max-width: 600px; position: relative; z-index: 2;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards 0.2s;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-logo-lockup {
  width: min(340px, 82vw);
  margin-bottom: 22px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(0,53,128,0.12);
  box-shadow: 0 10px 32px rgba(0,53,128,0.12);
}
.hero-logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--blue-deep);
  font-size: 0.78rem; font-weight: 500;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; letter-spacing: 0.04em;
}
.hero-badge span { width: 6px; height: 6px; background: var(--blue-deep); border-radius: 50%; display: inline-block; }

.hero h1 {
  font-family: "Fraunces", serif; font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.05; color: var(--blue-deep); margin-bottom: 22px;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--blue-mid); }
.hero p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-bottom: 38px; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue-deep); color: white; padding: 14px 32px; border-radius: 40px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,53,128,0.25);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,53,128,0.35); }
.btn-secondary {
  background: transparent; color: var(--blue-deep); padding: 14px 32px; border-radius: 40px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  border: 2px solid var(--blue-deep); transition: all 0.25s;
}
.btn-secondary:hover { background: var(--blue-deep); color: white; }

.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: "Fraunces", serif; font-weight: 900; font-size: 2rem; color: var(--blue-deep); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

.hero-visual {
  display: none;
  position: absolute; right: 5vw; top: 50%;
  width: min(40vw, 460px); z-index: 2;
  opacity: 0; transform: translateY(-50%) translateX(60px);
  animation: slideIn 1s ease forwards 0.5s;
}
@keyframes slideIn { to { opacity: 1; transform: translateY(-50%) translateX(0); } }

.floating-cards { display: flex; flex-direction: column; gap: 12px; }
.mini-card {
  background: white; border-radius: 14px; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,53,128,0.1);
  animation: floatCard 4s ease-in-out infinite;
}
.mini-card:nth-child(2) { animation-delay: 1.3s; margin-left: 28px; }
.mini-card:nth-child(3) { animation-delay: 2.6s; }
.mini-card:nth-child(4) { animation-delay: 1s; }
.mini-card:nth-child(5) { animation-delay: 1.8s; margin-left: 18px; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.mini-img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.mini-title { font-weight: 500; font-size: 0.84rem; color: var(--blue-deep); }
.mini-sub { font-size: 0.73rem; color: var(--text-muted); }

/* ── SECTION BASE ── */
section { padding: 90px 5vw; }
.section-tag {
  display: inline-block; background: var(--yellow-soft); color: var(--blue-deep);
  font-size: 0.78rem; font-weight: 500; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 16px; letter-spacing: 0.05em;
}
.section-title {
  font-family: "Fraunces", serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--blue-deep); line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 520px; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.service-card {
  background: white; border: 1.5px solid var(--border); border-radius: 20px;
  overflow: hidden; cursor: pointer; transition: all 0.3s ease; position: relative;
}
.service-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--blue-mid));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,53,128,0.14); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-img { width: 100%; height: 220px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--yellow); color: var(--blue-deep);
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 20px;
}
.service-body { padding: 24px; }
.service-body h3 {
  font-family: "Fraunces", serif; font-size: 1.15rem; font-weight: 600;
  color: var(--blue-deep); margin-bottom: 8px;
}
.service-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  color: var(--blue-mid); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

.local-seo {
  background: #f7faff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.local-seo-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}
.local-seo-copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.local-seo-list {
  display: grid;
  gap: 12px;
  list-style: none;
}
.local-seo-list li {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--blue-deep);
  font-weight: 500;
}

/* ── WHY US ── */
.why-us { background: linear-gradient(160deg, var(--blue-deep) 0%, #001f5c 100%); color: white; }
.why-us .section-title { color: white; }
.why-us .section-subtitle { color: rgba(255,255,255,0.7); }
.why-us .section-tag { background: rgba(255,215,0,0.2); color: var(--yellow); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 22px; transition: background 0.3s;
}
.feature-item:hover { background: rgba(255,255,255,0.1); }
.feature-emoji { font-size: 1.6rem; margin-bottom: 10px; }
.feature-item h4 { font-weight: 500; font-size: 0.9rem; margin-bottom: 6px; color: white; }
.feature-item p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.trust-box {
  background: rgba(255,215,0,0.1); border: 2px solid rgba(255,215,0,0.3);
  border-radius: 20px; padding: 36px;
}
.trust-box h3 {
  font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 900;
  color: var(--yellow); margin-bottom: 20px; line-height: 1.2;
}
.trust-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.trust-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5;
}
.check {
  width: 20px; height: 20px; min-width: 20px; background: var(--yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--blue-deep); font-weight: 700;
}

/* ── PROCESS ── */
.process { background: var(--blue-light); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-subtitle { margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); position: relative; }
.steps::before {
  content: ""; position: absolute; top: 36px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--yellow), var(--blue-mid));
}
.step {
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
  opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:nth-child(2) { transition-delay: 0.15s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step:nth-child(4) { transition-delay: 0.45s; }
.step-num {
  width: 72px; height: 72px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: "Fraunces", serif; font-weight: 900; font-size: 1.5rem;
  color: var(--blue-deep); box-shadow: 0 4px 20px rgba(255,215,0,0.5); border: 4px solid white;
}
.step h4 { font-family: "Fraunces", serif; font-weight: 600; font-size: 1rem; color: var(--blue-deep); margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT ── */
.contact { background: white; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; margin-top: 14px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon-wrap {
  width: 44px; height: 44px; min-width: 44px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-text { display: flex; flex-direction: column; gap: 2px; }
.contact-text span:first-child { font-size: 0.78rem; color: var(--text-muted); }
.contact-text span:last-child { font-size: 0.92rem; font-weight: 500; color: var(--blue-deep); }
.contact-text a {
  color: var(--blue-deep);
  text-decoration: none;
}
.contact-text a:hover { color: var(--blue-mid); }

/* SUBPAGES */
.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 34px;
  left: auto;
  right: auto;
  z-index: 100;
  height: auto;
  min-height: 84px;
  padding: 0 5vw;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border);
}

.site-nav.scrolled { box-shadow: var(--shadow); }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--blue-deep);
  text-decoration: none;
}

.brand-mark {
  width: clamp(170px, 18vw, 240px);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.88rem;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--blue-deep); }

.nav-menu .btn,
.inline-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-menu .btn-primary {
  background: var(--yellow);
  color: var(--blue-deep);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-deep);
}

.page-hero {
  padding-top: 78px;
  background: linear-gradient(135deg, #f0f5ff 0%, #fff9d6 100%);
}

.page-hero-grid,
.split-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.page-hero-copy h1,
.contact-block h2,
.form-shell h3 {
  font-family: "Fraunces", serif;
  color: var(--blue-deep);
  line-height: 1.12;
}

.page-hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  margin: 12px 0 18px;
}

.page-hero-copy p,
.form-shell p,
.contact-block p {
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  background: var(--yellow-soft);
  color: var(--blue-deep);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-content-card,
.form-shell,
.contact-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.page-content-card,
.form-shell {
  padding: 28px;
}

.hero-photo {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 18px;
  aspect-ratio: 4 / 3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-tag {
  display: inline-block;
  margin-bottom: 14px;
  background: var(--yellow);
  color: var(--blue-deep);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.76rem;
  font-weight: 700;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 18px;
}

.faq .faq-item {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.faq .faq-item h3 {
  color: var(--blue-deep);
  font-size: 1rem;
  margin-bottom: 6px;
}

.form-shell .booking-form {
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-details {
  margin-top: 24px;
}

.contact-card {
  padding: 18px;
}

.contact-card h3 {
  color: var(--blue-deep);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.footer.footer {
  background: var(--text-dark);
  padding: 56px 5vw 28px;
}

.footer .footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
}

.footer h3 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 340px;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer .brand-copy strong,
.footer .brand-copy span {
  color: white;
}

/* ── FORM ── */
.booking-form {
  background: white; border: 1.5px solid var(--border); border-radius: 24px;
  padding: 40px; box-shadow: var(--shadow);
}
.form-title {
  font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 900;
  color: var(--blue-deep); margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.form-title-badge {
  background: var(--yellow); font-size: 0.65rem; font-weight: 500;
  color: var(--blue-deep); padding: 2px 8px; border-radius: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font-family: "DM Sans", sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--blue-light); transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(0,87,184,0.12); background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--blue-deep); color: white;
  border: none; border-radius: 40px; font-family: "DM Sans", sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,53,128,0.3); margin-top: 8px;
}
.form-submit:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,53,128,0.4); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-error {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff4f2;
  color: #8f2d1d;
  border: 1px solid rgba(143, 45, 29, 0.16);
  font-size: 0.9rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { font-family: "Fraunces", serif; color: var(--blue-deep); font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ── FOOTER ── */
footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 5vw 30px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-circle {
  width: clamp(130px, 15vw, 180px); height: auto; background: transparent;
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 0; flex-shrink: 0;
}
.footer-logo-circle img {
  width: 100%;
  height: auto;
  max-height: 52px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}
.footer-logo-name { display: none; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 500; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.yellow { color: var(--yellow); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .top-contact-bar {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0.76rem;
  }
  .hero-visual { display: none; }
  .why-layout { grid-template-columns: 1fr; }
  .local-seo-grid { grid-template-columns: 1fr; }
  .why-layout > *,
  .contact-layout > *,
  .page-hero-grid > *,
  .split-layout > * { min-width: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .page-hero-grid,
  .split-layout,
  .footer .footer-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .site-nav { padding: 0 4vw; }
  .nav-inner { min-height: 76px; }
  .brand-copy { display: none; }
  .brand-mark { width: 168px; max-height: 54px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 5vw 20px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu .btn-primary {
    margin-top: 12px;
    padding: 13px 18px;
    border-bottom: 0;
  }
  .logo-wrap { gap: 0; }
  .logo-text { display: none; }
  .logo-circle { width: 168px; }
  .logo-circle img { max-height: 54px; }
  .hero { padding-top: 136px; }
  .hero-content { gap: 28px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .hero p { max-width: none; }
  .page-hero { padding-top: 52px; }
  .page-hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .page-content-card,
  .form-shell { padding: 20px; }
  .booking-form { padding: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .trust-box { padding: 24px; }
  .hero-bg-circles { overflow: hidden; }
  .circle-1 { width: 320px; height: 320px; right: -160px; }
  section { padding-left: 4vw; padding-right: 4vw; }
}

/* ── FAQ ── */
.faq-section {{ background: var(--white); }}
.faq-header {{ text-align: center; margin-bottom: 50px; }}
.faq-header .section-subtitle {{ margin: 0 auto; }}
.faq-list {{ max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }}
.faq-item {{
  border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: box-shadow 0.3s;
}}
.faq-item.open {{ box-shadow: 0 6px 30px rgba(0,53,128,0.1); border-color: var(--blue-mid); }}
.faq-q {{
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: "DM Sans", sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--blue-deep); cursor: pointer; text-align: left; transition: background 0.2s;
}}
.faq-q:hover {{ background: var(--blue-light); }}
.faq-icon {{
  font-size: 1.4rem; font-weight: 300; color: var(--blue-mid);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 12px;
}}
.faq-item.open .faq-icon {{ transform: rotate(45deg); }}
.faq-a {{
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}}
.faq-item.open .faq-a {{ max-height: 200px; padding: 0 24px 20px; }}
.faq-a p {{ font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }}

/* FAQ override */
.faq-section { background: var(--white); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: 0 6px 30px rgba(0, 53, 128, 0.1); border-color: var(--blue-mid); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blue-deep);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--blue-light); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue-mid);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
