:root {
  --ink: #20302f;
  --charcoal: #173b3b;
  --cream: #fff4e7;
  --paper: #fffdf8;
  --gold: #d08a35;
  --brick: #c5523f;
  --teal: #19786f;
  --sage: #9ab59e;
  --muted: #66706d;
  --line: #ded7cb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 5vw; color: white; border-bottom: 1px solid rgba(255,255,255,.28);
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid currentColor; border-radius: 50%;
  font-family: "Playfair Display", serif; font-size: 15px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 600; }
.brand small { margin-top: 5px; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.nav a:not(.nav-cta) { opacity: .86; }
.nav a:hover { opacity: 1; }
.nav-cta { padding: 13px 20px; border: 1px solid rgba(255,255,255,.7); }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px; background: white; }

.hero { position: relative; min-height: 760px; height: 100vh; color: white; overflow: hidden; }
.hero > img { height: 100%; object-fit: cover; object-position: center; }
.hero > img { object-position: center 58%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,18,16,.82) 0%, rgba(25,24,21,.48) 44%, rgba(20,20,18,.1) 75%), linear-gradient(0deg, rgba(0,0,0,.35), transparent 45%); }
.hero-content { position: absolute; left: 8vw; top: 50%; width: min(720px, 75vw); transform: translateY(-44%); }
.eyebrow { margin: 0 0 22px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: #e7c99f; }
h1, h2 { margin: 0; font-family: "Playfair Display", serif; font-weight: 600; letter-spacing: -.035em; line-height: .96; }
h1 { font-size: clamp(58px, 7.6vw, 116px); }
h1 em, h2 em { font-weight: 500; }
.hero-copy { max-width: 560px; margin: 30px 0; color: rgba(255,255,255,.83); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 54px; padding: 0 26px; border: 0; cursor: pointer; font-weight: 600; }
.button.primary { background: linear-gradient(135deg, var(--brick), #e18042); color: white; box-shadow: 0 12px 30px rgba(197,82,63,.22); }
.button:hover { filter: brightness(.94); }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.text-link.light { color: white; }
.hero-note { position: absolute; right: 5vw; bottom: 42px; display: flex; align-items: center; gap: 14px; font-size: 13px; }
.hero-note small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.65); }
.pin { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; }

.section { padding: 120px 8vw; }
.section-label { color: var(--muted); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.section-label span { color: var(--gold); margin-bottom: 14px; }
.intro { display: grid; grid-template-columns: 80px 1.15fr 1fr; gap: 5vw; align-items: start; }
h2 { font-size: clamp(48px, 5.4vw, 82px); }
.intro-detail { padding-top: 44px; }
.intro-detail p, .section-head > p, .facility-copy > p, .location-copy > p { color: var(--muted); font-size: 16px; line-height: 1.85; }
.intro-detail .text-link { margin-top: 20px; }

.warm { background: linear-gradient(145deg, #fff5e8 0%, #f5eee1 55%, #e8f1ea 100%); }
.section-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 65px; }
.section-head > p { max-width: 420px; margin: 0; }
.room-grid { display: grid; gap: 34px; }
.room-card { display: grid; grid-template-columns: 1.25fr 1fr; min-height: 470px; background: var(--paper); border-top: 4px solid var(--gold); box-shadow: 0 18px 45px rgba(58,53,42,.08); }
.room-card:nth-child(2) { border-top-color: var(--teal); }
.room-card:nth-child(3) { border-top-color: var(--brick); }
.room-card.reverse { grid-template-columns: 1fr 1.25fr; }
.room-card.reverse .room-image { order: 2; }
.room-image { overflow: hidden; }
.room-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.room-card:hover .room-image img { transform: scale(1.025); }
.room-info { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.room-number { color: var(--gold); font-size: 11px; letter-spacing: .15em; }
.room-info h3 { margin: 5px 0 22px; font-family: "Playfair Display", serif; font-size: 34px; }
.room-info > p { color: var(--muted); line-height: 1.75; }
.room-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 32px; }
.room-meta span { padding: 7px 10px; background: var(--cream); color: #595750; font-size: 11px; }
.room-price { display: flex; align-items: baseline; gap: 9px; margin: 0 0 26px; color: var(--brick); }
.room-price strong { font-family: "Playfair Display", serif; font-size: 30px; }
.room-price span { color: var(--muted); font-size: 11px; }
.room-info > a { align-self: flex-start; border-bottom: 1px solid var(--ink); padding-bottom: 5px; font-size: 13px; font-weight: 600; }
.rate-note { max-width: 620px; margin: 32px auto 0; color: var(--muted); text-align: center; font-size: 12px; }
.stay-offer {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  margin-top: 34px; padding: 26px 30px; color: white;
  background: linear-gradient(120deg, var(--teal), #24574f 58%, #6d4b3d);
  box-shadow: 0 16px 38px rgba(33,73,67,.16);
}
.stay-offer-icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
  font-family: "Playfair Display", serif; font-size: 23px;
}
.stay-offer strong { font-family: "Playfair Display", serif; font-size: 22px; }
.stay-offer p { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
.stay-offer a { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.7); white-space: nowrap; font-size: 11px; font-weight: 700; }

.facilities { display: grid; grid-template-columns: 1.05fr 1fr; gap: 8vw; align-items: center; }
.facility-visual { position: relative; }
.facility-visual img { height: 690px; object-fit: cover; }
.image-caption { position: absolute; right: -30px; bottom: 34px; padding: 20px 24px; background: var(--paper); font-size: 12px; box-shadow: 0 16px 45px rgba(30,25,20,.12); }
.image-caption span { color: var(--gold); margin-right: 12px; }
.facility-copy > p { max-width: 540px; }
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 38px; border-top: 1px solid var(--line); }
.amenity-grid > div { display: grid; grid-template-columns: 36px 1fr; padding: 22px 0; border-bottom: 1px solid var(--line); }
.amenity-grid > div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 22px; }
.amenity-grid > div:nth-child(even) { padding-left: 22px; }
.amenity-grid span { grid-row: span 2; color: var(--teal); font-size: 20px; }
.amenity-grid strong { font-size: 13px; }
.amenity-grid small { color: var(--muted); font-size: 11px; margin-top: 3px; }

.feature-band { position: relative; min-height: 650px; color: white; display: flex; align-items: center; }
.feature-band > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.feature-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,25,23,.82), rgba(25,25,23,.25)); }
.feature-content { position: relative; z-index: 1; width: 550px; margin-left: 8vw; }
.feature-content p:last-child { color: rgba(255,255,255,.75); line-height: 1.8; max-width: 450px; }
.feature-pills { position: absolute; z-index: 2; left: 8vw; right: 8vw; bottom: 36px; display: flex; gap: 10px; }
.feature-pills span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.4); font-size: 11px; backdrop-filter: blur(5px); }

