:root {
  --navy: #1B2A3B;
  --teal: #2A7F7F;
  --teal-light: #3AAFAF;
  --mint-accent: #E8F8F5;
  --blush: #FDF6F0;
  --cream: #FFFDF9;
  --white: #FFFFFF;
  --text-dark: #1B2A3B;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --star-gold: #D99435;
  --cta-green: #2F8F5B;
  --shadow-soft: 0 18px 44px rgba(27, 42, 59, .10);
  --shadow-card: 0 10px 28px rgba(27, 42, 59, .07);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --font-heading: "Lora", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 18px; color: var(--text-mid); }
ul { margin: 0; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}
h1 { font-size: clamp(48px, 6.2vw, 76px); max-width: 820px; }
h2 { font-size: clamp(36px, 4.4vw, 56px); max-width: 780px; }
h3 { font-size: 28px; line-height: 1.18; }
.lead, .page-hero p:not(.breadcrumb), .section-lead {
  max-width: 660px;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.58;
  color: var(--text-mid);
}
.eyebrow, .badge, .breadcrumb {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--teal);
}
.muted { color: var(--text-light); }
.price { color: var(--teal); font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn-primary {
  color: var(--white);
  background: var(--cta-green);
  box-shadow: 0 10px 22px rgba(47, 143, 91, .20);
}
.btn-primary:hover { background: #287b4f; transform: translateY(-1px); box-shadow: 0 14px 28px rgba(47, 143, 91, .25); }
.btn-secondary { color: var(--teal); background: var(--white); border-color: rgba(42, 127, 127, .28); }
.btn-secondary:hover { border-color: var(--teal); background: var(--mint-accent); }
.full { width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}
.announcement { background: var(--teal); color: var(--white); font-size: 14px; }
.announcement-inner {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.announce-close {
  position: absolute;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.nav {
  background: rgba(255, 253, 249, .95);
  border-bottom: 1px solid rgba(226, 232, 240, .85);
  backdrop-filter: blur(12px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled .nav { box-shadow: 0 10px 30px rgba(27, 42, 59, .08); background: rgba(255, 255, 255, .98); }
.nav-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy);
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mint-accent);
  font-style: normal;
  font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; font-size: 15px; font-weight: 700; color: var(--text-mid); }
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { color: var(--navy); font-weight: 800; white-space: nowrap; }
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { width: 20px; height: 2px; background: var(--navy); }

section { padding: 104px 0; }
.section-head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
.section-head h2, .section-head .section-lead { margin-left: auto; margin-right: auto; }
.section-head.align-left { margin-left: 0; text-align: left; }
.section-kicker { max-width: 820px; margin: 0 auto 32px; text-align: center; }

.hero {
  padding: 170px 0 78px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .96) 0%, rgba(255, 253, 249, .90) 46%, rgba(232, 248, 245, .64) 100%),
    url("../assets/hero.png") center right / cover;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 48px; align-items: center; }
.hero-copy { max-width: 720px; }
.hero-copy, .mini-form, .split > *, .contact-grid > *, .service-detail > * { min-width: 0; }
.hero .lead { max-width: 630px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 28px 0 0;
}
.proof-item {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(42, 127, 127, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
}
.proof-item strong { display: block; color: var(--navy); font-size: 16px; line-height: 1.25; }
.proof-item span { display: block; margin-top: 5px; color: var(--text-mid); font-size: 14px; line-height: 1.45; }
.star-row { color: var(--star-gold); font-size: 16px; font-weight: 900; margin: 18px 0 0; }
.star-row span { color: var(--text-mid); font-weight: 700; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 28px 0; }

.booking-form, .mini-form, .contact-panel, .included {
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.mini-form { padding: 0; background: transparent; border: 0; box-shadow: none; }
.booking-form { padding: 32px; }
.booking-form h2 { max-width: 420px; font-size: clamp(32px, 3.2vw, 42px); line-height: 1.12; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; color: var(--navy); font-size: 15px; font-weight: 800; line-height: 1.25; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42, 127, 127, .12); }
input.error, select.error, textarea.error { border-color: #C53030; background: #FFF8F8; }
.error-msg { margin-top: 4px; color: #C53030; font-size: 12px; font-weight: 700; }
.form-note, .form-success { margin-top: 14px; color: var(--text-mid); font-size: 14px; }
.form-success { color: var(--cta-green); font-weight: 800; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills.center { justify-content: center; }
.trust-pills span, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(42, 127, 127, .18);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 750;
}

.stats { padding: 30px 0; background: var(--white); border-block: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat { padding: 12px; color: var(--text-mid); font-size: 15px; }
.stat strong { display: block; color: var(--teal); font-size: 34px; line-height: 1.05; }

.cards, .reviews-grid, .pricing, .team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.cards.four, .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.card, .review {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.card { padding: 28px; }
.card h3, .review h3 { min-height: 2.3em; }
.card p, .review p { flex-grow: 1; line-height: 1.58; }
.card .icon, .step-number {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mint-accent);
  font-weight: 900;
}
.card a:not(.btn) { margin-top: auto; color: var(--teal); font-weight: 800; }
.service-card .price { margin-top: auto; font-size: 18px; }
.service-card .btn { margin-top: 18px; }
.mint { background: var(--mint-accent); }
.blush { background: var(--blush); }
.white { background: var(--white); }

.step { padding: 26px; }
.step h3 { font-size: 27px; }
.step p { margin-bottom: 0; }
.review { padding: 28px; }
.review .stars { color: var(--star-gold); font-weight: 900; letter-spacing: 0; margin-bottom: 16px; }
.review strong { margin-top: 12px; color: var(--navy); }
.review .muted { flex-grow: 0; margin: 4px 0 0; font-size: 14px; }
.review-source { display: inline-flex; width: fit-content; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px; background: var(--mint-accent); color: var(--teal); font-size: 12px; font-weight: 800; }

.feature-band {
  color: var(--white);
  background:
    linear-gradient(rgba(27, 42, 59, .56), rgba(42, 127, 127, .70)),
    url("../assets/room-2.png") center / cover;
}
.feature-band .container { max-width: 800px; text-align: center; }
.feature-band h2, .feature-band p { color: var(--white); }

.split, .contact-grid, .service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 48px;
  align-items: center;
}
.service-detail {
  align-items: stretch;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
}
.included { padding: 28px; box-shadow: none; }
.included ul, .check-list { list-style: none; padding: 0; color: var(--text-mid); }
.included li, .check-list li { margin: 10px 0; padding-left: 26px; position: relative; }
.included li::before, .check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--cta-green); font-weight: 900; }
.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.area-list li { padding: 11px 14px; border: 1px solid rgba(42, 127, 127, .14); border-radius: var(--radius-sm); background: var(--white); font-weight: 750; }
.map {
  width: 100%;
  min-height: 370px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.faq-q span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-accent); color: var(--teal); flex: 0 0 auto; transition: transform .2s ease; }
.faq-a { max-height: 0; overflow: hidden; color: var(--text-mid); transition: max-height .25s ease; }
.faq-a p { padding: 0 52px 24px 0; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

.page-hero {
  padding: 170px 0 82px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--mint-accent) 100%);
}
.page-hero h1 { max-width: 900px; }
.image-card {
  height: 510px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.image-card img, .gallery img { width: 100%; height: 100%; object-fit: cover; }
.pricing .popular { border: 2px solid rgba(47, 143, 91, .55); transform: translateY(-8px); }
.addons { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.addons .card { min-height: 150px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure {
  position: relative;
  height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.contact-grid { grid-template-columns: .78fr 1.22fr; align-items: start; }
.contact-panel { padding: 30px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.blog-card h3 { min-height: 2.35em; }
.blog-card .meta { margin: 4px 0 22px; color: var(--text-light); font-size: 14px; font-weight: 800; }
.blog-card .btn { margin-top: auto; }
.category-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(42, 127, 127, .18);
  border-radius: 999px;
  background: var(--mint-accent);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}
.article-hero { padding-bottom: 58px; }
.article-hero .breadcrumb { display: block; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 800;
}
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 52px;
  align-items: start;
}
.article-content {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.72;
}
.article-content h2 {
  margin-top: 46px;
  margin-bottom: 16px;
  font-size: clamp(32px, 3.4vw, 44px);
}
.article-content p { margin-bottom: 22px; }
.article-content a { color: var(--teal); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.article-content ul, .article-content ol { margin: 0 0 26px; padding-left: 24px; color: var(--text-mid); }
.article-content li { margin: 9px 0; }
.article-sidebar { position: sticky; top: 132px; }
.quote-card {
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.quote-card h3 { min-height: 0; }
.quote-card p { font-size: 16px; line-height: 1.55; }
.article-link-list { list-style: none; padding: 0; margin: 18px 0 0; }
.article-link-list li { margin: 10px 0; }
.article-link-list a { color: var(--teal); font-weight: 800; }
.blog-faq { max-width: 760px; margin-top: 48px; }
.blog-faq h2 { margin-bottom: 22px; }
.blog-faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.blog-faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}
.blog-faq details p { margin: 12px 0 0; }

.booking-page {
  --font-heading: "Libre Baskerville", Georgia, serif;
}
.booking-page h1,
.booking-page h2,
.booking-page h3 { font-weight: 700; }
.booking-page .lead,
.booking-page p { line-height: 1.62; }
.booking-hero {
  padding: 154px 0 84px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .98) 0%, rgba(255, 253, 249, .94) 44%, rgba(232, 248, 245, .82) 100%),
    url("../assets/room-2.png") center / cover;
}
.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  gap: 56px;
  align-items: start;
}
.booking-copy {
  max-width: 720px;
  padding-top: 34px;
}
.booking-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 72px);
  line-height: 1.08;
}
.booking-copy .lead { max-width: 620px; }
.booking-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 650px;
}
.mini-review {
  max-width: 620px;
  margin: 30px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, .82);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(27, 42, 59, .06);
}
.mini-review span {
  display: block;
  margin-top: 10px;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 800;
}
.booking-form-premium {
  position: sticky;
  top: 132px;
  padding: 34px;
  border-color: rgba(42, 127, 127, .16);
  box-shadow: 0 26px 70px rgba(27, 42, 59, .14);
}
.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.form-topline .category-pill { margin-bottom: 0; }
.form-topline .form-note {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}
.booking-form-premium h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 3vw, 42px);
}
.form-intro {
  max-width: 390px;
  margin-bottom: 24px;
  color: var(--text-mid);
  font-size: 16px;
}
.booking-form-premium fieldset {
  margin: 0 0 24px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.booking-form-premium legend {
  padding-right: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}
.booking-form-premium label span { color: var(--teal); }
.booking-form-premium input,
.booking-form-premium select,
.booking-form-premium textarea {
  min-height: 58px;
  border-color: #D7E3E1;
  background: #FCFFFE;
}
.booking-form-premium small {
  display: block;
  margin-top: 6px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
}
.booking-submit {
  min-height: 58px;
  font-size: 17px;
  box-shadow: 0 16px 30px rgba(47, 143, 91, .26);
}
.form-reassurance {
  margin: 14px 0 0;
  color: var(--text-light);
  font-size: 14px;
  text-align: center;
  font-weight: 800;
}
.trust-band {
  padding: 34px 0;
  background: var(--teal);
  color: var(--white);
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.trust-band-grid div {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}
.trust-band-grid strong,
.trust-band-grid span { display: block; }
.trust-band-grid strong { color: var(--white); font-size: 16px; line-height: 1.2; }
.trust-band-grid span { margin-top: 5px; color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 700; }
.contact-assurance { padding: 90px 0; }
.contact-assurance-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: stretch;
}
.premium-contact-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
}
.premium-contact-card h2 { font-size: clamp(34px, 3.6vw, 48px); }
.phone-cta {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}
.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}
.service-area-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(42, 127, 127, .18);
  border-radius: 999px;
  background: var(--mint-accent);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}
