:root {
  --radius: 0.5rem;
  --background: #f8fafb;
  --foreground: #2d3a42;
  --card: #ffffff;
  --primary: #5ba4d4;
  --primary-foreground: #f8fafb;
  --secondary: #3d4f58;
  --secondary-foreground: #f5f8fa;
  --muted: #eef2f5;
  --muted-foreground: #6b7c87;
  --accent: #a8b4bc;
  --accent-foreground: #2a3338;
  --border: #d8e0e6;
  --gradient-hero: linear-gradient(135deg, rgba(61, 79, 88, 0.88), rgba(45, 58, 66, 0.7));
  --shadow-soft: 0 20px 60px -20px rgba(61, 79, 88, 0.3);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-height: 4.25rem;
  --page-gutter: clamp(1.25rem, 5vw, 1.75rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.site { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 0.5em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 48rem; }
.narrow-top { padding-top: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.muted { color: var(--muted-foreground); }
.lead { font-size: 1.125rem; max-width: 42rem; }

/* Site header & navigation */
.site-header-wrap {
  position: sticky; top: 0; z-index: 300;
  background: rgba(248, 250, 251, 0.97);
  border-bottom: 1px solid var(--border);
}
.header-shell {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-height); padding-block: 0.65rem; gap: 1rem;
  position: relative; z-index: 2;
}
.logo {
  display: flex; align-items: center; flex-shrink: 0; line-height: 0;
}
.logo img {
  display: block; height: 40px; width: auto;
  max-width: min(200px, 48vw); object-fit: contain;
}

.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 280;
  background: rgba(45, 58, 66, 0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

.nav-links {
  display: none; align-items: center; gap: 1.75rem;
  font-size: 0.875rem; margin: 0; padding: 0;
}
.nav-links a:not(.btn) {
  color: var(--muted-foreground); transition: color 0.15s; white-space: nowrap;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--primary); font-weight: 500; }
.nav-cta { display: none; flex-shrink: 0; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: none;
  cursor: pointer; border-radius: 0.5rem; -webkit-tap-highlight-color: transparent;
  flex-shrink: 0; position: relative; z-index: 3;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--foreground);
  border-radius: 1px; transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-backdrop { display: block; pointer-events: none; }
  .nav-backdrop.open { pointer-events: auto; }

  .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 0; right: 0; bottom: 0;
    z-index: 290; width: min(100vw, 20rem);
    height: 100dvh; height: 100vh;
    padding: calc(var(--nav-height) + 0.75rem) 1.5rem 2rem;
    gap: 0;
    background: var(--background);
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 40px rgba(45, 58, 66, 0.15);
    visibility: hidden; pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-x: hidden; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-links.open {
    visibility: visible; pointer-events: auto;
    transform: translateX(0);
  }
  .nav-links a:not(.btn) {
    padding: 1rem 0; font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
    min-height: 3.25rem; display: flex; align-items: center;
    white-space: normal;
  }
  .nav-cta-mobile {
    display: inline-flex !important;
    margin-top: 1.25rem; width: 100%;
    justify-content: center; min-height: 3.25rem; font-size: 1rem;
  }
  .nav-cta { display: none !important; }
  body.nav-open { overflow: hidden; }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-backdrop { display: none !important; }

  .header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem 2rem;
  }
  .logo { grid-column: 1; }
  .nav-links {
    grid-column: 2;
    display: flex; justify-content: center; justify-self: center;
    position: static; width: auto; height: auto;
    padding: 0; margin: 0;
    transform: none; visibility: visible; pointer-events: auto;
    background: transparent; border: none; box-shadow: none;
    overflow: visible;
  }
  .nav-cta { grid-column: 3; display: inline-flex; justify-self: end; }
  .nav-cta-mobile { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links { gap: 1rem; font-size: 0.8rem; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 1.75rem; border-radius: 9999px; font-weight: 500; font-size: 0.9rem; border: none; cursor: pointer; transition: opacity 0.15s, background 0.15s; }
.btn:hover { opacity: 0.9; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-accent { background: var(--accent); color: var(--accent-foreground); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(4px); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* Hero */
.hero {
  position: relative; min-height: 92vh; min-height: 640px;
  overflow: hidden; color: #fff; margin-top: 0;
  isolation: isolate;
}
.hero-sm { min-height: 70vh; min-height: 480px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3)); }
.hero-content { position: relative; height: 100%; min-height: inherit; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 5rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); max-width: 52rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { max-width: 36rem; opacity: 0.85; font-size: 1.05rem; margin-top: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); max-width: 48rem; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.hero-stats span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.7; }
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

@media (max-width: 767px) {
  .container { padding-inline: var(--page-gutter); }
  .hero { margin-top: 0; min-height: 85vh; min-height: 520px; }
  .hero-sm { min-height: 60vh; min-height: 400px; }
  .hero-content { padding-bottom: 2.75rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-lead { font-size: 1rem; margin-top: 1.1rem; }
  .hero-actions {
    flex-direction: column; align-items: stretch;
    gap: 0.75rem; margin-top: 1.75rem;
  }
  .hero-actions .btn { width: 100%; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; margin-top: 2.25rem; padding-top: 1.5rem; max-width: none;
  }
  .hero-stats strong { font-size: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .section.container { padding-inline: var(--page-gutter); }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
  .section h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .split-section { gap: 2rem; }
  .mosaic { gap: 0.625rem; }
  .rounded-img { border-radius: 1rem; }
  .trust-inner {
    flex-direction: column; align-items: center; text-align: center;
    gap: 0.35rem; padding-block: 1rem; padding-inline: 0;
    letter-spacing: 0.15em; line-height: 1.8;
  }
  .trust-inner .dot { display: none; }
  .apt-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .apt-card-body { padding: 1.25rem; }
  .service-card div { padding: 1.25rem; }
  .service-grid { margin-top: 2.5rem; }
  .steps-grid { margin-top: 2.5rem; }
  .testimonial-grid { margin-top: 2.5rem; }
  .testimonial { padding: 1.5rem; }
  .cta-banner { padding: 2.5rem 1.25rem; border-radius: 1rem; }
  .footer { margin-top: 4rem; }
  .footer-grid { padding: 3rem 0; gap: 2rem; }
  .footer-bottom { padding: 1.25rem var(--page-gutter); }
  .gallery-strip { gap: 0.625rem; }
  .facts-grid { padding: 1.5rem 0; gap: 1rem; }
  .card { padding: 1.25rem; }
  .narrow-top { padding-top: 3.5rem; }
  .apt-gallery-scroll {
    margin-inline: calc(-1 * var(--page-gutter));
    padding-inline: var(--page-gutter);
    scroll-padding-inline: var(--page-gutter);
  }
  .apt-gallery-item { flex: 0 0 min(72vw, 300px); }
  .package-body { padding: 1.25rem; }
  .booking-calendar-wrap { padding: 0.75rem; }
  .picker-cal-legend { flex-wrap: wrap; gap: 0.5rem 1rem; }
}

.eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.eyebrow.accent { color: var(--primary); }
.eyebrow .line { width: 2.5rem; height: 1px; background: rgba(255,255,255,0.6); }

/* Sections */
.section { padding: 6rem 0; }
.section-dark { background: var(--secondary); color: var(--secondary-foreground); }
.section-dark .muted { color: rgba(245,248,250,0.75); }
.section-muted { background: var(--muted); }
.section-card { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.split-section { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split-section { grid-template-columns: 1fr 1fr; gap: 5rem; } .split-section.reverse img { order: 2; } }

.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2.5rem; padding: 1.25rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted-foreground); }
.trust-inner .dot { opacity: 0.3; }

.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 3rem; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* Cards & grids */
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mosaic-img { border-radius: 1rem; object-fit: cover; width: 100%; }
.mosaic-0 { aspect-ratio: 3/4; grid-row: span 2; }
.mosaic-1, .mosaic-2 { aspect-ratio: 1; }

.feature-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature { border-left: 2px solid var(--primary); padding-left: 1rem; }
.feature strong { display: block; margin-bottom: 0.25rem; }
.feature span { font-size: 0.875rem; color: var(--muted-foreground); }

.apt-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .apt-grid { grid-template-columns: 1fr 1fr; } }
.apt-card { border-radius: 1rem; overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: box-shadow 0.2s; }
.apt-card:hover { box-shadow: var(--shadow-soft); }
.apt-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--muted); }
.apt-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.apt-card:hover img { transform: scale(1.05); }
.apt-card-body { padding: 1.5rem; }
.apt-card h3 { font-size: 1.5rem; }
.apt-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; margin-top: 1rem; gap: 1rem; flex-wrap: wrap; }
.price { color: var(--primary); font-weight: 500; }

