:root {
  --ink: #10211e;
  --green-950: #102923;
  --green-900: #17352f;
  --green-800: #1f463d;
  --green-700: #2e5b4f;
  --sage: #9eb4a8;
  --sand: #f1e7d2;
  --cream: #fbf8f0;
  --white: #ffffff;
  --gold: #c8a76a;
  --line: rgba(16, 41, 35, 0.14);
  --shadow: 0 24px 60px rgba(12, 35, 29, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: 260ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }
.section-dark { background: var(--green-950); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 240, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 41, 35, 0.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-800), var(--green-950));
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 0.98rem; }
.brand-copy small { margin-top: 4px; color: #66766f; font-size: 0.75rem; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 0.9rem; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform var(--transition);
}
.main-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--green-900); color: var(--white); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: var(--transition); }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, rgba(7, 20, 17, .36));
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; padding: 90px 0 110px; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #d8c7a3; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--green-700); }
.hero h1, .section-heading h2, .schedule-copy h2, .location-card h2, .cta-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}
.hero h1 { margin: 20px 0 18px; font-size: clamp(4.2rem, 8vw, 7rem); line-height: .88; font-weight: 500; }
.hero h1 span { color: var(--sand); }
.hero-lead { max-width: 580px; margin: 0; color: #d1ddd7; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sand); color: var(--green-950); box-shadow: 0 12px 30px rgba(241, 231, 210, .14); }
.btn-primary:hover { background: var(--white); }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-dark { background: var(--green-900); color: var(--white); }
.btn-light { background: var(--white); color: var(--green-950); }
.hero-meta { display: flex; gap: 46px; margin-top: 48px; }
.hero-meta div { display: grid; }
.hero-meta span, .hero-meta small { color: #92aaa0; font-size: .78rem; }
.hero-meta strong { margin: 3px 0; font-size: 1.35rem; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .44; }
.orb-one { width: 520px; height: 520px; right: -170px; top: -190px; background: radial-gradient(circle, #8aaa7f 0%, rgba(138,170,127,0) 68%); }
.orb-two { width: 430px; height: 430px; left: 26%; bottom: -280px; background: radial-gradient(circle, #947444 0%, rgba(148,116,68,0) 68%); }

.hero-visual { position: relative; }
.hotel-card { padding: 16px; border-radius: 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 38px 80px rgba(0,0,0,.18); backdrop-filter: blur(8px); transform: rotate(1.5deg); }
.hotel-card-top, .hotel-card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.hotel-card-top { padding: 6px 4px 16px; }
.mini-badge { font-size: .77rem; font-weight: 800; }
.status-dot { display: inline-flex; align-items: center; gap: 8px; color: #c8d8d1; font-size: .76rem; }
.status-dot i { width: 8px; height: 8px; border-radius: 50%; background: #9bd48d; box-shadow: 0 0 0 4px rgba(155,212,141,.12); }
.window-scene { position: relative; min-height: 360px; overflow: hidden; border-radius: 24px; background: linear-gradient(#d9d3b8 0 44%, #8da795 44% 100%); }
.sun { position: absolute; width: 94px; height: 94px; border-radius: 50%; right: 58px; top: 46px; background: #f2e5be; box-shadow: 0 0 40px rgba(242,229,190,.35); }
.hill { position: absolute; border-radius: 50% 50% 0 0; transform-origin: bottom; }
.hill-a { width: 430px; height: 185px; background: #607e70; right: -110px; bottom: 0; transform: rotate(-6deg); }
.hill-b { width: 350px; height: 150px; background: #769181; left: -80px; bottom: -10px; transform: rotate(8deg); }
.building { position: absolute; width: 230px; height: 154px; left: 50%; bottom: 24px; transform: translateX(-50%); border-radius: 4px 4px 10px 10px; background: #efe3c9; border-top: 12px solid #294c41; box-shadow: 0 18px 30px rgba(19,44,36,.18); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 28px 28px; }
.building i { display: block; height: 30px; background: #284a40; border-radius: 3px; box-shadow: inset 0 0 0 4px rgba(255,255,255,.06); }
.palm { position: absolute; width: 18px; height: 90px; background: #453f2c; border-radius: 12px; bottom: 20px; }
.palm::before, .palm::after, .palm i::before, .palm i::after { content: ""; position: absolute; width: 72px; height: 15px; top: -4px; background: #315e4e; border-radius: 100% 0 100% 0; transform-origin: left center; }
.palm::before { transform: rotate(-28deg); }
.palm::after { transform: rotate(24deg); }
.palm i::before { transform: rotate(155deg); }
.palm i::after { transform: rotate(205deg); }
.palm-a { left: 72px; }
.palm-b { right: 62px; height: 75px; transform: scale(.86); }
.hotel-card-bottom { padding: 18px 4px 4px; }
.hotel-card-bottom p { margin: 0; color: #ccdbd4; font-size: .82rem; line-height: 1.45; }
.hotel-card-bottom a { color: var(--sand); font-weight: 800; font-size: .82rem; }

.quick-info { position: relative; z-index: 3; margin-top: -56px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.quick-item { display: flex; align-items: center; gap: 14px; min-height: 112px; padding: 22px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.icon-box { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 13px; background: #edf2ed; color: var(--green-800); font-weight: 900; }
.quick-item div { display: grid; gap: 2px; }
.quick-item small { color: #78857f; font-size: .72rem; }
.quick-item strong { font-size: .9rem; line-height: 1.3; }

.section-heading { max-width: 640px; margin-bottom: 48px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .schedule-copy h2, .location-card h2, .cta-card h2 { margin: 14px 0 12px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .98; font-weight: 500; }
.section-heading p, .schedule-copy p, .cta-card p { margin: 0; color: #6d7b75; font-size: 1rem; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card { position: relative; min-height: 390px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.62); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: var(--white); }
.room-card.featured { background: var(--sand); }
.room-number { position: absolute; right: 22px; top: 18px; color: rgba(16,41,35,.10); font-family: Georgia, serif; font-size: 4.8rem; line-height: 1; }
.bed-illustration { position: relative; width: 138px; height: 90px; margin: 18px 0 48px; }
.bed-illustration span { position: absolute; left: 0; bottom: 8px; width: 138px; height: 48px; border-radius: 9px 9px 4px 4px; background: var(--green-900); }
.bed-illustration span::before { content: ""; position: absolute; left: 10px; top: -19px; width: 118px; height: 28px; border-radius: 12px 12px 4px 4px; background: var(--sage); }
.bed-illustration i, .bed-illustration b, .bed-illustration em { position: absolute; bottom: 0; width: 8px; height: 18px; background: var(--green-950); border-radius: 4px; }
.bed-illustration i { left: 12px; } .bed-illustration b { right: 12px; }
.bed-illustration.triple em { left: 65px; }
.room-card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.room-card p { margin: 0 0 24px; color: #6c7974; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--green-800); }
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }
.capacity-note { margin-top: 24px; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-radius: var(--radius-md); background: var(--green-950); color: var(--white); }
.capacity-note span { color: #9eb2aa; text-transform: uppercase; font-weight: 800; font-size: .74rem; letter-spacing: .12em; }
.capacity-note strong { font-size: 1.25rem; }

.pricing-section { background: #efeadd; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { padding: 36px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(16,41,35,.08); display: flex; flex-direction: column; min-height: 350px; }
.price-card.main-price { background: var(--green-950); color: var(--white); transform: translateY(-14px); box-shadow: 0 30px 60px rgba(16,41,35,.2); }
.price-label { width: fit-content; padding: 7px 11px; border-radius: 999px; background: #edf1eb; color: var(--green-800); font-size: .74rem; font-weight: 800; }
.main-price .price-label { background: rgba(255,255,255,.1); color: var(--sand); }
.price { display: grid; margin: 44px 0 18px; }
.price small { color: #72807a; }
.main-price .price small { color: #9eb2aa; }
.price strong { font-family: Georgia, serif; font-weight: 500; letter-spacing: -.04em; font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; }
.price-card p { margin: 0 0 30px; color: #77827d; }
.main-price p { color: #c4d1cc; }
.price-card .btn { margin-top: auto; }

.amenities-section { background: var(--cream); }
.amenity-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.amenity-card { min-height: 134px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.58); transition: transform var(--transition), background var(--transition); }
.amenity-card:hover { transform: translateY(-5px); background: var(--white); }
.amenity-card span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--green-900); color: var(--white); font-size: 1.15rem; }
.amenity-card strong { margin-top: 22px; font-size: 1rem; }

.schedule-section { background: var(--green-950); color: var(--white); }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.schedule-copy p { color: #aec0b9; max-width: 500px; }
.schedule-copy .btn { margin-top: 30px; }
.timeline { position: relative; display: grid; gap: 14px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 34px; bottom: 34px; width: 1px; background: rgba(255,255,255,.15); }
.timeline article { position: relative; z-index: 1; display: flex; align-items: center; gap: 22px; min-height: 104px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.timeline-dot { width: 14px; height: 14px; flex: 0 0 14px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 0 8px var(--green-950); }
.timeline div { display: grid; }
.timeline small { color: #94aaa1; }
.timeline strong { font-size: 1.5rem; }

.location-section { background: #f6f0e5; }
.location-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.location-card { padding: 46px; border-radius: var(--radius-xl); background: var(--white); box-shadow: 0 20px 44px rgba(19,44,36,.08); }
.location-pin { width: 56px; height: 56px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--green-950); color: var(--white); font-size: 1.45rem; }
.location-card h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); }
.location-card address { margin: 24px 0 32px; font-style: normal; color: #61706a; line-height: 1.8; }
.location-art { position: relative; min-height: 500px; border-radius: var(--radius-xl); overflow: hidden; background: #d9e1d8; }
.location-art::before, .location-art::after { content: ""; position: absolute; border: 18px solid rgba(255,255,255,.54); border-radius: 48%; }
.location-art::before { width: 460px; height: 270px; left: -90px; top: -40px; transform: rotate(25deg); }
.location-art::after { width: 400px; height: 330px; right: -170px; bottom: -110px; transform: rotate(-38deg); }
.map-lines { position: absolute; height: 18px; border-radius: 999px; background: rgba(255,255,255,.72); transform-origin: left center; }
.line-a { width: 510px; left: 60px; top: 110px; transform: rotate(22deg); }
.line-b { width: 430px; left: 100px; top: 350px; transform: rotate(-30deg); }
.line-c { width: 380px; left: 300px; top: 175px; transform: rotate(70deg); }
.map-point { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: rgba(23,53,47,.28); }
.point-a { left: 140px; top: 210px; } .point-b { right: 100px; bottom: 130px; }
.map-marker { position: absolute; left: 52%; top: 46%; width: 70px; height: 70px; transform: translate(-50%,-50%) rotate(45deg); border-radius: 50% 50% 50% 6px; background: var(--green-950); box-shadow: 0 14px 34px rgba(16,41,35,.25); }
.map-marker span { position: absolute; width: 24px; height: 24px; left: 23px; top: 23px; border-radius: 50%; background: var(--sand); }
.map-label { position: absolute; left: 52%; top: calc(46% + 62px); transform: translateX(-50%); padding: 9px 13px; background: var(--white); border-radius: 10px; box-shadow: 0 10px 25px rgba(16,41,35,.12); font-weight: 800; font-size: .78rem; white-space: nowrap; }

.cta-section { padding: 80px 0; background: var(--cream); }
.cta-card { padding: 54px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; border-radius: var(--radius-xl); background: var(--green-800); color: var(--white); box-shadow: var(--shadow); }
.cta-card h2 { margin-bottom: 10px; }
.cta-card p { color: #c5d1cc; }
.cta-contact { display: grid; justify-items: end; gap: 8px; }
.phone-display { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; letter-spacing: -.03em; }
.cta-contact span { color: #c6d2cd; font-size: .82rem; }
.cta-contact .btn { margin-top: 12px; min-width: 180px; }

.site-footer { padding: 64px 0 30px; background: #0c1e1a; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; }
.footer-brand { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.footer-grid p { max-width: 620px; color: #8fa29a; }
.footer-links { display: grid; align-content: start; gap: 10px; justify-items: end; color: #c3d0ca; }
.footer-links a:hover { color: var(--sand); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: #758a81; font-size: .78rem; }
.footer-bottom a { color: #b7c6c0; }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 900; min-height: 54px; padding: 0 18px; display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; background: var(--green-900); color: var(--white); box-shadow: 0 14px 30px rgba(16,41,35,.26); border: 1px solid rgba(255,255,255,.14); transition: transform var(--transition); }
.floating-contact:hover { transform: translateY(-3px); }

.reveal { opacity: 1; transform: none; transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .main-nav {
    position: fixed;
    inset: 82px 18px auto;
    z-index: 1001;
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav a { padding: 12px 10px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-visual { max-width: 700px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .room-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.main-price { transform: none; }
  .amenity-layout, .schedule-grid, .location-grid, .cta-card { grid-template-columns: 1fr; }
  .amenity-layout, .schedule-grid { gap: 48px; }
  .cta-contact { justify-items: start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 80px 0; }
  .nav-wrap { min-height: 72px; }
  .brand-copy small { display: none; }
  .main-nav { inset: 72px 14px auto; }
  .hero { min-height: auto; }
  .hero-grid { padding: 72px 0 100px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 5.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 24px; justify-content: space-between; }
  .hero-meta strong { font-size: 1.15rem; }
  .window-scene { min-height: 300px; }
  .building { width: 200px; height: 140px; padding: 28px 24px; gap: 16px; }
  .palm-a { left: 42px; } .palm-b { right: 36px; }
  .quick-info { margin-top: -42px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); min-height: 92px; }
  .quick-item:last-child { border-bottom: 0; }
  .section-heading h2, .schedule-copy h2, .location-card h2, .cta-card h2 { font-size: clamp(2.6rem, 14vw, 4.4rem); }
  .room-card { min-height: auto; }
  .capacity-note { align-items: flex-start; flex-direction: column; }
  .price-card { min-height: 320px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .schedule-grid { gap: 42px; }
  .location-card { padding: 32px 26px; }
  .location-art { min-height: 380px; }
  .map-lines { transform-origin: center; }
  .line-a { left: -40px; top: 96px; }
  .line-b { left: 20px; top: 285px; }
  .line-c { left: 180px; top: 120px; }
  .cta-card { padding: 34px 24px; }
  .phone-display { font-size: clamp(1.85rem, 10vw, 2.8rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { justify-items: start; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: 14px; bottom: 14px; min-height: 50px; padding: 0 14px; }
}
