:root {
  --bg: #f8f4ee;
  --panel: #fffdfb;
  --sand: #efe1ce;
  --sand-strong: #d7b98b;
  --stone: #e6dcc7;
  --primary: #1f4f5d;
  --primary-deep: #123745;
  --text: #243032;
  --muted: #5e6c6d;
  --gold: #b9975b;
  --border: rgba(31, 79, 93, 0.1);
  --shadow: 0 25px 60px rgba(18, 55, 69, 0.12);
  --radius: 22px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(185, 151, 91, 0.12), transparent 26%),
    linear-gradient(180deg, #f9f5f0 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section-shell {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(239, 225, 206, 0.28), rgba(255, 255, 255, 0));
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.eyebrow-contrast {
  color: var(--primary);
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
  letter-spacing: -0.04em;
  color: #fff;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 79, 93, 0.08);
  box-shadow: 0 6px 18px rgba(18, 55, 69, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 2.05rem;
  color: var(--primary);
}

.brand-city {
  font-size: 0.68rem;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  position: relative;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 18px 35px rgba(18, 55, 69, 0.18);
}

.btn-light {
  background: rgba(255,255,255,0.92);
  color: var(--primary-deep);
  box-shadow: 0 12px 28px rgba(18, 55, 69, 0.12);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(10, 28, 35, 0.18);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(31, 79, 93, 0.15);
  background: rgba(255,255,255,0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88vh;
  padding: 4rem 0 4.5rem;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 35, 0.7), rgba(10, 28, 35, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  color: #fff;
}

.hero-content .eyebrow {
  color: rgba(255,255,255,0.8);
}

.hero-content .lead {
  color: rgba(255,255,255,0.86);
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.hero-badges span {
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 0 auto 1.7rem;
  max-width: 760px;
}

.meta-item {
  min-width: 130px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7, 24, 31, 0.28);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  text-align: center;
}

.meta-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.meta-item span {
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.intro {
  text-align: center;
}

.intro-meta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(31, 79, 93, 0.05);
  border: 1px solid rgba(31, 79, 93, 0.12);
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

.intro-inner {
  max-width: 820px;
}

.intro h2 {
  margin-bottom: 1rem;
}

.intro-inner p:last-child {
  font-size: 1.08rem;
  color: var(--muted);
}

.experience-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(18,55,69,0.03), rgba(18,55,69,0.02));
}

.premium-strip {
  padding-top: 0;
}

.premium-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.premium-strip-grid article {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(18,55,69,0.04);
}

.strip-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(31, 79, 93, 0.08);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.premium-strip-grid h3 {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 2rem;
}

.experience-copy {
  max-width: 560px;
}

.experience-copy h2 {
  margin-bottom: 1rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.experience-cards article {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem 1.2rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(18,55,69,0.04);
}

.experience-cards strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 2.3rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  line-height: 1;
}

.experience-cards span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.section-heading {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(24, 45, 49, 0.03);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(24, 45, 49, 0.08);
  border-color: rgba(31, 79, 93, 0.15);
}

.feature-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 79, 93, 0.08);
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.house-story {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(21, 39, 45, 0.05);
}

.story-image {
  min-height: 420px;
  background: url('../img/IMG-20260811-WA0010.jpg') center/cover no-repeat;
}

.story-copy {
  padding: 2.5rem 2rem;
}

.story-copy h3 {
  margin-bottom: 0.75rem;
}

.story-copy ul {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--text);
  list-style: none;
}

.story-copy li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.story-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  min-height: 260px;
  box-shadow: 0 15px 30px rgba(25, 43, 48, 0.06);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.location-shell {
  background: rgba(239, 225, 206, 0.28);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.location-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.location-tags span {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text);
}

.map-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.map-visual {
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: #dbe3e6;
}

.map-visual iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(239,225,206,0.3));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 14px 32px rgba(18,55,69,0.05);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--brand);
}