.rounded-img { border-radius: 1.5rem; width: 100%; object-fit: cover; box-shadow: var(--shadow-soft); }
.rounded-img.tall { aspect-ratio: 4/5; }
.link-accent, .link-primary { display: inline-block; margin-top: 1rem; }
.link-accent { color: var(--accent); }
.link-primary { color: var(--primary); }

.service-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: var(--card); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.service-card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.service-card div { padding: 1.5rem; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); margin: 0; }

.gallery-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 100rem; margin: 0 auto; }
@media (min-width: 768px) { .gallery-strip { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { border-radius: 0.75rem; object-fit: cover; width: 100%; aspect-ratio: 1; }
.gallery-item.tall { aspect-ratio: 4/5; }

.steps-grid { display: grid; gap: 2rem; margin-top: 4rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-num { font-family: var(--font-display); font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }
.step p { font-size: 0.875rem; color: var(--muted-foreground); }

.testimonial-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; }
.quote-mark { color: var(--primary); font-family: var(--font-display); font-size: 2rem; line-height: 1; margin-bottom: 1rem; }
.testimonial span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }

.cta-banner { position: relative; overflow: hidden; border-radius: 1.5rem; color: #fff; text-align: center; padding: 3rem 1.5rem; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.cta-content { position: relative; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-content p { max-width: 36rem; margin: 1rem auto 2rem; opacity: 0.85; }

/* Apartment detail */
.facts-bar { border-bottom: 1px solid var(--border); }
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(4, 1fr); text-align: left; } }
.facts-grid span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }
.facts-grid strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }

