:root {
  --ink: #17343b;
  --muted: #5f7478;
  --teal: #174c4f;
  --teal-dark: #10383a;
  --aqua: #dceced;
  --sand: #f5ebdd;
  --sun: #f2c66d;
  --terracotta: #b94f32;
  --terracotta-dark: #963b23;
  --cream: #fffaf3;
  --white: #ffffff;
  --danger-bg: #fff0ed;
  --danger: #a33f2d;
  --shadow: 0 18px 50px rgba(23, 52, 59, 0.12);
  --radius: 24px;
  --radius-sm: 15px;
  --max: 1240px;
  --font-heading: "Roboto Condensed", "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: var(--teal); text-underline-offset: 0.18em; }
a:hover { color: var(--terracotta); }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -8rem;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: 0 0 10px 10px;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { max-width: 860px; }
.section { padding: clamp(3.8rem, 7vw, 7.2rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section-sand { background: var(--sand); }
.section-aqua { background: var(--aqua); }
.section-teal { background: var(--teal); color: white; }
.section-teal p, .section-teal .eyebrow { color: rgba(255,255,255,.82); }

h1, h2, h3, h4 {
  margin: 0 0 .8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.018em;
  color: inherit;
}
h1 { font-size: clamp(2.35rem, 4.8vw, 4.65rem); max-width: 18ch; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); max-width: 21ch; }
h3 { font-size: clamp(1.18rem, 1.5vw, 1.48rem); }
.heading-card { font-size: clamp(1.55rem, 2vw, 1.9rem); max-width: none; }
p { margin: 0 0 1.2rem; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.38rem); line-height: 1.65; max-width: 70ch; color: #425e63; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading p { max-width: 55ch; margin: 0; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,243,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23,52,59,.09);
}
.header-inner { height: 84px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--teal); color: white; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-family: var(--font-heading); font-size: 1.12rem; font-weight: 700; }
.brand-text small { font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; align-items: center; margin-left: auto; }
.main-nav > a, .nav-group > button {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: .8rem .72rem;
  font-size: .93rem;
  font-weight: 750;
  cursor: pointer;
}
.main-nav > a:hover, .nav-group > button:hover, .main-nav .active { color: var(--terracotta); }
.nav-group { position: relative; }
.nav-group > button::after { content: "⌄"; margin-left: .35rem; }
.dropdown {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 235px;
  display: grid;
  gap: .15rem;
  padding: .65rem;
  border: 1px solid rgba(23,52,59,.08);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}
.dropdown a { padding: .7rem .8rem; border-radius: 11px; text-decoration: none; color: var(--ink); font-weight: 650; }
.dropdown a:hover { background: var(--aqua); color: var(--teal); }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown, .nav-group.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.header-cta { margin-left: .5rem; }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--teal); color: white; cursor: pointer; }
.nav-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; background: currentColor; transition: .2s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .78rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--terracotta);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(185,79,50,.2);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--terracotta-dark); color: white; box-shadow: 0 12px 28px rgba(185,79,50,.28); }
.button-secondary { background: transparent; border-color: var(--teal); color: var(--teal); box-shadow: none; }
.button-secondary:hover { background: var(--teal); color: white; }
.button-light { background: white; color: var(--teal); box-shadow: none; }
.button-light:hover { background: var(--sun); color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: 1.7rem; }
.text-link { font-weight: 800; text-decoration-thickness: 1px; }

