:root {
  --ink: #152331;
  --muted: #5e6f7a;
  --line: #dce5e8;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #5f8998;
  --deep: #243f4b;
  --gold: #c8a96a;
  --rose: #efe2df;
  --sage: #dce8e0;
  --shadow: 0 24px 70px rgba(29, 54, 63, .14);
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; line-height: 1.5; letter-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--deep); color: rgba(255,255,255,.88); font-size: 13px; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
header { position: sticky; top: 0; z-index: 20; background: rgba(247,250,249,.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(95,137,152,.18); }
nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.logo { width: 162px; }
.links { display: flex; align-items: center; gap: 18px; color: #314954; font-size: 14px; font-weight: 600; flex-wrap: wrap; }
.menu-group { position: relative; }
.menu-trigger { cursor: default; }
.dropdown { position: absolute; top: 100%; left: -16px; width: 270px; display: grid; gap: 2px; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.menu-group:hover .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown a { padding: 10px 12px; border-radius: 6px; font-size: 13px; }
.dropdown a:hover { background: var(--paper); color: var(--teal); }
.mobile-menu { display: none; }
.mobile-actions { display: none; }
.mobile-call, .mobile-book { display: inline-flex; align-items: center; justify-content: center; height: 46px; border-radius: 999px; border: 1px solid var(--line); background: white; color: var(--deep); }
.mobile-call { width: 46px; }
.mobile-call svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.mobile-book { padding: 0 15px; background: var(--teal); border-color: var(--teal); color: white; font-size: 14px; font-weight: 800; box-shadow: 0 10px 20px rgba(95,137,152,.18); }
.mobile-menu summary { list-style: none; cursor: pointer; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border-radius: 50%; border: 1px solid var(--line); background: white; color: var(--deep); font-weight: 800; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 20px; height: 14px; display: inline-block; background: linear-gradient(var(--deep), var(--deep)) 0 0 / 100% 2px no-repeat, linear-gradient(var(--deep), var(--deep)) 0 6px / 100% 2px no-repeat, linear-gradient(var(--deep), var(--deep)) 0 12px / 100% 2px no-repeat; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.mobile-panel { width: 100%; display: grid; grid-template-columns: 1fr; gap: 0; padding: 14px 0 4px; background: white; border-top: 1px solid var(--line); margin-top: 12px; }
.mobile-panel a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); background: white; color: var(--deep); font-size: 14px; font-weight: 800; text-align: left; padding: 0 2px; }
.mobile-panel a::after { content: "›"; color: var(--teal); font-size: 20px; line-height: 1; }
.mobile-panel a.primary { background: white; border-color: var(--line); color: var(--teal); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border-radius: 999px; background: var(--teal); color: white; font-weight: 800; box-shadow: 0 12px 24px rgba(95,137,152,.22); border: 1px solid rgba(255,255,255,.18); white-space: nowrap; }
.btn.light { background: white; color: var(--deep); box-shadow: none; }
.btn.outline { background: transparent; color: var(--deep); border-color: rgba(36,63,75,.28); box-shadow: none; }
.hero { padding: 78px 0; background: white; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; }
.hero img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-gallery { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: white; }
.gallery-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { min-width: 100%; scroll-snap-align: start; position: relative; }
.gallery-slide img { border: 0; border-radius: 0; box-shadow: none; }
.gallery-caption { position: absolute; left: 18px; bottom: 18px; right: 18px; width: fit-content; max-width: calc(100% - 36px); padding: 9px 12px; border-radius: 999px; background: rgba(16,36,49,.76); color: white; font-size: 12px; font-weight: 800; backdrop-filter: blur(10px); }
.gallery-controls { position: absolute; right: 14px; bottom: 14px; display: flex; gap: 8px; z-index: 2; }
.gallery-controls button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.68); background: rgba(255,255,255,.88); color: var(--deep); font-size: 20px; font-weight: 800; cursor: pointer; box-shadow: 0 8px 18px rgba(16,36,49,.18); }
.gallery-dots { position: absolute; left: 18px; top: 18px; display: flex; gap: 7px; z-index: 2; }
.gallery-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.72); border: 1px solid rgba(16,36,49,.18); }
.eyebrow { color: var(--teal); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; color: var(--deep); }
h1 { font-size: clamp(46px, 6vw, 78px); }
h2 { font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: 22px; }
.lead { color: var(--muted); font-size: 18px; margin: 22px 0 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
section { padding: 78px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.panel { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 30px; box-shadow: var(--shadow); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 24px; min-height: 190px; }
.card.visual { padding: 0; overflow: hidden; }
.card.visual img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; border-bottom: 1px solid var(--line); }
.card.visual div { padding: 20px; }
.list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.list li { color: var(--muted); padding-left: 24px; position: relative; }
.list li::before { content: ""; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: absolute; left: 2px; top: .58em; }
.faq { background: #edf3f1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq details { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; margin-top: 12px; }
.faq summary { font-weight: 800; cursor: pointer; }
.local-seo { background: white; border-top: 1px solid var(--line); }
.local-seo .panel { box-shadow: none; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.area-tags span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--deep); background: var(--paper); font-size: 13px; font-weight: 800; }
.cta { background: var(--deep); color: white; }
.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,.76); }
.disclaimer { background: #edf3f1; color: #55666e; font-size: 12px; padding: 26px 0; }
footer { background: #102431; color: rgba(255,255,255,.78); padding: 42px 0; }
footer .wrap { display: grid; grid-template-columns: repeat(4, minmax(160px, 1fr)); gap: 22px; }
footer strong { color: white; }
.legal-links a { color: rgba(255,255,255,.84); display: inline-block; margin-top: 4px; }
.legal-links a:hover { color: white; }
.legal-page .hero { padding-bottom: 42px; }
.legal-page section { padding: 52px 0; }
.legal-content { display: grid; gap: 18px; }
.legal-block { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.legal-block h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.legal-block p { color: var(--muted); margin: 0 0 12px; }
.legal-block ul { margin: 0; padding-left: 20px; color: var(--muted); }
.legal-block li + li { margin-top: 8px; }
@media (max-width: 900px) {
  header { position: sticky; top: 0; z-index: 50; }
  .wrap { width: min(1180px, calc(100% - 24px)); }
  .topbar { font-size: 12px; }
  .topbar .wrap { justify-content: center; padding: 7px 0; flex-wrap: nowrap; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar .wrap span:first-child { overflow: hidden; text-overflow: ellipsis; }
  .topbar .wrap span:nth-child(2) { display: none; }
  nav { min-height: auto; padding: 10px 0; gap: 8px; flex-wrap: nowrap; }
  .logo { width: 116px; }
  .links, nav > .btn { display: none; }
  .mobile-actions { display: flex; align-items: center; gap: 7px; margin-left: auto; position: relative; flex: 0 0 auto; }
  .mobile-call, .mobile-menu summary { width: 40px; height: 40px; }
  .mobile-call svg { width: 18px; height: 18px; }
  .mobile-book { height: 40px; padding: 0 14px; font-size: 13px; white-space: nowrap; }
  .mobile-menu { display: block; }
  .mobile-menu[open] { width: auto; }
  .mobile-panel { position: absolute; top: calc(100% + 10px); right: 0; width: min(76vw, 285px); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; z-index: 80; }
  .mobile-panel a { min-height: 44px; padding: 0 14px; font-size: 14px; line-height: 1.1; }
  .hero-grid, .split, .cards, footer .wrap { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .hero { padding: 34px 0 46px; }
}