.apt-detail-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .apt-detail-grid { grid-template-columns: 1.4fr 1fr; } }
.highlights-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-card { background: var(--secondary); color: var(--secondary-foreground); border-radius: 0.75rem; padding: 1.25rem; }
.highlight-card strong { display: block; margin-bottom: 0.25rem; }
.highlight-card span { font-size: 0.875rem; opacity: 0.8; }
.amenities-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.625rem; }
.amenities-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin-top: 0.5rem; flex-shrink: 0; }

.apt-gallery-scroll {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.apt-gallery-scroll::-webkit-scrollbar { height: 6px; }
.apt-gallery-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.apt-gallery-item {
  flex: 0 0 min(78vw, 320px); aspect-ratio: 4/3;
  overflow: hidden; border-radius: 0.75rem; background: var(--muted);
  scroll-snap-align: start;
}
.apt-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.apt-gallery-item:hover img { transform: scale(1.05); }

/* Booking form */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem 2rem; box-shadow: var(--shadow-soft); }
.card-success { text-align: center; padding: 2.5rem; background: var(--secondary); color: var(--secondary-foreground); }
.booking-form { display: grid; gap: 1.25rem; }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field > span, .field-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.65rem 0.9rem; border-radius: 0.5rem;
  background: var(--background); border: 1px solid var(--border); font: inherit; font-size: 0.9rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(91,164,212,0.25);
}
.addons-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem; border-radius: 0.75rem; border: 1px solid var(--border); cursor: pointer; transition: border-color 0.15s; }
.addon-card:hover { border-color: var(--primary); }
.addon-title { font-size: 0.875rem; font-weight: 500; }
.addon-price { font-size: 0.75rem; color: var(--muted-foreground); }
.form-note { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin: 0; }