.hero { padding: clamp(2.5rem, 6vw, 5.8rem) 0 clamp(3rem, 7vw, 7rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy p { max-width: 60ch; }
.hero-visual { position: relative; min-height: clamp(420px, 54vw, 650px); }
.hero-image-main, .hero-image-small {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-image-main { inset: 0 0 5% 9%; width: 84%; height: 89%; border-radius: 32px 32px 90px 32px; }
.hero-image-small { left: 0; bottom: 0; width: 42%; height: 39%; border: 9px solid var(--cream); border-radius: 26px; }
.hero-badge { position: absolute; right: 0; top: 8%; width: 130px; height: 130px; padding: 1rem; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--sun); color: var(--ink); font-weight: 850; line-height: 1.25; box-shadow: var(--shadow); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; position: relative; z-index: 4; }
.fact { padding: 1.25rem 1.3rem; border-radius: 18px; background: white; box-shadow: var(--shadow); }
.fact strong { display: block; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--teal); }
.fact span { color: var(--muted); font-size: .9rem; }

.page-hero { padding: clamp(3rem, 6vw, 6rem) 0; background: var(--sand); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.page-hero h1 { font-size: clamp(2.3rem, 4.5vw, 4.15rem); }
.page-hero img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 30px 30px 80px 30px; box-shadow: var(--shadow); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; font-size: .86rem; color: var(--muted); }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: .4rem; color: #91a1a3; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.2rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.card { padding: clamp(1.35rem, 2.5vw, 2.2rem); border-radius: var(--radius); background: white; box-shadow: 0 12px 35px rgba(23,52,59,.08); }
.card-tint:nth-child(3n+1) { background: var(--aqua); }
.card-tint:nth-child(3n+2) { background: var(--sand); }
.card-tint:nth-child(3n+3) { background: #f9e3d9; }
.card p:last-child { margin-bottom: 0; }
.icon-tile { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1.1rem; border-radius: 14px; background: var(--teal); color: white; font-size: 1.35rem; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-media img { min-height: 430px; max-height: 600px; object-fit: cover; border-radius: 32px 32px 90px 32px; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }
.check-list, .plain-list { padding: 0; margin: 1.2rem 0; list-style: none; }
.check-list li { position: relative; padding: .45rem 0 .45rem 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--terracotta); font-weight: 900; }
.plain-list li { padding: .45rem 0; border-bottom: 1px solid rgba(23,52,59,.1); }

.room-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; }
.room-card { padding: 1.7rem; border-radius: var(--radius); background: white; border: 1px solid rgba(23,52,59,.09); }
.room-card.featured { grid-column: span 2; background: var(--teal); color: white; }
.room-meta { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0; }
.pill { display: inline-flex; padding: .32rem .7rem; border-radius: 999px; background: var(--aqua); color: var(--teal); font-size: .82rem; font-weight: 800; }
.featured .pill { background: rgba(255,255,255,.14); color: white; }

.offers { display: grid; gap: 1rem; }
.offer-card { display: grid; grid-template-columns: minmax(180px,.8fr) minmax(0,1.5fr) auto; gap: 1.2rem; align-items: center; padding: 1.2rem 1.4rem; border-radius: 20px; background: white; border: 1px solid rgba(23,52,59,.1); }
.offer-logo { min-height: 70px; display: grid; place-items: center; border-radius: 14px; background: #f7f8f5; font-weight: 900; letter-spacing: -.02em; font-size: 1.15rem; color: var(--brand-color, var(--ink)); }
.offer-logo img { width: auto; max-width: 150px; height: 60px; object-fit: contain; }
.offer-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.notice { padding: 1.2rem 1.35rem; border-radius: 16px; background: #fff7d9; border-left: 5px solid var(--sun); }
.notice-danger { background: var(--danger-bg); border-left-color: var(--danger); color: #713127; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 1rem; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 22px; background: var(--aqua); }
.gallery figure:nth-child(1), .gallery figure:nth-child(4) { grid-column: span 7; }
.gallery figure:nth-child(2), .gallery figure:nth-child(3) { grid-column: span 5; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { position: absolute; left: .85rem; bottom: .85rem; padding: .35rem .65rem; border-radius: 9px; background: rgba(16,56,58,.86); color: white; font-size: .8rem; }

.faq { display: grid; gap: .75rem; }
.faq-item { border: 1px solid rgba(23,52,59,.1); border-radius: 16px; background: white; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.2rem; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 820; cursor: pointer; }
.faq-question::after { content: "+"; font-size: 1.4rem; color: var(--terracotta); }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 1.2rem 1.1rem; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.contact-card { min-height: 220px; padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: var(--radius); }
.contact-card:nth-child(1) { background: var(--aqua); }
.contact-card:nth-child(2) { background: var(--sand); }
.contact-card:nth-child(3) { background: #f9e3d9; }
.contact-card:nth-child(4) { background: #e9efd7; }
.contact-email { font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 850; word-break: break-word; }

.table-wrap { overflow-x: auto; border-radius: 18px; box-shadow: 0 8px 24px rgba(23,52,59,.08); }
table { width: 100%; border-collapse: collapse; background: white; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(23,52,59,.1); vertical-align: top; }
th { background: var(--teal); color: white; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(1.7rem, 4vw, 3.4rem); border-radius: 30px; background: var(--teal); color: white; }
.cta-panel h2 { margin-bottom: .5rem; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.82); max-width: 65ch; }

.site-footer { padding: 4.5rem 0 2rem; background: #0f3034; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; }
.site-footer .brand { color: white; margin-bottom: 1rem; }
.site-footer p { color: rgba(255,255,255,.68); max-width: 42ch; }
.site-footer h3 { font-family: inherit; font-size: .86rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-links a:hover { color: var(--sun); }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.55); font-size: .82rem; }
.sticky-book { display: none; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 84px 0 0; display: none; align-content: start; padding: 1.2rem; background: var(--cream); overflow-y: auto; }
  .nav-open .main-nav { display: grid; }
  .main-nav > a, .nav-group > button { width: 100%; display: flex; justify-content: space-between; padding: 1rem; border-bottom: 1px solid rgba(23,52,59,.1); text-align: left; }
  .dropdown { position: static; min-width: 0; display: none; padding: .3rem 0 .5rem 1rem; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; }
  .nav-group.open .dropdown { display: grid; }
  .nav-group:hover .dropdown:not(:focus-within) { display: none; }
  .nav-group.open:hover .dropdown { display: grid; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; }
  .facts { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .header-inner { height: 72px; }
  .main-nav { inset: 72px 0 0; }
  .brand-text small { display: none; }
  .hero { padding-top: 2rem; }
  h1 { font-size: clamp(2.15rem, 10vw, 3.15rem); }
  h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  h3 { font-size: clamp(1.15rem, 5.2vw, 1.38rem); }
  .hero-visual { min-height: 430px; }
  .hero-image-main { inset: 0 0 6% 5%; width: 90%; border-radius: 25px 25px 64px 25px; }
  .hero-image-small { width: 49%; height: 36%; border-width: 6px; }
  .hero-badge { width: 102px; height: 102px; font-size: .78rem; }
  .facts, .grid-2, .grid-3, .grid-4, .split, .room-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .room-card.featured { grid-column: span 1; }
  .split.reverse .split-media, .split.reverse .split-copy { order: initial; }
  .split-media img { min-height: 320px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 1rem; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-card .button { width: 100%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery figure:nth-child(n) { grid-column: span 1; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .sticky-book { position: fixed; z-index: 90; left: .6rem; right: .6rem; bottom: .6rem; display: flex; justify-content: center; min-height: 54px; border-radius: 16px; }
}

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

@media print {
  .site-header, .sticky-book, .button-row, .site-footer { display: none !important; }
  body { background: white; color: black; }
  .section, .section-sm { padding: 1.5rem 0; }
}