.contact-card p,
.contact-card a {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.contact-card a {
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

.activities-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(239,225,206,0.24));
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.activity-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 12px 28px rgba(18,55,69,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 79, 93, 0.15);
  box-shadow: 0 20px 38px rgba(18,55,69,0.07);
}

.activity-card h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.activity-card p {
  margin-bottom: 1rem;
}

.activity-card a {
  color: var(--primary);
  font-weight: 700;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.booking-note {
  display: inline-flex;
  align-items: center;
  margin: 1.2rem 0 0.8rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(185, 151, 91, 0.1);
  border: 1px solid rgba(185, 151, 91, 0.2);
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.booking-availability-note {
  margin: 1rem 0 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,239,228,0.9));
  border: 1px solid var(--border);
  box-shadow: 0 20px 42px rgba(18,55,69,0.07);
}

.reservation-form-header {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(31,79,93,0.12);
}

.reservation-form-header h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.45rem;
}

.reservation-form-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow.small {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16rem;
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.reservation-form input,
.reservation-form textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form.disabled-form {
  opacity: 0.75;
  filter: grayscale(0.08);
}

.reservation-form.disabled-form input,
.reservation-form.disabled-form textarea,
.reservation-form.disabled-form button[type="submit"] {
  cursor: not-allowed;
}

.reservation-legal {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.selected-date-box {
  margin: 1.5rem 0;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  color: var(--primary-deep);
  font-size: 0.95rem;
}

.calendar-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(18, 55, 69, 0.04);
  padding: 1.4rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-header h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary-deep);
}

.calendar-header button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--primary-deep);
  font-size: 1.4rem;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.labels {
  margin-bottom: 0.7rem;
}

.labels span {
  display: grid;
  place-items: center;
  min-height: 38px;
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.calendar-grid {
  min-height: 280px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}

.legend-swatch.free {
  background: #f8f5f1;
  border: 1px solid rgba(31, 79, 93, 0.16);
}

.legend-swatch.occupied {
  background: #e2ddd7;
}

.legend-swatch.range {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.day-btn {
  min-height: 54px;
  border: 1px solid rgba(31, 79, 93, 0.1);
  background: #f8f5f1;
  color: var(--text);
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.day-btn:hover:not(:disabled),
.day-btn:focus-visible:not(:disabled) {
  background: #eef4f1;
  border-color: rgba(31, 79, 93, 0.2);
}

.day-btn.occupied {
  background: #e2ddd7;
  color: rgba(36, 48, 50, 0.55);
  text-decoration: line-through;
  cursor: not-allowed;
}

.day-btn.selected {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 55, 69, 0.2);
}

.day-btn.range {
  background: rgba(31, 79, 93, 0.14);
  border-color: rgba(31, 79, 93, 0.2);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 50px rgba(37, 211, 102, 0.42);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.site-footer {
  background: #183f47;
  color: rgba(255,255,255,0.8);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: linear-gradient(180deg, rgba(239,225,206,0.22), rgba(255,255,255,0.78));
}

.legal-shell {
  max-width: 980px;
  margin: 3.5rem auto;
  padding: 0 1rem 4rem;
}

.legal-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 22px 48px rgba(18,55,69,0.05);
  padding: clamp(1.5rem, 3vw, 3rem);
}

.legal-intro {
  margin-bottom: 2rem;
}

.legal-intro h1 {
  color: var(--primary-deep);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--primary);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.25rem;
  margin: 1rem 0 0;
}

.legal-card li + li {
  margin-top: 0.5rem;
}

.legal-back {
  display: inline-flex;
  margin-top: 2rem;
  align-items: center;
  color: var(--primary-deep);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
  .feature-grid,
  .location-grid,
  .booking-layout,
  .footer-grid,
  .premium-strip-grid {
    grid-template-columns: 1fr;
  }

  .house-story {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 74px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.2rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 18px 40px rgba(18, 55, 69, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .brand-city {
    letter-spacing: 0.15rem;
  }
}