.availability-hint { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: 0.5rem; }
.availability-hint.ok { background: #e8f5e9; color: #2e7d32; }
.availability-hint.error { background: #ffebee; color: #c62828; }
.availability-hint:empty, .availability-hint[hidden] { display: none; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.consent-field { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.85rem; color: var(--muted-foreground); cursor: pointer; }
.consent-field input { margin-top: 0.25rem; flex-shrink: 0; width: 1.1rem; height: 1.1rem; }
.booking-ref { font-size: 1.25rem; margin: 1rem 0; }

.booking-calendar-wrap { border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem; background: var(--muted); }
.picker-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.picker-cal-nav strong { font-family: var(--font-body); font-size: 1rem; }
.picker-cal-legend { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.picker-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 0.35rem; vertical-align: middle; }
.picker-dot.blocked { background: #ffcdd2; border: 1px solid #e57373; }
.picker-dot.buffer { background: #fff3e0; border: 1px solid #ffb74d; }
.picker-dot.selected { background: var(--primary); }
.picker-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.picker-weekday { text-align: center; font-size: 0.65rem; text-transform: uppercase; color: var(--muted-foreground); padding: 0.35rem 0; }
.picker-day {
  aspect-ratio: 1; border: none; border-radius: 0.5rem; background: var(--card);
  font-size: 0.85rem; cursor: pointer; font-family: inherit; transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent; min-height: 40px;
}
.picker-day:hover:not(.blocked):not(.past):not(.empty) { background: rgba(91, 164, 212, 0.15); }
.picker-day.empty { background: transparent; cursor: default; }
.picker-day.past { opacity: 0.35; cursor: not-allowed; }
.picker-day.blocked { background: #ffebee; color: #c62828; cursor: not-allowed; text-decoration: line-through; }
.picker-day.buffer { background: #fff8e1; color: #e65100; cursor: not-allowed; }
.picker-day.today { font-weight: 700; box-shadow: inset 0 0 0 2px var(--primary); }
.picker-day.in-range { background: rgba(91, 164, 212, 0.2); }
.picker-day.range-edge { background: var(--primary); color: #fff; font-weight: 600; }
.picker-selection { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 500; }

.price-summary {
  background: var(--muted); border-radius: 0.75rem; padding: 1rem 1.25rem;
  display: grid; gap: 0.5rem; border: 1px solid var(--border);
}
.price-summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.price-summary-row.discount { color: #2e7d32; }
.price-summary-row.total { border-top: 1px solid var(--border); padding-top: 0.5rem; margin-top: 0.25rem; font-size: 1.05rem; }
.price-summary-row.total strong { color: var(--primary); font-size: 1.25rem; }

@media (max-width: 767px) {
  .picker-day { min-height: 44px; font-size: 0.9rem; }
  .picker-selection { flex-direction: column; gap: 0.35rem; }
}

.alert { padding: 0.75rem 1rem; border-radius: 0.5rem; margin-bottom: 1rem; }
.alert-error { background: #ffebee; color: #c62828; }

.info-grid { display: grid; gap: 2rem; text-align: center; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-grid h3 { font-family: var(--font-display); font-size: 1.5rem; }
.info-grid p { font-size: 0.875rem; color: rgba(245,248,250,0.75); margin: 0; }

/* Packages */
.packages-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
.package-card { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); background: var(--card); display: flex; flex-direction: column; }
.package-card > img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.package-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.package-price { color: var(--primary); font-weight: 500; margin-bottom: 0.75rem; }
.package-body ul { margin-bottom: 1.5rem; flex: 1; }
.package-body li { font-size: 0.875rem; margin-bottom: 0.5rem; padding-left: 1rem; position: relative; }
.package-body li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* Footer */
.footer { background: var(--primary); color: var(--primary-foreground); margin-top: 8rem; }
.footer-grid { display: grid; gap: 3rem; padding: 4rem 1.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { font-size: 1.25rem; letter-spacing: 0.25em; margin-bottom: 1rem; }
.footer-heading { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.7; margin-bottom: 1rem; font-family: var(--font-body); }
.footer-text { font-size: 0.875rem; opacity: 0.7; line-height: 1.7; }
.footer-list li { font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; text-align: center; font-size: 0.75rem; opacity: 0.6; }
