/* ============================================================
   35 Powers — styles.css
   Coastal · Clean · Responsive
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e2a35;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --navy:       #1a3a5c;
  --navy-dark:  #122840;
  --blue:       #2e6da4;
  --teal:       #2aa0b8;
  --sand:       #f5f0e8;
  --sand-mid:   #ede8df;
  --white:      #ffffff;
  --text:       #1e2a35;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #dde3ea;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --transition: .25s ease;
  --max-w:      1200px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-mid); margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-sand { background: var(--sand); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header.left { text-align: left; }
.section-header h2 { margin-bottom: .5rem; }
.section-sub {
  color: var(--text-light);
  font-size: .95rem;
  margin-top: .4rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .6rem 0;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  transition: opacity var(--transition);
}
.nav-brand:hover { opacity: .8; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .brand-name { color: var(--navy); }
.brand-loc {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.navbar.scrolled .brand-loc { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .45rem .8rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { background: var(--sand); }
.nav-cta {
  background: var(--white) !important;
  color: var(--navy) !important;
  padding: .45rem 1.1rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: .5rem;
  transition: all var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.navbar.scrolled .nav-cta { background: var(--navy) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-yt {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
  pointer-events: none;
}
.hero-yt.visible { opacity: 1; }
.hero-yt iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Cover the hero at any viewport size (16:9 video) */
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(15, 35, 55, .45) 0%,
    rgba(15, 35, 55, .55) 50%,
    rgba(15, 35, 55, .7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 8rem 1.5rem 4rem;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--transition);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
.hero-scroll:hover { color: rgba(255,255,255,.9); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 1.25rem 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.stat svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--teal);
  opacity: .9;
}
.stat div { display: flex; flex-direction: column; }
.stat strong {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--sand);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--white);
  padding: 1.5rem .75rem .6rem;
  font-size: .78rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text .lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.address-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: .55rem 1rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.address-pill svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: var(--teal);
}
.about-images {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about-img-main img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-img-pair img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* ── AMENITIES ── */
.amenities-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.amenity-group h4 {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--sand);
}
.amenity-group ul { display: flex; flex-direction: column; gap: .65rem; }
.amenity-group li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.amenity-group li svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: var(--blue);
  opacity: .7;
}

/* ── BOOKING CALENDAR ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.calendar-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  color: var(--white);
}
.cal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.cal-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cal-nav-btn:hover { background: rgba(255,255,255,.25); }
.cal-nav-btn:disabled { opacity: .3; cursor: default; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--navy-dark);
  padding: .5rem 0;
}
.cal-weekdays div {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: .25rem 0;
}

.cal-body { padding: .75rem; display: flex; flex-direction: column; gap: 2px; }

.cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background var(--transition);
}
.cal-week.available {
  cursor: pointer;
}
.cal-week.available:hover { background: rgba(42, 160, 184, .08); }
.cal-week.selected  { background: rgba(42, 160, 184, .18) !important; }
.cal-week.past      { opacity: .4; }

.cal-cell {
  padding: .55rem .3rem;
  text-align: center;
  position: relative;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.cal-cell.outside .cell-num { color: #c0c8d0; }
.cell-num {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.cal-week.available:hover .cell-num   { color: var(--navy); }
.cal-week.selected         .cell-num  { color: var(--navy); font-weight: 700; }
.cal-week.selected .cal-cell:first-child .cell-num {
  background: var(--teal);
  color: var(--white);
}
.cell-price {
  font-size: .64rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(42,160,184,.1);
  padding: 1px 4px;
  border-radius: 3px;
  white-space: nowrap;
}
.cal-week.selected .cell-price { color: var(--navy); background: rgba(26,58,92,.1); }

.cal-legend {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #fafafa;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-light);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-available { background: var(--teal); }
.dot-selected  { background: var(--navy); }
.dot-past      { background: #cbd5e0; }

/* ── BOOKING SUMMARY ── */
.booking-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 5rem;
}
.summary-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-light);
}
.summary-icon {
  width: 56px; height: 56px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.summary-icon svg { width: 26px; height: 26px; stroke: var(--text-light); }
.summary-empty p { font-size: .9rem; line-height: 1.6; }

.summary-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
}
.summary-header h4 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
}
.summary-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.summary-price-main span {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  margin-left: .25rem;
}

.summary-body { padding: 1.25rem 1.5rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--text-light); }
.summary-row .value { font-weight: 600; color: var(--text); }
.summary-row.total { padding-top: .9rem; }
.summary-row.total .label { color: var(--text); font-weight: 600; }
.summary-row.total .value { color: var(--navy); font-size: 1.05rem; }

.summary-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.summary-footer .btn {
  width: 100%;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}
.summary-footer .btn:hover { background: var(--navy-dark); transform: translateY(-1px); }
.summary-note {
  text-align: center;
  font-size: .72rem;
  color: var(--text-light);
  margin-top: .75rem;
  line-height: 1.5;
}

