:root {
  --ink: #102820;
  --ink-soft: #294039;
  --forest: #174c3c;
  --gold: #c59b4a;
  --gold-deep: #9a7430;
  --cream: #fbf8f1;
  --ivory: #fffdf8;
  --mist: #eef3f0;
  --line: rgba(16, 40, 32, 0.14);
  --shadow: 0 24px 70px rgba(16, 40, 32, 0.14);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(16, 40, 32, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 155, 74, 0.58);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) clamp(18px, 4vw, 52px) 70px;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 40, 32, 0.74), rgba(16, 40, 32, 0.22)),
    url("https://images.unsplash.com/photo-1560448204-603b3fc33ddc?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(16, 40, 32, 0.18) 0%, rgba(16, 40, 32, 0.72) 100%),
    radial-gradient(circle at 10% 85%, rgba(197, 155, 74, 0.32), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-tagline {
  margin: 22px 0 0;
  color: #f7dfad;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-family: Georgia, "Times New Roman", serif;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #1f1606;
  box-shadow: 0 18px 34px rgba(197, 155, 74, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d4ad5e;
}

.btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--ivory);
}

.btn-footer {
  width: fit-content;
  background: var(--ivory);
  color: var(--ink);
}

.intro-band {
  width: min(var(--max-width), calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-item {
  min-height: 112px;
  padding: 24px;
  background: var(--ivory);
}

.intro-item strong,
.intro-item span {
  display: block;
}

.intro-item strong {
  font-size: 1rem;
}

.intro-item span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 52px);
}

.section-grid,
.contact-grid,
.location-panel,
.footer-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.rich-copy p,
.section-heading p,
.location-panel p,
.contact-grid p {
  color: var(--ink-soft);
}

.rich-copy p:first-child,
.section-heading p:first-of-type,
.location-panel p:first-of-type,
.contact-grid p:first-of-type {
  margin-top: 0;
}

.about-section {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
}

.rooms-section,
.gallery-section {
  background: var(--cream);
}

.section-heading {
  width: min(var(--max-width), 100%);
  margin: 0 auto 28px;
}

.section-heading h2 {
  width: min(720px, 100%);
}

.section-heading > p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 14px 0 0;
}

.room-grid {
  width: min(var(--max-width), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 18px 50px rgba(16, 40, 32, 0.08);
}

.featured-room {
  border-color: rgba(197, 155, 74, 0.45);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card-body {
  padding: clamp(22px, 4vw, 32px);
}

.room-type {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 24px 0 18px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.room-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.facilities-section {
  background: var(--ink);
  color: #fff;
}

.facilities-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.facility-grid {
  width: min(var(--max-width), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.facility-card {
  min-height: 146px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.facility-card strong {
  line-height: 1.25;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(197, 155, 74, 0.14);
  color: var(--gold);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.gallery-grid {
  width: min(var(--max-width), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(16, 40, 32, 0.82);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.location-section {
  background: var(--ivory);
}

.location-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(16, 40, 32, 0.08);
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 40, 32, 0.12);
  background: var(--mist);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.contact-section {
  background: linear-gradient(180deg, var(--cream), var(--ivory));
}

.contact-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 52px) 26px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--ink);
}

.footer-brand strong,
.footer-title {
  color: #fff;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.footer-title {
  margin: 0 0 14px;
  font-weight: 900;
}

.footer-address {
  margin-top: 16px;
}

.footer-bottom {
  width: min(var(--max-width), 100%);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 120;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #062b16;
  box-shadow: 0 18px 42px rgba(16, 40, 32, 0.26);
  font-weight: 900;
  line-height: 1;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #35df73;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 18px 24px;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 48px rgba(16, 40, 32, 0.12);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(16, 40, 32, 0.08);
  }

  .intro-band,
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .contact-grid,
  .location-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 88vh;
    padding: calc(var(--header-height) + 32px) 18px 42px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.2vw, 3.05rem);
    line-height: 0.95;
  }

  .hero-actions,
  .contact-actions,
  .btn {
    width: 100%;
  }

  .intro-band,
  .room-grid,
  .facility-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .intro-item {
    min-height: auto;
    padding: 18px 24px;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .room-grid,
  .facility-grid,
  .gallery-grid {
    gap: 12px;
  }

  .room-card-body,
  .contact-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .location-panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .map-frame {
    min-height: 230px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@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;
  }
}
