:root {
  --primary: #145a5a;
  --primary-dark: #0d3f3f;
  --accent: #e6965a;
  --text: #23302e;
  --bg: #ffffff;
  --bg-soft: #f6f9f7;
  --muted: #647370;
  --border: #e3e9e6;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(20, 50, 45, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.site-header nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--primary);
  border-color: var(--accent);
}
.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--primary);
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; }
  .site-header nav {
    display: none;
    width: 100%;
    order: 5;
    flex-direction: column;
    gap: 0;
  }
  .site-header nav.nav-open { display: flex; }
  .site-header nav a {
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--border);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(255, 133, 82, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 133, 82, 0.45); }
.btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 72vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,30,0.15) 0%, rgba(10,20,30,0.15) 40%, rgba(8,16,24,0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  color: #fff;
  padding: 3rem 1.5rem;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffd9c2;
  margin-bottom: 0.5rem;
}
.hero-overlay h1 { margin: 0 0 0.5rem; font-size: 2.6rem; font-weight: 800; }
.hero-overlay p.hero-sub { margin: 0 0 1.3rem; font-size: 1.15rem; opacity: 0.95; }
.hero-price-callout {
  background: rgba(255, 133, 82, 0.95);
  color: #1a1a1a;
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost-light:hover { background: #fff; color: var(--primary); }

/* ---------- Sister property banner ---------- */
.sister-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.sister-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sister-banner h3 { margin: 0 0 0.3rem; font-size: 1.25rem; }
.sister-banner p { margin: 0; color: rgba(255, 255, 255, 0.85); }
.sister-banner .btn-ghost-light { flex-shrink: 0; }

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-hero h1 { margin: 0 0 0.6rem; font-size: 2.2rem; }
.page-hero p { margin: 0; opacity: 0.9; font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* ---------- Sections ---------- */
.section { padding-top: 4rem; padding-bottom: 4rem; }
.section-alt { background: var(--bg-soft); }
.section h2 {
  color: var(--primary);
  font-size: 1.9rem;
  margin-top: 0;
}
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 700px; }
.section-header { margin-bottom: 2rem; }

/* ---------- Home highlights strip ---------- */
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin: 0 auto;
  max-width: 1000px;
  padding: 2.5rem 1.5rem 0;
  position: relative;
  z-index: 2;
}
.highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1rem;
  text-align: center;
}
.highlight-card .hi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
}
.highlight-card .hi-icon svg { width: 20px; height: 20px; }
.highlight-card strong { display: block; font-size: 1.15rem; color: var(--primary); }
.highlight-card span.hi-label { font-size: 0.85rem; color: var(--muted); }

/* generic icon circle, reused on key-facts and distance stats */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  flex-shrink: 0;
}
.icon-circle svg { width: 17px; height: 17px; }
.icon-circle.lg { width: 44px; height: 44px; }
.icon-circle.lg svg { width: 22px; height: 22px; }

/* ---------- Cards / grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.info-card h3 {
  margin-top: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.info-card p { flex: 1; }
.info-card .btn { align-self: flex-start; margin-top: auto; }

.key-facts {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}
.key-facts li { background: var(--bg-soft); padding: 0.6rem 1.1rem; border-radius: 8px; }

.key-facts-icons li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li {
  background: var(--bg-soft);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-bottom: 1.5rem;
}
.amenity-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.amenity-group h4 {
  margin: 0 0 0.7rem;
  color: var(--primary);
  font-size: 1rem;
}
.amenity-group .tag-list { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 0.7rem;
}
.gallery-teaser-grid a:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-teaser-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; transition: transform 0.25s; }
.gallery-teaser-grid a { display: block; overflow: hidden; border-radius: 10px; }
.gallery-teaser-grid a:hover img { transform: scale(1.05); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }

/* CSS-only lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  z-index: 100;
  padding: 2rem;
}
.lightbox:target { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  line-height: 1;
}

/* ---------- Calendar ---------- */
.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.dot.available { background: #e8f8ed; border: 1px solid #0d8052; }
.dot.booked { background: #cccccc; }

.calendar-status { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.cal-nav-btn:hover:not(:disabled) { background: var(--primary); color: #fff; }
.cal-nav-btn:disabled { opacity: 0.35; cursor: default; }
.cal-range-label {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.calendar-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.cal-month-block { min-width: 0; }
.cal-month {
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-size: 0.9rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  text-align: center;
  padding: 0.35rem 0;
  border-radius: 6px;
  font-size: 0.72rem;
  background: #e8f8ed;
  color: #0d8052;
}
.cal-day.booked {
  background: #e7e7e7;
  color: #999;
  text-decoration: line-through;
}
.cal-day.past {
  background: transparent;
  color: #ccc;
}
.cal-day.empty { visibility: hidden; }
.cal-weekday {
  text-align: center;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 720px) {
  .calendar-months { grid-template-columns: 1fr; max-width: 320px; }
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.location-address {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 0;
  color: var(--primary);
}
.map-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.map-link:hover { text-decoration: underline; }
.distance-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.distance-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  text-align: center;
  min-width: 100px;
  box-shadow: var(--shadow);
}
.distance-stat .icon-circle { margin: 0 auto 0.5rem; }
.distance-value { display: block; font-weight: 700; }
.distance-label { display: block; font-size: 0.85rem; color: var(--muted); }

.location-map {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map iframe { display: block; min-height: 360px; width: 100%; border: 0; }
.area-map-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 1.5rem; }

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 140px); }
  .gallery-teaser-grid a:first-child { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Book / price ---------- */
.price-callout {
  background: #fff4ee;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.3rem;
  border-radius: 6px;
}

.ota-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 2rem;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 800px) {
  .book-grid { grid-template-columns: 1fr; }
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.form-row { display: flex; flex-direction: column; gap: 0.3rem; }
.form-row label { font-weight: 600; font-size: 0.9rem; }
.form-row input,
.form-row textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-row-split {
  flex-direction: row;
  gap: 1rem;
}
.form-row-split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.success { color: #0d8052; }
.form-status.error { color: #bd333c; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: #cfe3ef;
  padding: 2.5rem 0;
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-inner nav { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-inner nav a { color: #cfe3ef; text-decoration: none; font-size: 0.9rem; }
.footer-inner nav a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.85rem; color: #9fb9c9; margin-top: 1.5rem; }

.footer-also-by {
  font-size: 0.8rem;
  color: #7d97a8;
  margin-top: 0.6rem;
}
.footer-also-by a { color: #9fb9c9; text-decoration: none; }
.footer-also-by a:hover { color: #cfe3ef; text-decoration: underline; }

@media (max-width: 640px) {
  .hero-overlay h1 { font-size: 1.9rem; }
  .page-hero h1 { font-size: 1.7rem; }
}