/* ── PRICING CARDS ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card.featured-card {
  border-color: var(--teal);
  background: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured-card:hover { transform: scale(1.03) translateY(-4px); }
.featured-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 0 0 8px 8px;
}
.pricing-season {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.featured-card .pricing-season { color: rgba(255,255,255,.75); }
.pricing-range {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.featured-card .pricing-range { color: var(--white); }
.pricing-unit {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.featured-card .pricing-unit { color: rgba(255,255,255,.5); }
.pricing-months {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  background: var(--sand);
  color: var(--text-mid);
  padding: .25rem .75rem;
  border-radius: 50px;
}
.featured-card .pricing-months { background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.pricing-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-light);
  margin-top: .5rem;
}

/* ── REVIEWS ── */
.rating-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-top: .5rem;
}
.stars-display {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.rating-label { color: var(--text-light); font-size: .9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-meta { flex: 1; }
.reviewer-meta strong { display: block; color: var(--text); font-size: .9rem; }
.reviewer-meta span { font-size: .78rem; color: var(--text-light); }
.review-rating { color: #f5a623; font-size: .9rem; letter-spacing: 1px; }
.review-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.review-card p { font-size: .875rem; line-height: 1.65; margin-bottom: .7rem; }
.review-date { font-size: .75rem; color: var(--text-light); margin: .75rem 0 .5rem; font-style: italic; }
.owner-response {
  font-size: .8rem;
  background: var(--sand);
  border-left: 3px solid var(--teal);
  padding: .75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-mid);
  line-height: 1.6;
}
.owner-response strong { color: var(--navy); }

/* ── 3-MONTH CALENDAR ── */
.cal-months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.cal-month {
  background: var(--white);
  padding: .6rem .4rem .75rem;
}
.cal-month-header {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  padding: .3rem 0 .55rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .3rem;
}
.cal-weekdays-sm {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 2px;
}
.cal-weekdays-sm div {
  text-align: center;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: .2rem 0;
}
.cal-body-sm {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
/* compact overrides for cells inside 3-month view */
.cal-months-grid .cal-week { border-radius: 3px; }
.cal-months-grid .cal-cell {
  min-height: 36px;
  padding: .28rem .1rem;
}
.cal-months-grid .cell-num {
  font-size: .75rem;
  width: 20px;
  height: 20px;
}
.cal-months-grid .cell-price {
  font-size: .57rem;
  padding: 1px 2px;
}

/* ── CONTACT FORM ── */
.contact-section { background: var(--sand); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .lead {
  font-size: 1rem;
  color: var(--text-mid);
  margin: .75rem 0 1.5rem;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text-mid);
}
.contact-detail svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  stroke: var(--teal);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.week-info-box {
  display: none;
  background: rgba(42,160,184,.08);
  border: 1.5px solid rgba(42,160,184,.35);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .83rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.week-info-box.visible { display: block; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .65rem .95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,160,184,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4be; }
.form-group textarea { resize: vertical; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
}
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success svg {
  width: 48px; height: 48px;
  stroke: var(--teal);
  margin: 0 auto .75rem;
}
.form-success h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-success p { font-size: .9rem; color: var(--text-light); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,.7);
}
.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  display: block;
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: .25rem; }
.footer-tagline { font-size: .75rem; color: rgba(255,255,255,.35) !important; font-style: italic; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}
.lb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  max-width: 1100px;
  max-height: 100vh;
}
.lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.lb-btn:hover { background: rgba(255,255,255,.25); transform: scale(1.05); }
.lb-close {
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  font-size: 1.4rem;
  line-height: 1;
}
.lb-prev {
  left: 1rem;
  width: 52px; height: 52px;
  font-size: 1.8rem;
}
.lb-next {
  right: 1rem;
  width: 52px; height: 52px;
  font-size: 1.8rem;
}
.lb-footer {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.lb-caption {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: .2rem;
}
.lb-counter {
  color: rgba(255,255,255,.4);
  font-size: .75rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .amenities-categories { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text); padding: .75rem 1rem; border-radius: var(--radius-sm); width: 100%; }
  .nav-links a:hover { background: var(--sand); }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }

  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured-card { transform: none; }
  .pricing-card.featured-card:hover { transform: translateY(-4px); }

  .reviews-grid { grid-template-columns: 1fr; }
  .amenities-categories { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .stats-grid { gap: .75rem; justify-content: flex-start; }
  .stat { min-width: 140px; }

  .footer-layout { flex-direction: column; gap: 1.5rem; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: .75rem; }

  .lb-prev { left: .25rem; }
  .lb-next { right: .25rem; }
  .lb-btn { width: 40px; height: 40px; font-size: 1.3rem; }
}

@media (max-width: 600px) {
  .cal-months-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .4rem; }
  .gallery-item:first-child { grid-column: span 2; }
  .amenities-categories { grid-template-columns: 1fr; }
  .about-img-pair { grid-template-columns: 1fr; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-actions .btn {
    width: 80%;
    justify-content: center;
    text-align: center;
  }
  .hero-actions .btn-outline-white {
    border: 2px solid var(--white);
    background: rgba(0,0,0,.25);
  }
  .contact-form-wrap { padding: 1.25rem; }
}