.gallery-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; grid-auto-rows: 280px; gap: 16px; }
.gallery-item { padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: #ddd; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.attractions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(208,138,53,.15), transparent 24%),
    radial-gradient(circle at 92% 85%, rgba(25,120,111,.14), transparent 28%),
    var(--paper);
}
.attraction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.attraction-card {
  display: flex; flex-direction: column; min-height: 320px; padding: 34px;
  border-radius: 4px; color: white; transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 16px 35px rgba(31,45,42,.12);
}
.attraction-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(31,45,42,.18); }
.attraction-card.viewpoint {
  grid-column: span 2;
  background:
    linear-gradient(110deg, rgba(20,67,72,.93), rgba(25,120,111,.72)),
    linear-gradient(145deg, #1f7475, #16444a);
}
.attraction-card.nature { background: linear-gradient(145deg, #51765b, #274c43); }
.attraction-card.shopping { background: linear-gradient(145deg, #d9893f, #b9513e); }
.attraction-card.medical { background: linear-gradient(145deg, #31938a, #17615d); }
.attraction-card.entertainment { background: linear-gradient(145deg, #745c91, #473b66); }
.attraction-card.city { background: linear-gradient(145deg, #317a9a, #19506d); }
.attraction-card.wine { background: linear-gradient(145deg, #9a5b64, #623c50); }
.attraction-icon {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 21px;
}
.attraction-card > p:first-of-type { margin: 0 0 10px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.attraction-card h3 { margin: 0 0 14px; font-family: "Playfair Display", serif; font-size: 27px; line-height: 1.1; }
.attraction-card h3 + p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.65; }
.attraction-card > div { display: flex; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 30px; font-size: 10px; }
.attraction-card > div span { color: rgba(255,255,255,.75); }
.travel-note { margin: 24px 0 0; color: var(--muted); font-size: 10px; text-align: right; }

.location { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; background: linear-gradient(135deg, #fff0df, #e6f0e9); }
.location-copy > p { max-width: 570px; }
.location-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.location-tags span { padding: 9px 12px; border: 1px solid var(--line); font-size: 11px; }
.location-card { background: var(--paper); box-shadow: 0 20px 60px rgba(40,33,25,.1); }
.map-art { position: relative; height: 370px; overflow: hidden; background: #dad6ca; }
.road { position: absolute; height: 28px; width: 140%; background: #efede5; box-shadow: 0 0 0 2px #c7c1b5; transform-origin: center; }
.road.one { left: -30%; top: 48%; transform: rotate(16deg); }
.road.two { left: -25%; top: 18%; transform: rotate(-37deg); }
.road.three { left: 4%; top: 75%; transform: rotate(-8deg); }
.map-pin { position: absolute; left: 52%; top: 45%; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--brick); color: white; box-shadow: 0 8px 30px rgba(80,40,28,.3); }
.map-pin b { transform: rotate(45deg); font-family: "Playfair Display", serif; }
.location-card > div:last-child { padding: 28px 34px; }
.location-card small, .location-card strong { display: block; }
.location-card small { margin-bottom: 7px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.location-card strong { font-family: "Playfair Display", serif; font-size: 24px; line-height: 1.25; }
.map-link { display: inline-block; margin-top: 17px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 600; }

.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; padding: 120px 8vw; color: white; background: linear-gradient(135deg, #173b3b 0%, #214f49 58%, #69463c 100%); }
.booking-intro > p:not(.eyebrow):not(.booking-domain) { max-width: 500px; color: rgba(255,255,255,.67); line-height: 1.8; }
.booking-domain { margin-top: 40px; color: #e7c99f; font-size: 13px; }
.direct-contact { display: grid; gap: 0; max-width: 520px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.16); }
.direct-contact > * { display: grid; gap: 5px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.direct-contact small { color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.direct-contact strong { font-size: 13px; font-weight: 500; }
.booking-form { padding: 44px; background: #383a39; }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 8px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 0; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.23); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field select option { color: var(--ink); }
.field.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.button.full { width: 100%; margin-top: 8px; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.5; }

footer { padding: 70px 8vw 30px; background: #1e1f1e; color: white; }
.footer-brand { display: inline-flex; }
footer > p { max-width: 400px; margin: 28px 0; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-contact { display: inline-block; margin: -10px 0 28px; color: #e7c99f; font-family: "Playfair Display", serif; font-size: 22px; }
.footer-email { display: block; width: fit-content; margin: -16px 0 28px; color: rgba(255,255,255,.72); font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 4px; }
.footer-links { display: flex; gap: 28px; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 10px; }

.lightbox { width: min(1000px, 90vw); padding: 0; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(10,10,10,.88); }
.lightbox img { max-height: 85vh; object-fit: contain; }
.lightbox button { position: fixed; top: 20px; right: 30px; border: 0; background: none; color: white; font-size: 38px; cursor: pointer; }
.whatsapp-float {
  position: fixed; z-index: 30; right: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 10px; padding: 12px 17px 12px 12px;
  color: white; background: #25d366; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2); font-size: 12px; font-weight: 700;
}
.whatsapp-float svg { width: 27px; height: 27px; fill: white; }
.whatsapp-float:hover { background: #1fbd5a; transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { position: absolute; padding: 20px 5vw; }
  .menu-toggle { display: block; z-index: 3; }
  .nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; background: var(--charcoal); transform: translateX(100%); transition: transform .35s; font-size: 20px; }
  .nav.open { transform: none; }
  .hero { min-height: 680px; }
  .hero-content { left: 6vw; width: 88vw; }
  .hero-note { display: none; }
  .section { padding: 85px 6vw; }
  .intro { grid-template-columns: 1fr; }
  .section-label { writing-mode: initial; }
  .intro-detail { padding-top: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .room-card, .room-card.reverse { grid-template-columns: 1fr; }
  .room-card.reverse .room-image { order: 0; }
  .room-image { height: 370px; }
  .facilities, .location, .booking { grid-template-columns: 1fr; }
  .facility-visual img { height: 520px; }
  .image-caption { right: 15px; }
  .feature-band { min-height: 600px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .attraction-grid { grid-template-columns: 1fr 1fr; }
  .attraction-card.viewpoint { grid-column: span 2; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .location { gap: 60px; }
  .booking { padding: 85px 6vw; }
}

@media (max-width: 560px) {
  h1 { font-size: 54px; }
  h2 { font-size: 46px; }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .section { padding: 72px 6vw; }
  .room-image { height: 280px; }
  .room-info { padding: 32px 26px; }
  .stay-offer { grid-template-columns: auto 1fr; padding: 24px; }
  .stay-offer a { grid-column: 1 / -1; justify-self: start; white-space: normal; }
  .facility-visual img { height: 420px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-grid > div:nth-child(odd), .amenity-grid > div:nth-child(even) { border-right: 0; padding: 20px 0; }
  .feature-content { width: auto; margin: 0 6vw; }
  .feature-pills { left: 6vw; right: 6vw; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .attraction-grid { grid-template-columns: 1fr; }
  .attraction-card.viewpoint { grid-column: span 1; }
  .attraction-card { min-height: 290px; }
  .booking-form { padding: 30px 22px; }
  .field.split { grid-template-columns: 1fr; gap: 18px; }
  .footer-links { flex-wrap: wrap; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 11px; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
