:root {
  --navy: #10283c;
  --navy-deep: #091a29;
  --navy-soft: #1d4058;
  --gold: #b68a45;
  --gold-dark: #8f672d;
  --sand: #f4eee5;
  --sand-soft: #faf7f2;
  --white: #ffffff;
  --ink: #1a2834;
  --muted: #5f6e79;
  --line: #dfe5e8;
  --green: #315f4a;
  --max: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --shadow-sm: 0 10px 28px rgba(16, 40, 60, 0.08);
  --shadow: 0 24px 60px rgba(16, 40, 60, 0.14);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.cookie-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; left: -999px; top: 12px; z-index: 99999; background: #fff; color: var(--navy); padding: 10px 16px; border: 1px solid var(--line); }
.skip-link:focus { left: 12px; }

h1, h2, h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.65rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.3rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
p { margin: 0 0 18px; }
.lead { max-width: 720px; color: #52626e; font-size: clamp(1.03rem, 1.6vw, 1.22rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.mini-label { color: var(--gold-dark); font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 22px rgba(16,40,60,.16); }
.btn-primary:hover { background: var(--navy-soft); }
.btn-gold { background: var(--gold); color: #112333; }
.btn-gold:hover { background: #c89b52; }
.btn-light { background: #fff; color: var(--navy); border-color: #cfd8dd; }
.btn-light:hover { border-color: var(--navy); }
.btn-arrow::after { content: "→"; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

.topbar { background: var(--navy-deep); color: #dbe4e9; font-size: .83rem; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar a { color: #fff; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(16,40,60,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(16,40,60,.08); }
.nav-wrap { height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { width: 246px; flex: 0 0 auto; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.site-nav a, .nav-dropdown > button {
  position: relative;
  padding: 30px 0 28px;
  border: 0;
  background: none;
  color: #2b3d49;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.site-nav a::after, .nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after, .nav-dropdown > button:hover::after { right: 0; }
.site-nav a:hover, .site-nav a[aria-current="page"], .nav-dropdown > button:hover { color: var(--gold-dark); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: 0;
  min-width: 270px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.dropdown-menu a { display: block; padding: 11px 13px; border-radius: 6px; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--sand-soft); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid #d7dfe3; border-radius: 6px; background: #fff; color: var(--navy); }
.header-cta { min-height: 46px; padding-inline: 18px; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(112deg, #f6f0e7 0%, #fbf8f4 47%, #fff 47%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -230px;
  top: -180px;
  border: 1px solid rgba(182,138,69,.3);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--gold);
}
.hero .container { min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; padding: 72px 0; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 0; margin-top: 38px; padding-top: 20px; border-top: 1px solid #ded5c9; color: #53626d; font-size: .9rem; }
.hero-notes span { padding: 0 18px; border-right: 1px solid #ded5c9; }
.hero-notes span:first-child { padding-left: 0; }
.hero-notes span:last-child { border-right: 0; }
.hero-notes span::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 700; }
.hero-media { position: relative; isolation: isolate; }
.hero-media::before { content: ""; position: absolute; inset: -14px 16px 16px -14px; z-index: -1; border: 1px solid #d5c5aa; }
.hero-media img { width: 100%; height: 570px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow); will-change: transform; }
.media-badge { position: absolute; left: -34px; bottom: 28px; max-width: 250px; padding: 17px 18px; background: var(--navy); color: #fff; border-left: 4px solid var(--gold); box-shadow: var(--shadow-sm); font-family: "Merriweather", Georgia, serif; font-size: .98rem; font-weight: 700; }
.media-badge small { display: none; }

.section { position: relative; padding: 100px 0; }
.section-soft { background: var(--sand-soft); }
.section-dark { overflow: hidden; background: var(--navy); color: #d7e1e7; }
.section-dark::after { content: ""; position: absolute; width: 460px; height: 460px; right: -250px; bottom: -300px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: #bdc9d1; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 46px; }
.section-head .lead { max-width: 560px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card { position: relative; padding: 32px 30px; background: #fff; border: 1px solid #e0e5e8; border-radius: var(--radius-sm); box-shadow: 0 8px 20px rgba(16,40,60,.035); }
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 0; height: 3px; background: var(--gold); transition: width .25s ease; }
.card-link { text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.card-link:hover { transform: translateY(-5px); border-color: #d3c2a5; box-shadow: var(--shadow-sm); }
.card-link:hover::before { width: 100%; }
.card-icon { width: auto; height: auto; margin-bottom: 24px; color: var(--gold-dark); font-family: "Merriweather", Georgia, serif; font-size: 1.12rem; font-weight: 700; }
.card p { color: var(--muted); }
.text-link { color: var(--gold-dark); font-size: .92rem; font-weight: 700; text-decoration: none; }
.text-link::after { content: " →"; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 76px; }
.split-media { position: relative; }
.split-media::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 52%; height: 62%; z-index: -1; background: #e8dccb; }
.split-media img { width: 100%; height: 520px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-sm); will-change: transform; }
.list-check { list-style: none; margin: 26px 0 30px; padding: 0; }
.list-check li { position: relative; margin: 14px 0; padding-left: 32px; }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.content-note { margin: 24px 0; padding: 18px 20px; background: #f6f1e9; border-left: 3px solid var(--gold); color: #4f5f69; }

.steps { counter-reset: step; border-top: 1px solid rgba(255,255,255,.15); }
.step { position: relative; padding: 34px 24px 34px 82px; border-bottom: 1px solid rgba(255,255,255,.15); }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; left: 0; top: 36px; color: var(--gold); font-size: .95rem; font-weight: 700; letter-spacing: .08em; }
.step p { max-width: 700px; color: #b8c7d0; }
.quote-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px 42px; background: #f1e8db; border-left: 4px solid var(--gold); }
.quote-strip h3 { margin: 4px 0 0; font-size: 1.7rem; }

.page-hero { position: relative; overflow: hidden; padding: 72px 0 80px; background: linear-gradient(105deg, #f7f1e8 0%, #fbf9f5 58%, #fff 58%); border-bottom: 1px solid #eee7dd; }
.page-hero::before { content: ""; position: absolute; width: 300px; height: 300px; right: -150px; top: -165px; border: 1px solid rgba(182,138,69,.25); border-radius: 50%; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 28px; color: #6d7b84; font-size: .81rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-dark); }
.page-hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 66px; align-items: center; }
.page-hero h1 { max-width: 780px; font-size: clamp(2.55rem, 4.7vw, 4.4rem); }
.page-hero-grid > div:last-child { position: relative; }
.page-hero-grid > div:last-child::before { content: ""; position: absolute; inset: -12px 16px 16px -12px; border: 1px solid #d8c7aa; z-index: 0; }
.page-hero img { position: relative; z-index: 1; width: 100%; height: 420px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-sm); will-change: transform; }

.content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 68px; align-items: start; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 46px; font-size: clamp(1.8rem, 3vw, 2.35rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 32px; }
.prose p, .prose li { color: #485966; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 8px 0; }
.sidebar-card { position: sticky; top: 116px; padding: 30px; background: var(--navy); color: #d8e2e7; border-top: 4px solid var(--gold); border-radius: 4px; box-shadow: var(--shadow-sm); }
.sidebar-card h3 { color: #fff; }
.sidebar-card p { color: #bdc9d1; }
.sidebar-card .btn { width: 100%; margin-top: 8px; background: #fff; color: var(--navy); }

.comparison { overflow: auto; margin: 28px 0; border: 1px solid #dfe5e8; }
.comparison table { width: 100%; min-width: 680px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 18px; border-bottom: 1px solid #e6ebed; text-align: left; vertical-align: top; }
.comparison th { background: #f4efe7; color: var(--navy); }
.comparison tr:last-child td { border-bottom: 0; }

.faq { border-top: 1px solid #dfe5e8; }
.faq details { padding: 22px 0; border-bottom: 1px solid #dfe5e8; }
.faq summary { display: flex; justify-content: space-between; gap: 20px; color: var(--navy); font-weight: 700; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 850px; margin-top: 14px; color: #596973; }

.booking-shell { min-height: 700px; overflow: hidden; background: #fff; border: 1px solid #dfe5e8; box-shadow: var(--shadow-sm); }
.calendly-placeholder { min-height: 700px; display: grid; place-items: center; padding: 50px; background: #faf7f2; text-align: center; }
.calendly-placeholder .inner { max-width: 590px; }
.placeholder-tag { display: inline-block; margin-bottom: 16px; color: var(--gold-dark); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.calendly-consent-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }

.footer-cta { padding: 68px 0; background: #17364c; color: #fff; }
.footer-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.footer-cta h2 { max-width: 760px; margin: 0; color: #fff; }
.site-footer { padding: 60px 0 26px; background: var(--navy-deep); color: #aebbc4; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 54px; }
.footer-logo { width: 230px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.site-footer h3 { margin-bottom: 16px; color: #fff; font-family: "DM Sans", Arial, sans-serif; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { color: #d0d9df; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.cookie-settings-link { padding: 0; border: 0; background: none; color: #d0d9df; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.disclaimer { padding: 18px 0; background: #f4f6f7; border-top: 1px solid #e1e7ea; color: #687781; font-size: .81rem; }
.image-credit, .dev-note { display: none !important; }

/* Motion is intentionally restrained. */
.motion-reveal, .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.motion-zoom { opacity: 0; transform: scale(.965); transition: opacity .75s var(--ease), transform .75s var(--ease), box-shadow .25s ease; }
.motion-reveal.visible, .reveal.visible, .motion-zoom.visible { opacity: 1; transform: none; }
.hero-copy { animation: heroCopyIn .8s var(--ease) both; }
.hero-media { animation: heroMediaIn .9s .08s var(--ease) both; }
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroMediaIn { from { opacity: 0; transform: scale(.975); } to { opacity: 1; transform: none; } }

/* Cookie consent */
.cookie-overlay { position: fixed; inset: 0; z-index: 9998; background: rgba(7,18,28,.48); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.cookie-overlay.visible { opacity: 1; pointer-events: auto; }
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  width: min(760px, calc(100% - 32px));
  padding: 24px 26px;
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 70px rgba(7,18,28,.28);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease);
}
.cookie-consent.visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.cookie-consent__grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.cookie-consent h2 { margin: 0 0 8px; font-size: 1.45rem; }
.cookie-consent p { margin: 0; color: #5a6872; font-size: .92rem; }
.cookie-consent__actions { display: flex; gap: 10px; }
.cookie-consent .btn { min-height: 44px; padding: 10px 17px; }
.cookie-consent .btn-decline { background: #fff; color: var(--navy); border-color: #cbd5da; box-shadow: none; }
.cookie-consent .btn-decline:hover { border-color: var(--navy); }

@media (max-width: 1000px) {
  .site-nav { position: fixed; inset: 122px 20px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 18px 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-dropdown > button { width: 100%; padding: 13px 4px; text-align: left; }
  .site-nav a::after, .nav-dropdown > button::after { display: none; }
  .dropdown-menu { position: static; min-width: 0; padding: 0 0 0 12px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .hero .container, .page-hero-grid, .split { grid-template-columns: 1fr; gap: 46px; }
  .hero .container { min-height: 0; padding: 60px 0 72px; }
  .hero-media img { height: 500px; }
  .media-badge { left: 18px; }
  .page-hero img { height: 410px; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-cta .container { flex-direction: column; align-items: flex-start; }
  .section { padding: 80px 0; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar span:last-child { display: none; }
  .nav-wrap { height: 72px; }
  .brand { width: 206px; }
  .site-nav { inset: 110px 14px auto; }
  .hero { background: linear-gradient(#f7f1e8, #fff); }
  .hero-media img { height: 390px; }
  .hero-media::before { inset: -8px 10px 10px -8px; }
  .media-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .hero-notes { flex-direction: column; gap: 9px; }
  .hero-notes span { padding: 0; border: 0; }
  .section, .page-hero { padding: 62px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .split { gap: 38px; }
  .split-media img { height: 390px; }
  .page-hero-grid { gap: 36px; }
  .page-hero img { height: 320px; }
  .quote-strip { flex-direction: column; align-items: flex-start; padding: 30px 26px; }
  .step { padding-left: 60px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cookie-consent { bottom: 12px; padding: 20px; }
  .cookie-consent__grid { grid-template-columns: 1fr; gap: 18px; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-reveal, .reveal, .motion-zoom { opacity: 1 !important; transform: none !important; }
}
