*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: #1A1A1A;
}
p { margin: 0; color: #555; }
a { color: #1A1A1A; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* Topbar */
.topbar {
  background: #1A1A1A; color: #C9C9C5;
  font-size: 13px; padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* Header */
header {
  border-bottom: 1px solid #ECECEC;
  background: #fff;
  position: sticky; top: 0; z-index: 10;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: 1180px; margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) { .nav { padding: 20px 48px; } }
.brand {
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
}
.brand::before {
  content: "▲"; color: #2C5530; margin-right: 8px; font-size: 14px;
}
.nav-links { display: none; gap: 24px; font-size: 15px; }
.nav-links a { color: #555; transition: color 0.15s; padding: 4px 0; }
.nav-links a:hover { color: #1A1A1A; }
.nav-links a.active { color: #2C5530; border-bottom: 2px solid #2C5530; }
.menu-toggle {
  display: block; background: none; border: 1px solid #ECECEC;
  padding: 8px 14px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: 'Manrope', sans-serif;
  color: #1A1A1A;
}
@media (min-width: 1100px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}
.nav-links.open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 20px 24px; gap: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06); z-index: 20;
  border-bottom: 1px solid #ECECEC;
}
.cta-btn {
  background: #C26A35; color: #fff;
  padding: 10px 20px; border-radius: 4px;
  font-size: 15px; font-weight: 500;
  display: inline-block;
}
.cta-btn:hover { background: #A85728; }
.cta-btn-light {
  background: transparent; color: #1A1A1A;
  border: 1px solid #DDD; padding: 9px 19px;
}
.cta-btn-light:hover { border-color: #1A1A1A; }

/* Hero — homepage */
.hero {
  position: relative; height: 620px;
  background: linear-gradient(180deg, #2E5158 0%, #4A7178 35%, #88A9A6 65%, #B5C9C0 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(31,42,46,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 100px 24px 0;
  color: #F1F3F1;
}
@media (min-width: 768px) { .hero-content { padding: 140px 48px 0; } }
.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #E89561; margin-bottom: 18px;
}
.hero h1 {
  font-size: 44px; color: #F1F3F1;
  max-width: 14ch; margin-bottom: 20px;
}
@media (min-width: 768px) { .hero h1 { font-size: 64px; } }
.hero p {
  color: rgba(241,243,241,0.85);
  font-size: 19px; max-width: 50ch; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost {
  background: rgba(241,243,241,0.1); color: #F1F3F1;
  border: 1px solid rgba(241,243,241,0.4);
  padding: 10px 20px; border-radius: 4px;
  font-size: 15px; font-weight: 500;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(241,243,241,0.2); }

/* Page hero — secondary pages */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fff 0%, #F1F3F1 100%);
}
.page-hero h1 {
  font-size: 36px; max-width: 22ch;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .page-hero h1 { font-size: 52px; } }
.page-hero .hero-eyebrow {
  color: #C26A35; margin-bottom: 14px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
}
.page-hero p {
  font-size: 18px; max-width: 56ch; line-height: 1.6;
}

/* Quick info */
.quickinfo { background: #fff; border-bottom: 1px solid #ECECEC; }
.quickinfo-grid {
  display: grid; grid-template-columns: 1fr;
  max-width: 1180px; margin: 0 auto;
}
@media (min-width: 700px) { .quickinfo-grid { grid-template-columns: repeat(4, 1fr); } }
.qi-item {
  padding: 28px 24px; border-right: 1px solid #ECECEC;
}
.qi-item:last-child { border-right: none; }
.qi-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: #888; margin-bottom: 4px;
}
.qi-value {
  font-size: 22px; color: #1A1A1A; font-weight: 500;
  letter-spacing: -0.01em;
}

/* Section common */
section.std { padding: 80px 0; }
@media (min-width: 768px) { section.std { padding: 100px 0; } }
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head .eyebrow {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #C26A35; font-weight: 500; margin-bottom: 14px;
}
.sec-head h2 {
  font-size: 32px; letter-spacing: -0.02em; margin-bottom: 16px;
}
@media (min-width: 768px) { .sec-head h2 { font-size: 40px; } }
.sec-head p { font-size: 17px; max-width: 56ch; }

/* Rooms */
.rooms-section { background: #FAFAF8; }
.rooms-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 700px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .rooms-grid { grid-template-columns: repeat(4, 1fr); } }
.room {
  background: #fff; border: 1px solid #ECECEC;
  border-radius: 6px; overflow: hidden;
  transition: border-color 0.15s;
}
.room:hover { border-color: #999; }
.room-img { aspect-ratio: 4/3; background: linear-gradient(135deg, #4A7178 0%, #82A788 100%); }
.room-img.r2 { background: linear-gradient(135deg, #5A6B7C 0%, #8A9CAF 100%); }
.room-img.r3 { background: linear-gradient(135deg, #7A6A5C 0%, #A89887 100%); }
.room-img.r4 { background: linear-gradient(135deg, #6B6B6B 0%, #999 100%); }
.room-info { padding: 22px 20px; }
.room-info h3 { font-size: 19px; margin-bottom: 4px; }
.room-meta { font-size: 13px; color: #888; margin-bottom: 16px; }
.room-price {
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  padding-top: 16px; border-top: 1px solid #ECECEC;
}
.room-price small { font-size: 13px; color: #888; font-weight: 400; }

/* Calculator */
.calc-section { background: #fff; }
.calc-box {
  max-width: 680px;
  background: #FAFAF8; padding: 36px 32px;
  border: 1px solid #ECECEC; border-radius: 8px;
}
.calc-box label { display: block; margin-bottom: 20px; }
.calc-box label > span {
  display: block; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; color: #2C5530;
  font-weight: 500; margin-bottom: 8px;
}
.calc-box select, .calc-box input {
  width: 100%; padding: 12px 14px; font-size: 16px;
  font-family: 'Manrope', sans-serif;
  border: 1px solid #ECECEC; border-radius: 4px; background: #fff;
}
.calc-total {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid #ECECEC;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.calc-total-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: #888;
}
.calc-total-value {
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em;
}

/* Activities */
.activities { background: #1F2A2E; color: #C9D2D0; }
.activities .sec-head h2 { color: #F1F3F1; }
.activities .sec-head p { color: rgba(201,210,208,0.85); }
.activities .sec-head .eyebrow { color: #E89561; }
.acts-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .acts-grid { grid-template-columns: repeat(2, 1fr); } }
.act {
  border: 1px solid rgba(241,243,241,0.15);
  border-radius: 8px; padding: 32px 28px;
  transition: background 0.2s;
}
.act:hover { background: rgba(241,243,241,0.04); }
.act .season {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #E89561; margin-bottom: 14px;
}
.act h3 { font-size: 24px; color: #F1F3F1; margin-bottom: 10px; }
.act p { color: rgba(201,210,208,0.8); font-size: 15px; line-height: 1.6; }

/* Generic content blocks */
.content-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 800px) { .content-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.content-block h3 { font-size: 22px; margin-bottom: 12px; }
.content-block p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }

.feature-list {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.feature-list li {
  padding: 10px 0; padding-left: 26px;
  border-bottom: 1px solid #ECECEC;
  position: relative;
  font-size: 16px;
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: #2C5530; font-weight: 600;
}
.feature-list li:last-child { border-bottom: none; }

/* Map / Find */
.find-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 800px) { .find-grid { grid-template-columns: 1fr 1fr; min-height: 480px; } }
.find-text { padding: 80px 24px; background: #fff; }
@media (min-width: 768px) { .find-text { padding: 100px 56px; } }
.find-text h2 { font-size: 32px; margin-bottom: 20px; letter-spacing: -0.02em; }
.find-text p { margin-bottom: 14px; font-size: 16px; }
.find-text .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #888; margin-top: 24px; margin-bottom: 4px;
}
.find-text .value { font-size: 17px; color: #1A1A1A; font-weight: 500; }
.find-map iframe {
  width: 100%; min-height: 480px; border: 0; display: block;
}

/* Form */
.form-section { background: #fff; }
.contact-form {
  max-width: 640px;
  display: grid; gap: 18px;
}
.contact-form label { display: block; }
.contact-form label > span {
  display: block; font-size: 13px; font-weight: 500;
  margin-bottom: 6px; color: #1A1A1A;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px; font-size: 16px;
  font-family: 'Manrope', sans-serif;
  border: 1px solid #ECECEC; border-radius: 4px; background: #FAFAF8;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  background: #2C5530; color: #fff;
  padding: 13px 24px; border: none; border-radius: 4px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  justify-self: start;
}
.contact-form button:hover { background: #1f3f24; }

/* Footer */
footer {
  background: #1A1A1A; color: #999;
  padding: 56px 0 28px; font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand {
  color: #fff; font-weight: 700; font-size: 18px;
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.footer-grid p { color: #999; line-height: 1.6; }
.footer-grid h4 {
  color: #fff; font-size: 14px; font-weight: 600;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-grid a { color: #999; display: block; padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #333; padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

/* Language switcher (always visible, also on mobile) */
.topbar .lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}
.topbar .lang-switch button {
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #C9C9C5;
  letter-spacing: 0.05em;
  min-width: 28px;
  transition: color 0.15s;
}
.topbar .lang-switch button:hover { color: #fff; }
.topbar .lang-switch button.active {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid #E89561;
}
.topbar .lang-switch span {
  color: #555;
  user-select: none;
}
