/**
 * The Heights — Booking System Stylesheet
 * Extracted from index.html for upload-safety.
 *
 * @file       style.css
 * @version    6.1
 * @date       2026-06-03
 */

  :root {
    --cream: #FAF7F2;
    --paper: #FFFFFF;
    --stone-light: #EDE5D6;
    --stone: #D9CDB8;
    --sand: #C9A87C;
    --sand-dark: #A8895E;
    --ocean: #2C5F7C;
    --ocean-deep: #1A3B52;
    --ink: #1A2E3F;
    --ink-soft: #4A5A6B;
    --muted: #8B97A3;
    --line: #E5DDD0;
    --shadow-sm: 0 2px 8px rgba(26, 46, 63, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 46, 63, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 46, 63, 0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    /* Leave space for the sticky header when scrolling to an anchor */
    scroll-padding-top: 110px;
  }
  /* Belt-and-braces: also apply to each section so older browsers handle it */
  section[id], div.brand-divider { scroll-margin-top: 110px; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; font-weight: 400; }
  h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
  h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }

  p { color: var(--ink-soft); }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sand-dark);
    margin-bottom: 1rem;
    display: inline-block;
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ============ NAV ============ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: rgba(250, 247, 242, 0);
  }
  .nav.scrolled {
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--paper);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav.scrolled .logo { color: var(--ink); }
  .logo span { color: var(--sand); }
  .logo img {
    width: 250px;
    height: auto;
    flex-shrink: 0;
    display: block;
    transition: width 0.3s, filter 0.3s;
    filter:
      brightness(1.15)
      drop-shadow(0 3px 10px rgba(0,0,0,0.4));
  }
  .nav.scrolled .logo img {
    width: 170px;
    filter:
      brightness(0.4) contrast(1.3)
      drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  }
  @media (max-width: 1000px) {
    .logo img { width: 180px; }
    .nav.scrolled .logo img { width: 130px; }
  }
  @media (max-width: 700px) {
    .logo img { width: 140px; }
    .nav.scrolled .logo img { width: 100px; }
  }

  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--paper);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav.scrolled .nav-links a { color: var(--ink-soft); }
  .nav-links a:hover { color: var(--sand); }

  .nav-cta {
    background: var(--sand);
    color: var(--paper) !important;
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--sand-dark); color: var(--paper) !important; }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 1.5rem;
    cursor: pointer;
  }
  .nav.scrolled .nav-toggle { color: var(--ink); }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--paper);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(90deg, rgba(26, 46, 63, 0.55) 0%, rgba(26, 46, 63, 0.25) 50%, rgba(26, 46, 63, 0.15) 100%),
      url('photos/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(26, 46, 63, 0.25) 0%, rgba(26, 46, 63, 0.05) 35%, rgba(26, 46, 63, 0.55) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
  }
  .hero-text { max-width: 600px; }
  .hero-mark {
    width: 500px;
    max-width: 100%;
    opacity: 1;
    display: block;
    justify-self: end;
    align-self: end;
    margin-bottom: 6px;
    filter:
      brightness(1.15)
      drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  }
  @media (max-width: 1100px) {
    .hero-mark { width: 420px; }
  }
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
    .hero-mark { width: 260px; justify-self: start; align-self: start; order: -1; margin-bottom: 0.5rem; }
  }
  .hero-eyebrow {
    color: var(--sand);
    margin-bottom: 1.5rem;
  }
  .hero h1 {
    color: var(--paper);
    margin-bottom: 1.5rem;
    max-width: 14ch;
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 30ch;
    font-weight: 400;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
  }
  .btn-primary {
    background: var(--sand);
    color: var(--paper);
  }
  .btn-primary:hover { background: var(--sand-dark); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  .btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--paper); }

  .btn-ink {
    background: var(--ocean-deep);
    color: var(--paper);
  }
  .btn-ink:hover { background: var(--ocean); transform: translateY(-1px); }

  .scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 1;
  }
  .scroll-cue::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.5);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  }

  /* ============ SECTIONS ============ */
  section { padding: 100px 0; }

  /* Brand divider — small whale mark between sections, on a dark band so the logo reads */
  .brand-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 60px 24px;
    background: var(--ocean-deep);
  }
  .brand-divider.on-paper,
  .brand-divider.on-stone { background: var(--ocean-deep); }
  .brand-divider::before,
  .brand-divider::after {
    content: '';
    flex: 0 0 90px;
    height: 1px;
    background: var(--sand);
    opacity: 0.55;
  }
  .brand-divider img {
    width: 200px;
    height: auto;
    transition: opacity 0.3s;
    filter:
      brightness(1.15)
      drop-shadow(0 4px 14px rgba(0,0,0,0.35));
  }

  @media (max-width: 700px) {
    .brand-divider { padding: 40px 16px; gap: 16px; }
    .brand-divider::before, .brand-divider::after { flex: 0 0 40px; }
    .brand-divider img { width: 140px; }
  }
  .section-head { text-align: center; margin-bottom: 4rem; }
  .section-head p { max-width: 60ch; margin: 1rem auto 0; }

  /* ============ INTRO ============ */
  .intro { background: var(--paper); }
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .intro-img {
    aspect-ratio: 4/5;
    background-image: url('photos/house-welcome.jpg?v=5');
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }
  .property-banner {
    margin-top: 4rem;
    width: 100%;
    aspect-ratio: 21/9;
    background-image: url('photos/property.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }
  .property-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 46, 63, 0.55) 100%);
  }
  .property-banner-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    color: var(--paper);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.5;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    max-width: 90%;
  }
  .property-banner-caption a {
    color: var(--sand);
    text-decoration: none;
    border-bottom: 1px dashed rgba(201, 168, 124, 0.6);
    transition: color 0.2s, border-color 0.2s;
  }
  .property-banner-caption a:hover {
    color: var(--paper);
    border-bottom-color: var(--paper);
  }

  /* Home-link wrapping the top-band logo so clicking it returns to the top */
  .top-band-logo a {
    display: block;
    line-height: 0;
    transition: opacity 0.2s;
  }
  .top-band-logo a:hover { opacity: 0.85; }
  @media (max-width: 700px) {
    .property-banner { aspect-ratio: 16/10; margin-top: 2.5rem; }
    .property-banner-caption { left: 1rem; right: 1rem; bottom: 1rem; font-size: 0.95rem; }
  }
  .intro-text h2 { margin-bottom: 1.5rem; }
  .intro-text p { font-size: 1.05rem; margin-bottom: 1.2rem; }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--sand);
    margin: 1.5rem 0;
  }

  /* ============ HIGHLIGHTS ============ */
  .highlights { background: var(--cream); }
  .highlight-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 1100px) {
    .highlight-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 600px) {
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .highlight {
    background: var(--paper);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.2s;
  }
  .highlight:hover { background: var(--stone-light); }
  .highlight-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--sand-dark);
  }
  .highlight h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .highlight p { font-size: 0.9rem; color: var(--muted); }

  /* ============ THE HOME ============ */
  .home-section { background: var(--paper); }
  .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .room-card {
    border: 1px solid var(--line);
    padding: 0;
    background: var(--cream);
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .room-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--stone);
    position: relative;
  }
  .room-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  }
  .room-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
  .room-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .room-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  .room-card p { font-size: 0.92rem; }
  .room-card ul { list-style: none; margin-top: 0.8rem; }
  .room-card ul li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
  }
  .room-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sand);
  }

  /* ============ GALLERY ============ */
  .gallery { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }

  /* Gallery as collapsible categories */
  .gallery-categories {
    margin-top: 1rem;
  }
  .gallery-category {
    border-bottom: 1px solid var(--line);
  }
  .gallery-category:first-of-type {
    border-top: 1px solid var(--line);
  }
  .gallery-category summary {
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: padding 0.2s;
  }
  .gallery-category summary::-webkit-details-marker,
  .gallery-category summary::marker { display: none; }
  .gallery-category summary:hover { padding-left: 8px; }
  .gallery-category summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
  }
  .gallery-cat-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sand-dark);
    white-space: nowrap;
  }
  .gallery-cat-count {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--sand-dark);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .gallery-category summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--sand);
    font-weight: 300;
    width: 24px;
    text-align: center;
    margin-left: 0.4rem;
    line-height: 1;
  }
  .gallery-category[open] summary::after { content: '−'; }
  /* Horizontal scroll strip — all tiles same size, single line, scrollable */
  .gallery-category .category-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 14px;
    margin-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-category .category-grid::-webkit-scrollbar { height: 8px; }
  .gallery-category .category-grid::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 100px; }
  .gallery-category .category-grid::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 100px; }
  .gallery-category .category-grid::-webkit-scrollbar-thumb:hover { background: var(--sand-dark); }
  .gallery-category .category-grid .gallery-item {
    flex: 0 0 320px;
    height: 220px;
    scroll-snap-align: start;
  }
  @media (max-width: 700px) {
    .gallery-category .category-grid .gallery-item { flex: 0 0 240px; height: 170px; }
  }
  /* Subtle "scroll for more" hint on right edge */
  .gallery-category[open] .category-grid {
    background:
      linear-gradient(to left, rgba(201,168,124,0.18), transparent 60px) right / 60px 100% no-repeat;
  }

  @media (max-width: 700px) {
    .gallery-category summary { flex-wrap: wrap; gap: 0.5rem 1rem; padding: 1.3rem 0; }
    .gallery-cat-sub { font-size: 0.62rem; flex-basis: 100%; letter-spacing: 0.15em; }
    .gallery-cat-count { font-size: 0.7rem; }
    .gallery-category .category-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 8px; }
    .gallery-category[open] .category-grid > .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  }
  .gallery-item {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--stone);
    transition: transform 0.3s;
  }
  .gallery-item:hover { transform: scale(1.01); }
  .gallery-item.feature { grid-column: span 2; grid-row: span 2; }
  .gallery-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    color: var(--paper);
    background-size: cover;
    background-position: center;
    transition: filter 0.3s;
    position: relative;
  }
  .gallery-item-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.6) 100%);
  }
  .gallery-item-label {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  .gallery-item.feature .gallery-item-label { font-size: 1.5rem; }

  .gallery-item { cursor: zoom-in; }
  .gallery-item-inner::after {
    content: '⤢';
    position: absolute;
    top: 12px;
    right: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .gallery-item:hover .gallery-item-inner::after { opacity: 1; }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 23, 38, 0.94);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
  }
  .lightbox.open { opacity: 1; pointer-events: auto; }

  .lightbox-stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    display: block;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    border-radius: 2px;
    object-fit: contain;
    transition: opacity 0.2s;
  }
  .lightbox-img.loading { opacity: 0.3; }

  .lightbox-info {
    text-align: center;
    color: rgba(255,255,255,0.95);
  }
  .lightbox-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    letter-spacing: 0.01em;
    margin-bottom: 0.3rem;
  }
  .lightbox-counter {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--sand);
  }

  .lightbox-btn {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    z-index: 10;
    line-height: 1;
  }
  .lightbox-btn:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--sand);
    color: var(--sand);
    transform: scale(1.05);
  }
  .lightbox-close { top: 24px; right: 24px; font-size: 1.8rem; }
  .lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

  .lightbox-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 720px;
    margin-top: 0.4rem;
  }
  .lightbox-thumb {
    width: 56px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.45;
    border: 1px solid transparent;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(255,255,255,0.06);
  }
  .lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .lightbox-thumb:hover { opacity: 0.85; transform: translateY(-2px); }
  .lightbox-thumb.active { opacity: 1; border-color: var(--sand); }

  @media (max-width: 700px) {
    .lightbox { padding: 40px 12px; }
    .lightbox-btn { width: 44px; height: 44px; font-size: 1.2rem; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-img { max-height: calc(100vh - 240px); }
    .lightbox-thumb { width: 44px; height: 32px; }
  }

  /* Gallery photos — pulled from /photos/ folder. ?v=5 = cache-buster after full photo set */
  /* Outdoor / Patio */
  .g-patio       .gallery-item-inner { background-image: url('photos/patio-braai.jpg?v=5');           background-color: #2C5F7C; }
  .g-patio-full  .gallery-item-inner { background-image: url('photos/patio-full.jpg?v=5');            background-color: #4A8AB0; }
  .g-patio-5d    .gallery-item-inner { background-image: url('photos/patio-5-door.jpg?v=5');          background-color: #87A8C4; }
  .g-patio-3d    .gallery-item-inner { background-image: url('photos/patio-3-door.jpg?v=5');          background-color: #87A8C4; }
  .g-patio-wrap  .gallery-item-inner { background-image: url('photos/patio-wrap-doors.jpg?v=5');      background-color: #4A8AB0; }
  /* Living spaces */
  .g-lounge      .gallery-item-inner { background-image: url('photos/lounge-fireplace.jpg?v=5');      background-color: #87A8C4; }
  .g-lounge-d    .gallery-item-inner { background-image: url('photos/lounge-dining-room.jpg?v=5');    background-color: #A8895E; }
  .g-dining      .gallery-item-inner { background-image: url('photos/dining-room.jpg?v=5');          background-color: #A8895E; }
  .g-kitchen     .gallery-item-inner { background-image: url('photos/kitchen-new.jpg?v=5');           background-color: #C9A87C; }
  .g-coffee      .gallery-item-inner { background-image: url('photos/coffee-station.jpg?v=5');        background-color: #C9A87C; }
  .g-scullery    .gallery-item-inner { background-image: url('photos/scullery-new.jpg?v=5');          background-color: #E8DFD3; }
  /* Bedroom 1 */
  .g-bed1        .gallery-item-inner { background-image: url('photos/bedroom-1.jpg?v=5');             background-color: #6B8A7A; }
  .g-bed1-bath   .gallery-item-inner { background-image: url('photos/bedroom-1-bathroom.jpg?v=5');    background-color: #E8DFD3; }
  .g-bed1-shower .gallery-item-inner { background-image: url('photos/bedroom-1-shower.jpg?v=5');      background-color: #E8DFD3; }
  /* Bedroom 3 */
  .g-bed3        .gallery-item-inner { background-image: url('photos/bedroom-3.jpg?v=5');             background-color: #6B8A7A; }
  .g-bed3-bath   .gallery-item-inner { background-image: url('photos/bedroom-3-bathroom.jpg?v=5');    background-color: #E8DFD3; }
  .g-bed3-balc   .gallery-item-inner { background-image: url('photos/bedroom-3-balcony.jpg?v=5');     background-color: #4A8AB0; }
  /* Bedroom 4 */
  .g-bed4        .gallery-item-inner { background-image: url('photos/bedroom-4.jpg?v=5');             background-color: #6B8A7A; }
  .g-bed4-view   .gallery-item-inner { background-image: url('photos/bedroom-4-view.jpg?v=5');        background-color: #4A8AB0; }
  .g-bed4-bath   .gallery-item-inner { background-image: url('photos/bedroom-4-bathroom.jpg?v=5');    background-color: #E8DFD3; }
  .g-bed4-shower .gallery-item-inner { background-image: url('photos/bedroom-4-shower.jpg?v=5');      background-color: #E8DFD3; }
  /* Balcony / Views */
  .g-balc-main   .gallery-item-inner { background-image: url('photos/balcony-views.jpg?v=5');         background-color: #4A8AB0; }
  .g-balc        .gallery-item-inner { background-image: url('photos/bedroom-balcony-view.jpg?v=5');  background-color: #4A8AB0; }
  .g-balc-1      .gallery-item-inner { background-image: url('photos/bedroom-balcony-view-1.jpg?v=5');background-color: #4A8AB0; }
  /* Guest facilities */
  .g-guest-basin .gallery-item-inner { background-image: url('photos/guest-basin.jpg?v=5');           background-color: #E8DFD3; }
  .g-guest-wc    .gallery-item-inner { background-image: url('photos/guest-toilet.jpg?v=5');          background-color: #E8DFD3; }
  /* Entrance / Estate / Garages */
  .g-entrance    .gallery-item-inner { background-image: url('photos/entrance-new.jpg?v=5');          background-color: #1A3B52; }
  .g-estate-ent  .gallery-item-inner { background-image: url('photos/estate-entrance.jpg?v=5');       background-color: #2C5F7C; }
  .g-estate-air  .gallery-item-inner { background-image: url('photos/estate-aerial.jpg?v=5');         background-color: #2C5F7C; }
  .g-garages     .gallery-item-inner { background-image: url('photos/garages.jpg?v=5');               background-color: #6B7B8C; }
  /* Exterior / Sunset */
  .g-sunset      .gallery-item-inner { background-image: url('photos/sunset-view.jpg?v=5');           background-color: #C9A87C; }
  .g-ext-1       .gallery-item-inner { background-image: url('photos/exterior-1.jpg?v=5');            background-color: #6B8A7A; }
  .g-ext-2       .gallery-item-inner { background-image: url('photos/exterior-2.jpg?v=5');            background-color: #6B8A7A; }
  .g-ext-3       .gallery-item-inner { background-image: url('photos/exterior-3.jpg?v=5');            background-color: #6B8A7A; }

  /* ============ LOCATION ============ */
  .location { background: var(--ocean-deep); color: var(--paper); }
  .location h2, .location h3 { color: var(--paper); }
  .location p { color: rgba(255,255,255,0.8); }
  .location .eyebrow { color: var(--sand); }
  .location-category {
    margin-top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .location-category:first-of-type {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .location-category summary {
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: padding 0.2s, color 0.2s;
  }
  .location-category summary::-webkit-details-marker,
  .location-category summary::marker { display: none; }
  .location-category summary:hover { padding-left: 8px; }
  .location-category summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: var(--paper);
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
  }
  .summary-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(201, 168, 124, 0.65);
    white-space: nowrap;
  }
  .summary-count {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--sand);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .location-category summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--sand);
    font-weight: 300;
    width: 24px;
    text-align: center;
    margin-left: 0.4rem;
    line-height: 1;
    transition: transform 0.25s;
  }
  .location-category[open] summary::after {
    content: '−';
  }
  .location-category .location-table {
    margin-bottom: 1.6rem;
    border-top: none;
  }
  @media (max-width: 700px) {
    .location-category summary { flex-wrap: wrap; gap: 0.5rem 1rem; padding: 1.3rem 0; }
    .summary-sub { font-size: 0.62rem; flex-basis: 100%; letter-spacing: 0.15em; }
    .summary-count { font-size: 0.7rem; }
  }
  .location-table { border-top: 1px solid rgba(255,255,255,0.12); }
  .location-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    align-items: center;
    transition: background 0.2s;
  }
  .location-row:hover { background: rgba(255,255,255,0.03); padding-left: 8px; }
  .location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--paper);
  }
  .location-cat { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
  .location-dist {
    color: var(--sand);
    font-size: 0.85rem;
    text-align: right;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .location-name a {
    color: var(--paper);
    text-decoration: none;
    border-bottom: 1px dashed rgba(201, 168, 124, 0.4);
    transition: border-color 0.2s, color 0.2s;
  }
  .location-name a:hover { border-color: var(--sand); color: var(--sand); }
  .location-note {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--sand);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .location-note a {
    color: var(--sand);
    text-decoration: none;
    border-bottom: 1px dotted var(--sand);
  }
  .location-note a:hover { color: var(--paper); }

  /* ============ RATES ============ */
  .rates { background: var(--paper); }
  .rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .rate-card {
    border: 1px solid var(--line);
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--cream);
    position: relative;
  }
  .rate-card.featured {
    border-color: var(--sand);
    background: var(--paper);
    box-shadow: var(--shadow-md);
  }
  .rate-card.featured::before {
    content: attr(data-banner);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sand);
    color: var(--paper);
    padding: 4px 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .rate-season {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  .rate-period {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
  .rate-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--ink);
    line-height: 1;
  }
  .rate-price small {
    font-size: 0.85rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    display: block;
    margin-top: 0.3rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
  }
  .rate-min {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .rates-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
  }

  /* ============ NEW TOP BAND HEADER (sticky) ============ */
  .nav, .nav.scrolled { display: none !important; }  /* hide old floating nav */
  .top-band {
    background: #0F2435;
    padding: 22px 30px;
    border-bottom: 2px solid #C9A87C;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
  }
  .top-band.compact {
    padding: 8px 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  }
  .top-band.compact .top-band-logo img { width: 70px; transition: width 0.3s ease; }
  .top-band.compact .top-band-text h1 { font-size: 1.2rem; margin-bottom: 0; }
  .top-band.compact .top-band-text .estate,
  .top-band.compact .top-band-text .contact-line { display: none; }
  .top-band.compact .top-band-cta { padding: 9px 18px; font-size: 0.7rem; }
  .top-band-logo img { transition: width 0.3s ease; }
  .top-band-text h1, .top-band-text .estate, .top-band-text .contact-line { transition: font-size 0.3s ease, opacity 0.2s ease; }
  body.is-scrolled .top-band-nav ul { padding: 10px 30px; }
  body.is-scrolled .top-band-nav { transition: padding 0.3s ease; }
  .top-band-inner {
    display: flex; align-items: center; gap: 28px;
    max-width: 1400px; margin: 0 auto;
  }
  .top-band-logo { flex-shrink: 0; }
  .top-band-logo img {
    width: 200px; height: auto; display: block;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  .top-band-text { flex: 1; }
  .top-band-text h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.6rem); color: #FFFFFF;
    letter-spacing: 0.08em; margin: 0 0 6px; line-height: 1;
  }
  .top-band-text .estate {
    color: #C9A87C; font-size: 0.85rem; letter-spacing: 0.18em;
    font-weight: 500; margin: 0 0 12px; text-transform: uppercase;
  }
  .top-band-text .contact-line {
    color: #FFFFFF; font-size: 0.78rem; letter-spacing: 0.12em;
    font-weight: 500; margin: 2px 0; text-transform: uppercase;
  }
  .top-band-text .contact-line strong { color: #C9A87C; font-weight: 600; }
  .top-band-cta {
    background: #C9A87C; color: #FFFFFF; padding: 14px 28px;
    border: none; cursor: pointer; text-decoration: none;
    font-family: 'Inter', sans-serif; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600;
    transition: background 0.2s; flex-shrink: 0;
  }
  .top-band-cta:hover { background: #A8895E; color: #FFFFFF; }

  /* Secondary nav strip below the dark band */
  .top-band-nav {
    background: #0F2435;
    border-top: 1px solid rgba(201, 168, 124, 0.25);
    border-bottom: 2px solid #C9A87C;
    position: relative; z-index: 99;
  }
  .top-band-nav ul {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 2.4rem; list-style: none; padding: 16px 30px;
    margin: 0 auto; max-width: 1400px;
  }
  .top-band-nav a {
    color: #FFFFFF; text-decoration: none; font-size: 0.78rem;
    letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    transition: color 0.2s, border-bottom-color 0.2s;
    padding-bottom: 3px; border-bottom: 1px solid transparent;
    font-family: 'Inter', sans-serif;
  }
  .top-band-nav a:hover {
    color: #C9A87C; border-bottom-color: #C9A87C;
  }
  @media (max-width: 800px) {
    .top-band-nav ul { gap: 1.2rem; padding: 12px 16px; }
    .top-band-nav a { font-size: 0.7rem; letter-spacing: 0.1em; }
  }
  @media (max-width: 800px) {
    .top-band-inner { flex-direction: column; text-align: center; gap: 16px; }
    .top-band-logo img { width: 160px; }
    .top-band-text h1 { font-size: 1.8rem; }
  }

  /* ============ NEW HERO with carousel + centred card ============ */
  .hero, .hero-bg, .hero-bg::after, .hero-content, .hero-mark { display: none !important; }
  .hero-v2 {
    position: relative; overflow: hidden; min-height: 78vh;
    display: flex; align-items: center; justify-content: center;
    padding: 60px 24px;
  }
  .hero-bg-carousel { position: absolute; inset: 0; z-index: 0; background: #1A3B52; }
  .hero-bg-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 2s ease;
  }
  .hero-bg-slide.active { opacity: 1; }
  .hero-bg-carousel::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(15, 36, 53, 0.28); z-index: 1;
  }
  .hero-card {
    background: rgba(255, 255, 255, 0.96); padding: 50px 70px;
    text-align: center; max-width: 600px; width: 100%;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35); position: relative; z-index: 2;
  }
  .hero-card h2 {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 600; letter-spacing: 0.06em; color: #1A2E3F;
    margin: 0 0 8px;
  }
  .hero-card .sub {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.5rem); color: #1A2E3F;
    letter-spacing: 0.06em; margin: 0 0 14px; text-transform: uppercase;
  }
  .hero-card .region {
    color: #2C5F7C; font-size: 0.78rem; letter-spacing: 0.18em;
    margin: 0 0 30px; text-transform: uppercase; font-weight: 500;
  }
  .hero-card .cta {
    display: inline-block; background: #1A3B52; color: #FFFFFF;
    padding: 15px 36px; text-decoration: none;
    font-family: 'Inter', sans-serif; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    transition: background 0.2s, transform 0.2s; border: none; cursor: pointer;
  }
  .hero-card .cta:hover { background: #2C5F7C; transform: translateY(-1px); }
  @media (max-width: 600px) {
    .hero-card { padding: 35px 25px; }
    .hero-v2 { min-height: 65vh; padding: 40px 16px; }
  }

  /* ============ AVAILABILITY CALENDAR ============ */
  .availability { background: var(--paper); padding: 70px 0 60px; }
  .calendar-wrap {
    max-width: 980px; margin: 2rem auto 0;
    background: var(--paper); border: 1px solid var(--line); padding: 1.8rem;
  }
  .calendar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem; gap: 1rem;
  }
  .calendar-nav-btn {
    background: var(--cream); border: 1px solid var(--line); color: var(--ink);
    width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; transition: background 0.2s;
  }
  .calendar-nav-btn:hover { background: var(--stone-light); border-color: var(--sand); }
  .calendar-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .calendar-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    color: var(--ink); text-align: center; flex: 1;
  }
  .calendar-months { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  @media (max-width: 720px) {
    .calendar-months { grid-template-columns: 1fr; gap: 1.5rem; }
    .calendar-wrap { padding: 1rem; }
  }
  .calendar-month-name {
    text-align: center; font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; margin-bottom: 0.7rem; color: var(--ink);
  }
  .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .calendar-weekday {
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted); text-align: center; padding: 4px 0; font-weight: 500;
  }
  .calendar-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; background: var(--paper); border: 1px solid transparent;
    cursor: pointer; transition: background 0.15s, color 0.15s; user-select: none;
    color: var(--ink); position: relative;
  }
  .calendar-day:hover { background: var(--cream); border-color: var(--sand); }
  .calendar-day.empty { cursor: default; background: transparent; }
  .calendar-day.empty:hover { background: transparent; border-color: transparent; }
  .calendar-day.past { color: var(--muted); cursor: not-allowed; opacity: 0.5; }
  .calendar-day.past:hover { background: var(--paper); border-color: transparent; }
  .calendar-day.booked {
    background: #FEE2E2; color: #B42318; cursor: not-allowed;
    text-decoration: line-through; border-color: #FCA5A5;
  }
  .calendar-day.booked:hover { background: #FEE2E2; border-color: #FCA5A5; }
  .calendar-day.selected {
    background: #D1FAE5; color: #15803D; border-color: #6EE7B7; font-weight: 500;
  }
  .calendar-day.selected:hover { background: #A7F3D0; border-color: #15803D; }
  .calendar-day.selected-start, .calendar-day.selected-end {
    background: #15803D; color: var(--paper); font-weight: 600; border-color: #15803D;
  }
  .calendar-legend {
    display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center;
    margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
    font-size: 0.78rem; color: var(--ink-soft);
  }
  .calendar-legend-swatch {
    display: inline-block; width: 14px; height: 14px; margin-right: 6px;
    vertical-align: middle; border: 1px solid transparent;
  }
  .calendar-legend-swatch.available { background: var(--paper); border-color: var(--line); }
  .calendar-legend-swatch.booked { background: #FEE2E2; border-color: #FCA5A5; }
  .calendar-legend-swatch.selected { background: #15803D; }
  .calendar-summary {
    margin-top: 1.5rem; padding: 1rem 1.2rem; background: var(--cream);
    border-left: 3px solid var(--sand); display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .calendar-summary-text { font-size: 0.95rem; color: var(--ink); }
  .calendar-summary-text strong { color: var(--ocean-deep); }
  .calendar-summary-text.empty { color: var(--muted); font-style: italic; }
  .calendar-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .calendar-clear, .calendar-book-btn {
    padding: 9px 18px; font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.1em; cursor: pointer; font-family: inherit; font-weight: 500;
  }
  .calendar-clear { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); }
  .calendar-clear:hover { border-color: var(--sand); color: var(--ink); }
  .calendar-book-btn { background: var(--ocean-deep); border: none; color: var(--paper); }
  .calendar-book-btn:hover { background: var(--ocean); }
  .calendar-book-btn:disabled { opacity: 0.4; cursor: not-allowed; }
  .calendar-loading { padding: 3rem; text-align: center; color: var(--muted); font-style: italic; }

  /* ============ BOOK ============ */
  .book { background: var(--stone-light); }
  .book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .book-info h3 { margin-bottom: 1rem; }
  .book-info p { margin-bottom: 1.5rem; }

  .platforms {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  .platform-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--paper);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
  }
  .platform-btn:hover {
    border-color: var(--sand);
    transform: translateX(4px);
  }
  .platform-btn span:first-child { font-weight: 500; }
  .platform-btn .arrow { color: var(--sand); }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 22px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: opacity 0.2s;
  }
  .whatsapp-btn:hover { opacity: 0.9; }

  /* form */
  .form {
    background: var(--paper);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
  }
  .form h3 { margin-bottom: 0.5rem; }
  .form-subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-field { margin-bottom: 1.2rem; }
  .form-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border 0.2s, background 0.2s;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    outline: none;
    border-color: var(--sand);
    background: var(--paper);
  }
  .form-field textarea { min-height: 100px; resize: vertical; }

  .quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.8rem;
  }
  .chip {
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink-soft);
    padding: 7px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
  }
  .chip:hover {
    border-color: var(--sand);
    color: var(--ink);
    background: var(--cream);
  }
  .chip.active {
    border-color: var(--ocean-deep);
    background: var(--ocean-deep);
    color: var(--paper);
    box-shadow: 0 2px 6px rgba(26,46,63,0.25);
    font-weight: 600;
  }
  .chip.active::before {
    content: '✓ ';
    color: var(--sand);
    margin-right: 2px;
  }
  .quick-chips-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.6rem;
    display: block;
  }

  .form-error {
    display: none;
    padding: 0.85rem 1rem;
    background: #FEF3F2;
    color: #B42318;
    border-left: 3px solid #F04438;
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }
  .form-error.show { display: block; }
  .nights-counter {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
  }
  .nights-counter.valid { color: #15803D; }
  .nights-counter.invalid {
    color: #B42318;
    background: #FEF2F2;
    border-left: 3px solid #B42318;
    padding: 8px 12px;
    border-radius: 2px;
    font-weight: 500;
    margin: 6px 0;
  }

  /* Cleaning service option cards */
  .cleaning-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.4rem;
  }
  .cleaning-opt {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .cleaning-opt:hover {
    border-color: var(--sand);
    background: var(--paper);
  }
  .cleaning-opt input[type="radio"] {
    margin-top: 0.25rem;
    accent-color: var(--ocean-deep);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
  .cleaning-opt-content { flex: 1; }
  .cleaning-opt-title {
    display: block;
    font-weight: 500;
    color: var(--ink);
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
  }
  .cleaning-opt-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
  }
  .cleaning-opt:has(input:checked) {
    border-color: var(--ocean-deep);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }

  /* Form acceptance checkbox + privacy note */
  .form-accept {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    background: var(--cream);
    border: 1px solid var(--line);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .form-accept:hover { border-color: var(--sand); }
  .form-accept input {
    margin-top: 0.2rem;
    width: 16px; height: 16px;
    accent-color: var(--ocean-deep);
    flex-shrink: 0;
  }
  .form-accept-text {
    font-size: 0.83rem;
    color: var(--ink-soft);
    line-height: 1.45;
  }
  .form-accept-text a {
    color: var(--ocean-deep);
    text-decoration: underline;
    text-decoration-color: var(--sand);
    text-underline-offset: 2px;
  }
  .form-popi-note {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  /* Booking-security / anti-fraud notice */
  .booking-security {
    background: rgba(44, 95, 124, 0.06);
    border-left: 3px solid var(--ocean);
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-radius: 2px;
  }
  .booking-security-head {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ocean);
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .booking-security p {
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
  }

  /* Honeypot - off-screen, invisible to real users */
  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  /* Captcha question */
  .captcha-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
  }
  .captcha-row label {
    font-size: 0.85rem;
    color: var(--ink);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    flex: 1;
  }
  .captcha-row .captcha-q {
    font-weight: 500;
    color: var(--ocean-deep);
  }
  .captcha-row input {
    width: 70px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-align: center;
  }
  .captcha-row input:focus {
    outline: none;
    border-color: var(--sand);
  }

  /* ============ POLICIES SECTION ============ */
  .policies { background: var(--cream); }
  .policies-intro {
    background: var(--paper);
    border-left: 3px solid var(--sand);
    padding: 1.5rem 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
  .policies-intro h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  .policies-intro ul {
    list-style: none;
    margin-top: 0.6rem;
  }
  .policies-intro ul li {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding: 0.25rem 0 0.25rem 1.4rem;
    position: relative;
  }
  .policies-intro ul li::before {
    content: '•';
    position: absolute;
    left: 0.4rem;
    color: var(--sand);
    font-size: 1.2rem;
    line-height: 1;
  }
  .policies-doc {
    background: var(--paper);
    border: 1px solid var(--line);
    margin-bottom: 1rem;
  }
  .policies-doc summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--ink);
    transition: background 0.2s;
  }
  .policies-doc summary::-webkit-details-marker,
  .policies-doc summary::marker { display: none; }
  .policies-doc summary:hover { background: var(--cream); }
  .policies-doc summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--sand);
    font-weight: 300;
    width: 24px;
    text-align: center;
  }
  .policies-doc[open] summary::after { content: '−'; }
  .policies-doc-body {
    padding: 0 1.5rem 1.8rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
  }
  .policies-doc-body h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sand-dark);
    margin: 1.2rem 0 0.5rem;
    font-weight: 500;
  }
  .policies-doc-body p { margin-bottom: 0.7rem; }
  .placeholder-text {
    background: rgba(201, 168, 124, 0.1);
    border: 1px dashed rgba(201, 168, 124, 0.5);
    padding: 0.8rem 1rem;
    border-radius: 2px;
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1rem;
  }
  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    background: var(--ocean-deep);
    color: var(--paper);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 1.5rem;
  }
  .download-btn:hover { background: var(--ocean); transform: translateY(-1px); }
  .download-btn::before { content: '↓'; font-size: 1.05rem; }
  .policies-doc-body .parties {
    background: var(--cream);
    border-left: 3px solid var(--sand);
    padding: 1rem 1.2rem;
    margin: 0.5rem 0 1.4rem;
    font-size: 0.9rem;
  }
  .policies-doc-body .parties dt {
    font-weight: 500;
    color: var(--ink);
    display: inline;
  }
  .policies-doc-body .parties dd {
    display: inline;
    margin-left: 0.4rem;
    color: var(--ink-soft);
  }
  .policies-doc-body .parties div { margin-bottom: 0.3rem; }
  .policies-doc-body ul {
    list-style: none;
    margin: 0.4rem 0 0.8rem;
  }
  .policies-doc-body ul li {
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .policies-doc-body ul li::before {
    content: '•';
    position: absolute;
    left: 0.4rem;
    color: var(--sand);
    font-size: 1.2rem;
    line-height: 1;
  }
  .policies-doc-body ul li strong { color: var(--ink); }
  .signature-block {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-style: italic;
  }
  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--ocean-deep);
    color: var(--paper);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--ocean); }
  /* ============= Dynamic CTA: Confirm Booking state (v6.2) ============= */
  .form-submit.cta-confirm {
    background: var(--sand);
    color: var(--ocean-deep);
    font-weight: 700;
    letter-spacing: 0.2em;
    box-shadow: 0 4px 14px rgba(201, 168, 124, 0.4);
    position: relative;
  }
  .form-submit.cta-confirm:hover {
    background: var(--sand-dark, #B8956A);
  }
  .form-submit.cta-confirm::before {
    content: '✓ ';
    margin-right: 6px;
    font-weight: 700;
  }
  .form-success {
    display: none;
    padding: 1rem;
    background: #E8F5E9;
    color: #1B5E20;
    border-left: 3px solid #4CAF50;
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ocean-deep);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 40px;
  }

  /* Signature mark — large logo centerpiece */
  .footer-signature {
    text-align: center;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    position: relative;
  }
  .footer-signature img {
    width: 540px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 1.8rem;
    filter:
      brightness(1.15)
      drop-shadow(0 8px 22px rgba(0,0,0,0.4));
  }
  .footer-logo img {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
    filter:
      brightness(1.15)
      drop-shadow(0 4px 12px rgba(0,0,0,0.35));
  }
  @media (max-width: 1000px) {
    .footer-signature img { width: 440px; }
    .footer-logo img { width: 230px; }
  }
  @media (max-width: 700px) {
    .footer-signature img { width: 100%; max-width: 340px; }
    .footer-logo img { width: 180px; }
  }
  .footer-signature .footer-signature-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--paper);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .footer-signature .footer-signature-name span { color: var(--sand); }
  .footer-signature .footer-signature-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--sand);
    margin-top: 0.6rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--paper);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer-logo span { color: var(--sand); }
  .footer-logo img { width: 70px; height: auto; display: block; }

  @media (max-width: 700px) {
    .footer-signature { padding-bottom: 40px; margin-bottom: 40px; }
    .footer-signature img { width: 240px; }
  }
  .footer h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sand);
    margin-bottom: 1.2rem;
    font-weight: 500;
  }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 0.6rem; font-size: 0.9rem; }
  .footer ul a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer ul a:hover { color: var(--sand); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 2rem; box-shadow: var(--shadow-md); }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--ink) !important; }
    .nav-toggle { display: block; }

    section { padding: 70px 0; }
    .intro-grid, .book-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro-img { aspect-ratio: 16/10; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, 170px); gap: 8px; }
    .gallery-item.feature { grid-column: span 2; grid-row: span 1; }
    .gallery-item.feature .gallery-item-label { font-size: 1.15rem; }
    .location-row { grid-template-columns: 1fr; gap: 0.3rem; }
    .location-dist { text-align: left; }
  }

/* ============= INLINE CALENDAR WIDGET (v6.6) ============= */
.inline-cal {
  margin-top: 30px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid var(--sand);
  border-radius: 3px;
}
.inline-cal h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ocean-deep);
  margin: 0 0 4px;
}
.inline-cal .ic-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.4;
}
.ic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ic-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ocean-deep);
}
.ic-nav {
  background: none;
  border: 1px solid var(--sand);
  width: 28px;
  height: 28px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ocean-deep);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic-nav:hover { background: var(--sand-light, #F5F0E8); }
.ic-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.ic-wd {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.ic-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.ic-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
  color: var(--ocean-deep);
  border: 1px solid transparent;
}
.ic-day.ic-empty { background: transparent; }
.ic-day.ic-past { color: #CCCCCC; }
.ic-day.ic-booked {
  background: #FEF2F2;
  color: #B42318;
  text-decoration: line-through;
}
.ic-day.ic-clickable {
  cursor: pointer;
  background: #FFFFFF;
}
.ic-day.ic-clickable:hover {
  background: var(--sand-light, #F5F0E8);
  border-color: var(--sand);
}
.ic-day.ic-selected-start {
  background: var(--ocean-deep);
  color: #FFFFFF;
  font-weight: 600;
}
.ic-day.ic-selected {
  background: #E6F4EA;
  color: #15803D;
  font-weight: 500;
}
.ic-loading {
  text-align: center;
  padding: 30px 10px;
  color: var(--muted);
  font-size: 0.85rem;
}
.ic-legend {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap;
}
.ic-legend span { display: flex; align-items: center; gap: 6px; }
.ic-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid var(--sand);
}
.ic-swatch.ic-available { background: #FFFFFF; }
.ic-swatch.ic-booked { background: #FEF2F2; border-color: #B42318; }
.ic-swatch.ic-selected { background: var(--ocean-deep); border-color: var(--ocean-deep); }

@media (max-width: 720px) {
  .inline-cal { margin-top: 24px; padding: 16px; }
  .ic-day { font-size: 0.72rem; }
}


/* ============= SPECIALS / PROMOTIONS DISPLAY (v6.6) ============= */
.rate-card.has-special {
  border-color: #C9A87C;
  box-shadow: 0 4px 14px rgba(201, 168, 124, 0.25);
  position: relative;
}
.rate-special-badge {
  background: #C9A87C;
  color: #0F2435;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
}
.rate-was {
  text-decoration: line-through;
  color: #999999;
  font-size: 1rem;
  margin-right: 6px;
}
.rate-now {
  color: #B42318;
  font-weight: 700;
  font-size: 1.6rem;
}

/* ============= INLINE CALENDAR: SPECIALS + SEASON TINTS (v6.7) ============= */
.ic-day.ic-special {
  position: relative;
  border-color: #C9A87C !important;
  font-weight: 600;
}
.ic-special-badge {
  position: absolute;
  top: 1px;
  right: 2px;
  background: #C9A87C;
  color: #FFFFFF;
  font-size: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}
.ic-season-peak { color: #991B1B; }
.ic-season-high { color: #92400E; }
.ic-season-mid  { color: #166534; }
.ic-season-low  { color: #1E40AF; }

.ic-season-legend {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--sand);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
}
.ic-season-legend span { display: flex; align-items: center; gap: 4px; }
.ic-season-legend .ic-ss {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.ic-ss-peak { background: #FCA5A533; border: 1px solid #FCA5A5; }
.ic-ss-high { background: #FCD34D33; border: 1px solid #FCD34D; }
.ic-ss-mid  { background: #A7F3D033; border: 1px solid #A7F3D0; }
.ic-ss-low  { background: #BFDBFE33; border: 1px solid #BFDBFE; }
.ic-ss-special {
  background: #FFFFFF;
  border: 1px solid #C9A87C;
  position: relative;
}
.ic-ss-special::after {
  content: '%';
  position: absolute;
  top: -2px;
  right: -2px;
  background: #C9A87C;
  color: #FFFFFF;
  font-size: 6px;
  font-weight: 700;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============= LIVE PRICE PREVIEW (v6.7) ============= */
.price-preview {
  background: #F5F0E8;
  border: 1px solid var(--sand);
  padding: 14px 16px;
  margin: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  border-radius: 3px;
}
.price-preview .pp-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dotted var(--sand);
}
.price-preview .pp-row:last-of-type { border-bottom: none; }
.price-preview .pp-strike {
  text-decoration: line-through;
  color: var(--muted);
}
.price-preview .pp-now {
  color: #B42318;
  font-weight: 700;
}
.price-preview .pp-special {
  background: var(--sand);
  color: var(--ocean-deep);
  padding: 6px 10px;
  margin: -4px -6px 8px;
  border-radius: 2px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.price-preview .pp-total {
  font-size: 0.95rem;
  padding-top: 8px;
}
.price-preview .pp-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* ============= MAIN AVAILABILITY CALENDAR: SPECIALS + SEASONS (v6.8) ============= */
.calendar-day.has-special {
  position: relative;
  border-color: #C9A87C !important;
  font-weight: 600;
}
.cal-special-badge {
  position: absolute;
  top: 2px;
  right: 3px;
  background: #C9A87C;
  color: #FFFFFF;
  font-size: 9px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}
.calendar-day.season-peak { color: #991B1B; }
.calendar-day.season-high { color: #92400E; }
.calendar-day.season-mid  { color: #166534; }
.calendar-day.season-low  { color: #1E40AF; }

/* Selected dates override season tints with the legend's green (v6.8.2) */
.calendar-day.selected { background-color: #D1FAE5 !important; color: #15803D !important; border-color: #6EE7B7 !important; font-weight: 600 !important; }
.calendar-day.selected-start, .calendar-day.selected-end { background-color: #15803D !important; color: #FFFFFF !important; border-color: #15803D !important; font-weight: 700 !important; }
.calendar-day.selected .cal-special-badge { background: #15803D; }