.map-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.map-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px 18px;
}
.map-card-head h3 {
  margin-bottom: 0;
  min-height: 0;
}
.map-card .map {
  min-height: 420px;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(.78) contrast(.95);
  transition: filter .2s ease;
}
.map-card:hover .map { filter: saturate(.95) contrast(1); }
.choice-cta { padding: 86px 0; }
.choice-cta-inner {
  max-width: 780px;
  margin: auto;
  text-align: center;
}
.choice-cta-inner p:not(.eyebrow) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}
.footer-premium .footer-grid {
  grid-template-columns: 1.45fr .85fr .9fr 1.1fr;
  padding-bottom: 10px;
}
.footer-brand-block p { max-width: 360px; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-weight: 900;
}

.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--white), var(--blush));
}
.final-cta-inner { max-width: 860px; }
.trust-row { color: var(--text-mid); font-size: 14px; font-weight: 800; }
.footer {
  padding: 78px 0 28px;
  background: var(--navy);
  color: #DCE7EF;
}
.footer p, .footer a { color: #DCE7EF; }
.footer .logo, .footer h3 { color: var(--white); }
.footer h3 { min-height: auto; font-family: var(--font-body); font-size: 15px; line-height: 1.2; text-transform: uppercase; letter-spacing: 0; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.2fr; gap: 36px; align-items: start; }
.footer a { display: block; margin: 9px 0; }
.footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer .badge { display: inline-flex; color: var(--white); background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; padding: 8px 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #B9C6D0;
  font-size: 14px;
}
.footer-bottom a { display: inline; margin: 0; color: var(--white); font-weight: 800; }
.footer-credit {
  margin-top: 16px;
  text-align: center;
  color: rgba(220, 231, 239, .62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-credit a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}
.footer-credit a:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-cta { display: none; }
.scroll-offer {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 44px);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(140%);
  transition: transform .25s ease;
}
.scroll-offer.show { transform: translateY(0); }
.scroll-offer a { color: var(--teal); }
.scroll-offer button { border: 0; background: transparent; color: var(--text-mid); font-size: 20px; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  background: rgba(27, 42, 59, .92);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 78vh; border-radius: var(--radius); }
.lightbox p { color: var(--white); margin-top: 14px; }
.lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 1020px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: min(340px, 86vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 118px 30px 30px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    font-size: 18px;
  }
  .drawer-overlay.open { position: fixed; inset: 0; z-index: 1001; background: rgba(27, 42, 59, .36); }
  .hero { background-position: center; }
  .hero-grid, .split, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .mini-form { max-width: 680px; }
  .cards, .reviews-grid, .pricing, .team, .cards.four, .steps, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .booking-hero-grid,
  .contact-assurance-grid { grid-template-columns: 1fr; }
  .booking-form-premium { position: static; max-width: 720px; }
  .booking-copy { padding-top: 0; }
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); }
  .addons { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 28px, var(--container)); }
  section { padding: 66px 0; }
  .announcement-inner { min-height: 42px; padding-right: 36px; font-size: 12px; }
  .nav-inner { min-height: 68px; gap: 14px; }
  .logo { font-size: 23px; }
  .logo-mark { width: 30px; height: 30px; font-size: 16px; }
  .phone-link { font-size: 13px; }
  .hero { min-height: auto; padding: 138px 0 58px; background: linear-gradient(180deg, rgba(255, 253, 249, .96), rgba(232, 248, 245, .72)), url("../assets/hero.png") center / cover; }
  .hero-copy, .hero .lead { max-width: 21rem; }
  h1 { font-size: clamp(36px, 9.8vw, 44px); line-height: 1.13; }
  h2 { font-size: clamp(32px, 9vw, 42px); line-height: 1.14; }
  h3 { font-size: 25px; }
  .lead, .page-hero p:not(.breadcrumb), .section-lead { max-width: 34rem; font-size: 19px; line-height: 1.55; }
  .card h3, .review h3 { min-height: 0; }
  .hero-proof, .cards, .reviews-grid, .pricing, .team, .cards.four, .steps, .stats-grid, .form-grid, .addons, .gallery, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .article-content { font-size: 18px; line-height: 1.66; }
  .article-hero h1 { max-width: 21rem; font-size: clamp(32px, 8.5vw, 38px); line-height: 1.12; }
  .article-hero p:not(.breadcrumb) { max-width: 21rem; }
  .article-meta { flex-direction: column; gap: 4px; font-size: 14px; }
  .cta-row .btn { width: 100%; }
  .mini-form, .booking-form, .contact-panel { padding: 22px; border-radius: 16px; }
  .page-hero { padding: 138px 0 62px; }
  .image-card { height: 360px; }
  .area-list { grid-template-columns: 1fr; }
  .map { min-height: 300px; }
  .gallery figure { height: 230px; }
  .pricing .popular { transform: none; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .scroll-offer { left: 12px; right: 12px; bottom: 88px; font-size: 13px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid var(--border);
    background: var(--white);
  }
  .mobile-cta a {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--teal);
    color: var(--white);
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
  }
  .mobile-cta a:last-child { background: var(--cta-green); }
  .booking-hero { padding: 130px 0 58px; background: linear-gradient(180deg, rgba(255, 253, 249, .96), rgba(232, 248, 245, .83)), url("../assets/room-2.png") center / cover; }
  .booking-hero-grid { gap: 30px; }
  .booking-copy,
  .booking-copy .lead,
  .booking-form-premium h2,
  .form-intro,
  .mini-review { max-width: 21rem; }
  .booking-copy h1 { max-width: 21rem; font-size: clamp(34px, 9vw, 40px); line-height: 1.12; }
  .trust-band-grid { grid-template-columns: 1fr; }
  .booking-proof-grid,
  .mini-review { display: none; }
  .mini-review { padding: 18px; font-size: 16px; }
  .booking-form-premium { width: 100%; max-width: 100%; padding: 24px; border-radius: 18px; }
  .booking-form-premium h2 { font-size: clamp(30px, 8vw, 36px); }
  .form-topline { display: block; }
  .form-topline .form-note { margin-top: 8px; text-align: left; }
  .booking-form-premium fieldset { margin-bottom: 20px; padding-top: 18px; }
  .booking-form-premium input,
  .booking-form-premium select,
  .booking-form-premium textarea { min-height: 56px; }
  .trust-band { padding: 24px 0; }
  .contact-assurance { padding: 62px 0; }
  .premium-contact-card { padding: 24px; }
  .map-card-head { display: block; padding: 24px 24px 16px; }
  .map-card .map { min-height: 300px; }
  .choice-cta { padding: 62px 0; }
  .choice-cta-inner p:not(.eyebrow) { font-size: 18px; }
  .footer-premium .footer-grid { grid-template-columns: 1fr; }
}
