:root {
  --navy: #0b2942;
  --navy-2: #061b2d;
  --lime: #70d900;
  --lime-dark: #3b8000;
  --papaya: #ff9d48;
  --cream: #fffaf0;
  --mist: #eef7f3;
  --white: #fff;
  --text: #233847;
  --muted: #61717d;
  --line: #dce7e4;
  --shadow: 0 20px 55px rgba(7, 38, 62, .14);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #2f7500; text-underline-offset: .18em; }
a:hover { color: var(--navy); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 {
  margin: 0 0 .55em;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.15rem; }
ul, ol { padding-left: 1.25rem; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(70px, 9vw, 116px) 0; }
.surface { background: var(--mist); }
.surface-dark { color: #e3eef4; background: var(--navy); }
.surface-dark h2, .surface-dark h3 { color: #fff; }
.content-narrow { max-width: 790px; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.25rem); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.surface-dark .eyebrow, .hero .eyebrow { color: #c4ff89; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--papaya); outline-offset: 3px; }

.topbar { color: #e8f5fb; background: var(--navy-2); font-size: .88rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 24px; padding-block: 8px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; flex-wrap: wrap; gap: 18px; }
.topbar a { color: #fff; font-weight: 750; text-decoration: none; }
.site-header { position: relative; z-index: 50; background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand img { width: 225px; height: auto; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  display: block;
  padding: 11px 9px;
  color: var(--navy);
  border-radius: 10px;
  font-size: .91rem;
  font-weight: 780;
  text-decoration: none;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--lime-dark); background: #efffe1; }
.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 10px 13px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  color: var(--navy-2);
  background: var(--lime);
  border: 2px solid var(--lime);
  border-radius: 999px;
  font-weight: 880;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { color: #fff; background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--navy); border-color: var(--navy); }
.button-dark:hover { background: var(--navy-2); border-color: var(--navy-2); }
.button-light { color: var(--navy); background: #fff; border-color: #fff; }
.button-light:hover { color: var(--navy); background: #efffe1; border-color: #efffe1; }
.button-outline { color: var(--navy); background: transparent; border-color: #a9bbb6; }
.button-outline:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.header-cta { flex: 0 0 auto; font-size: .9rem; }
.text-link { font-weight: 850; text-decoration-thickness: 2px; }

.hero { position: relative; min-height: 690px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--navy); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .67; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 28, 45, .94), rgba(5, 28, 45, .50) 62%, rgba(5, 28, 45, .14)); }
.hero-content { position: relative; z-index: 2; padding-block: 94px 54px; }
.hero-copy { max-width: 820px; }
.hero h1 { max-width: 820px; color: #fff; }
.hero-lead { max-width: 670px; font-size: clamp(1.12rem, 2.4vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.booking-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 46px;
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, .97);
  border-top: 5px solid var(--lime);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 6px; }
.field label { color: var(--navy); font-size: .8rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid #aabdb8;
  border-radius: 10px;
}
.field textarea { min-height: 145px; resize: vertical; }

.fact-strip { color: #fff; background: var(--lime-dark); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 20px 14px; border-right: 1px solid rgba(255,255,255,.25); font-weight: 800; text-align: center; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 38px; }
.section-head > div { max-width: 760px; }
.room-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.room-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(7, 38, 62, .08); }
.room-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.room-body { padding: 25px; }
.room-body h2, .room-body h3 { font-size: 1.8rem; }
.room-body h2 a, .room-body h3 a { color: var(--navy); text-decoration: none; }
.room-body h2 a:hover, .room-body h3 a:hover { color: var(--lime-dark); }
.room-kicker { margin: 0 0 7px; color: var(--lime-dark); font-size: .78rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.room-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.room-facts span { padding: 5px 10px; color: var(--navy); background: #efffe1; border-radius: 999px; font-size: .86rem; font-weight: 750; }
.price-note { margin: 0; color: var(--muted); font-size: .93rem; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 7vw, 88px); align-items: center; }
.split-media { overflow: hidden; border-radius: 80px 24px 24px 24px; box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 30px; }
.feature-list li::before { content: "✦"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 900; }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-card { padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.info-card h2, .info-card h3 { font-size: 1.48rem; }
.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.quote-card { padding: 28px; background: #fff; border-radius: 18px; box-shadow: 0 8px 28px rgba(7, 38, 62, .08); }
.quote-card blockquote { margin: 0 0 18px; font-family: Georgia, serif; font-size: 1.08rem; }
.quote-card cite { color: var(--lime-dark); font-style: normal; font-weight: 800; }

.page-hero { padding: clamp(72px, 10vw, 124px) 0 72px; background: linear-gradient(135deg, #e9f8e0, #eef8fb); }
.page-hero h1 { max-width: 920px; font-size: clamp(2.55rem, 6vw, 4.9rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; padding: 0; color: var(--muted); font-size: .88rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #8d9d9a; }
.listing-hero { padding: 54px 0 78px; background: var(--mist); }
.listing-layout { display: grid; grid-template-columns: 1.45fr .75fr; gap: 34px; align-items: start; }
.listing-media { overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.listing-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.listing-panel { position: sticky; top: 20px; padding: 28px; background: #fff; border-top: 5px solid var(--lime); border-radius: 20px; box-shadow: var(--shadow); }
.listing-panel .button { width: 100%; margin-top: 10px; }
.listing-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.listing-fact { padding: 12px; color: var(--muted); background: #f4f8f1; border-radius: 11px; font-size: .84rem; }
.listing-fact strong { display: block; color: var(--navy); font-size: 1.18rem; }
.detail-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 62px; align-items: start; }
.amenity-list { columns: 2; gap: 30px; }
.amenity-list li { break-inside: avoid; margin-bottom: 8px; }
.notice { padding: 18px 20px; background: #fff1d9; border-left: 5px solid var(--papaya); border-radius: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-grid figure { grid-column: span 4; overflow: hidden; margin: 0; border-radius: 16px; background: #dfe9e5; }
.gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(6) { grid-column: span 8; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.article-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.article-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-card > div { padding: 24px; }
.article-card h2 { font-size: 1.65rem; }
.article-card h2 a { color: var(--navy); text-decoration: none; }
.prose h2 { margin-top: 1.5em; font-size: 2rem; }
.prose h3 { margin-top: 1.4em; }
.prose li { margin-bottom: .55rem; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; }
.contact-card, .form-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 10px 34px rgba(7, 38, 62, .07); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-status { min-height: 1.6em; margin-top: 12px; color: var(--lime-dark); font-weight: 750; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.policy h2 { margin-top: 1.5em; font-size: 1.8rem; }

.cta-band { padding: 55px 0; color: #fff; background: var(--lime-dark); }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: #e7ffd0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.cta-inner > div { max-width: 780px; }
.cta-inner p:last-child { margin: 0; }
.site-footer { padding: 68px 0 24px; color: #d8e8ef; background: var(--navy-2); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 38px; }
.footer-logo { width: 230px; margin-bottom: 18px; padding: 9px; background: #fff; border-radius: 10px; }
.footer-title { color: #fff; font-family: inherit; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); font-size: .86rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .nav-list a { padding-inline: 7px; font-size: .85rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 730px); }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar p { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 100%; left: 15px; right: 15px; margin: 0; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: block; }
  .nav-list { align-items: stretch; flex-direction: column; }
  .nav-list a { padding: 12px 14px; font-size: 1rem; }
  .booking-bar { grid-template-columns: repeat(2, 1fr); }
  .booking-bar .button { width: 100%; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid, .split, .listing-layout, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .listing-panel { position: static; }
  .info-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure, .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(6) { grid-column: span 6; }
}
@media (max-width: 580px) {
  :root { --container: calc(100% - 24px); }
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .brand img { width: 190px; }
  .header-inner { min-height: 80px; gap: 12px; }
  .topbar-links { justify-content: center; gap: 8px 14px; }
  .topbar-links a:last-child { display: none; }
  .hero { min-height: 740px; }
  .hero-content { padding-block: 70px 32px; }
  .hero-actions .button { width: 100%; }
  .booking-bar { grid-template-columns: 1fr; margin-top: 32px; }
  .section-head, .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .room-grid, .info-grid, .quote-grid, .article-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .amenity-list { columns: 1; }
  .gallery-grid { grid-auto-rows: 190px; }
  .gallery-grid figure, .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(6) { grid-column: span 12; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media print {
  .topbar, .site-header, .booking-bar, .cta-band, .site-footer, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 28px 0; }
}
