/* Club Bamboo Theme — main stylesheet (extracted from static HTML) */


  :root {
    --ivory: #F7F3EA;
    --sand: #E8DDCB;
    --olive: #4F5A3A;
    --olive-deep: #3E4A2C;
    --olive-light: #6B7A52;
    --espresso: #2E2A24;
    --espresso-light: #4A413A;
    --espresso-soft: #5C5248;
    --gold: #B89B5E;
    --gold-soft: #D4BD86;
    --line: rgba(46, 42, 36, 0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--ivory);
    color: var(--espresso);
    line-height: 1.65;
    font-weight: 300;
    overflow-x: clip; /* 'clip' not 'hidden' — 'hidden' breaks position:sticky header */
  }
  h1, h2, h3, h4, .display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--espresso);
  }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* ===== TOP BAR ===== */
  .topbar {
    background: var(--olive-deep);
    color: var(--ivory);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
  }
  .topbar span { opacity: 0.85; }
  .topbar .gold { color: var(--gold-soft); margin: 0 12px; }

  /* ===== NAV ===== */
  nav.main-nav {
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    background: rgba(247, 243, 234, 0.94);
  }
  .nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .logo-img { height: 80px; width: auto; display: block; }
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  .nav-links a {
    color: var(--espresso);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
  }
  .nav-links a:hover { color: var(--olive); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Outfit', sans-serif;
  }
  .btn-primary { background: var(--olive); color: var(--ivory); }
  .btn-primary:hover { background: var(--olive-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(79, 90, 58, 0.25); }
  .btn-gold { background: var(--gold); color: var(--ivory); }
  .btn-gold:hover { background: #a3884f; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(184, 155, 94, 0.3); }
  .btn-outline { background: transparent; color: var(--espresso); border: 1px solid var(--espresso); }
  .btn-outline:hover { background: var(--espresso); color: var(--ivory); }
  .btn-sm { padding: 10px 22px; font-size: 11px; letter-spacing: 0.18em; }

  /* Standout Book button for Nav — olive green, slightly larger, subtle glow */
  .btn-book {
    display: inline-block;
    padding: 13px 30px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    background: var(--olive);
    color: var(--ivory);
    border: 1px solid var(--olive);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 14px rgba(79, 90, 58, 0.35);
    position: relative;
    cursor: pointer;
  }
  .btn-book:hover {
    background: var(--olive-deep);
    border-color: var(--olive-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 90, 58, 0.5);
  }
  .btn-book::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(79, 90, 58, 0.4);
    pointer-events: none;
    animation: bookPulse 2.4s ease-in-out infinite;
  }
  @keyframes bookPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
  }
  @media (max-width: 580px) {
    .btn-book { padding: 11px 22px; font-size: 11px; }
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    contain: paint;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    transform: scale(1);
  }
  .hero-slide.is-active {
    opacity: 1;
    animation: heroKenBurns 16s ease-in-out infinite alternate;
  }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  @keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(46, 42, 36, 0.78) 0%, rgba(46, 42, 36, 0.55) 50%, rgba(46, 42, 36, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
  }
  /* Slideshow indicator dots */
  .hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
  }
  .hero-dot {
    width: 36px;
    height: 2px;
    background: rgba(247, 243, 234, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .hero-dot.is-active { background: var(--gold-soft); }
  .hero-dot:hover { background: rgba(247, 243, 234, 0.7); }
  @media (max-width: 580px) {
    .hero-dots { bottom: 100px; gap: 8px; }
    .hero-dot { width: 26px; }
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: var(--ivory);
    max-width: 760px;
    padding: 80px 0;
    animation: fadeUp 1.4s ease both;
  }
  .hero-logo {
    width: 220px;
    margin-bottom: 24px;
    opacity: 0.95;
    display: block;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold-soft); }
  .hero h1 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.1;
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 24px;
    font-style: italic;
  }
  .hero h1 .accent { color: var(--gold-soft); font-style: normal; }
  .hero p.lead {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
    font-weight: 300;
    opacity: 0.92;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-actions .btn-outline { background: var(--ivory); color: var(--espresso); border-color: var(--ivory); }
  .hero-actions .btn-outline:hover { background: #fff; color: var(--olive); border-color: #fff; }

  .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: var(--ivory);
    padding: 28px 0;
    border-top: 1px solid var(--line);
  }
  .hero-stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat { text-align: center; padding: 0 16px; border-right: 1px solid var(--line); }
  .stat:last-child { border-right: none; }
  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--olive);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); opacity: 0.7; }

  /* ===== SECTION ===== */
  section.padded { padding: 130px 0; }
  .section-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .section-eyebrow.is-large {
    font-size: 16px;
    letter-spacing: 0.4em;
    margin-bottom: 26px;
  }
  .section-title {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .section-title em { font-style: italic; color: var(--olive); }

  /* ===== INTRO ===== */
  .intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }
  .intro-text p { font-size: 17px; color: var(--espresso); margin-bottom: 24px; opacity: 0.85; }
  .intro-image { position: relative; aspect-ratio: 4 / 5; background: var(--sand); overflow: hidden; }
  .intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
  .intro-image:hover img { transform: scale(1.04); }
  .intro-image::before { content: ''; position: absolute; inset: -30px -30px auto auto; width: 140px; height: 140px; border: 1px solid var(--gold); z-index: 0; }
  .intro-image::after { content: ''; position: absolute; inset: auto auto -30px -30px; width: 140px; height: 140px; background: var(--olive); z-index: 0; }

  /* ===== PRIVILEGES ===== */
  .privileges { background: var(--olive-light); color: var(--ivory); position: relative; overflow: hidden; }
  .privileges::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border: 1px solid rgba(212, 189, 134, 0.2); border-radius: 50%; }
  .privileges::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; border: 1px solid rgba(212, 189, 134, 0.15); border-radius: 50%; }
  .privileges .container { position: relative; z-index: 1; }
  .privileges-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
  .privileges-logo { width: 180px; margin: 0 auto 20px; display: block; opacity: 0.92; }
  .privileges .section-eyebrow { color: var(--gold-soft); }
  .privileges .section-title { color: var(--ivory); }
  .privileges .section-title em { color: var(--gold-soft); font-style: italic; }
  .privileges-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(212, 189, 134, 0.25);
    border: 1px solid rgba(212, 189, 134, 0.25);
  }
  .priv-item { background: var(--olive-light); padding: 44px 36px; transition: background 0.4s ease; }
  .priv-item:hover { background: var(--olive); }
  .priv-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.3em; color: var(--gold-soft); margin-bottom: 14px; display: block; }
  .priv-item h4 { font-size: 24px; color: var(--ivory); margin-bottom: 10px; font-weight: 500; }
  .priv-item p { font-size: 14px; opacity: 0.78; line-height: 1.6; }
  .privileges-cta { text-align: center; margin-top: 70px; }

  /* ===== WHY ===== */
  .why { background: var(--sand); }
  .why-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .why-card { background: var(--ivory); padding: 50px 32px; text-align: center; transition: transform 0.5s ease, box-shadow 0.5s ease; position: relative; overflow: hidden; }
  .why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(46, 42, 36, 0.08); }
  .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon { width: 60px; height: 60px; margin: 0 auto 26px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--olive); border-radius: 50%; color: var(--olive); font-size: 28px; line-height: 1; }
  .why-card h4 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
  .why-card p { font-size: 14px; opacity: 0.75; line-height: 1.65; }

  /* ===== ROOMS ===== */
  .rooms-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 60px; gap: 40px; flex-wrap: wrap; }
  .rooms-header > div { max-width: 600px; }
  .rooms-list { display: flex; flex-direction: column; gap: 24px; }

  .room-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--ivory);
    border: 1px solid var(--line);
    overflow: hidden;
    min-height: 480px;
  }
  .room-row:nth-child(even) { grid-template-columns: 1fr 1.1fr; direction: rtl; }
  .room-row:nth-child(even) > * { direction: ltr; }
  .room-row-img { overflow: hidden; position: relative; min-height: 480px; }
  .room-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
  .room-row:hover .room-row-img img { transform: scale(1.04); }
  .room-row-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--ivory);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 8px 16px;
    font-weight: 500;
    z-index: 2;
  }
  .room-row-body {
    padding: 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .room-row-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .room-row-body h3 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 8px;
    font-weight: 400;
  }
  .room-row-body h3 em { font-style: italic; color: var(--olive); }
  .room-meta-row {
    display: flex;
    gap: 28px;
    padding: 16px 0;
    margin: 16px 0 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
  }
  .room-meta-item {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--espresso);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .room-meta-item .meta-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--olive);
    letter-spacing: 0;
    font-weight: 500;
    text-transform: none;
  }
  .room-row-body > p {
    font-size: 15px;
    color: var(--espresso);
    opacity: 0.82;
    margin-bottom: 22px;
    line-height: 1.7;
  }
  .room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
    margin-bottom: 32px;
  }
  .room-features li {
    list-style: none;
    font-size: 13px;
    color: var(--espresso);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .room-features li::before {
    content: '◆';
    color: var(--gold);
    font-size: 8px;
  }
  .room-row-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

  .link-arrow {
    color: var(--espresso);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
  }
  .link-arrow:hover { gap: 14px; color: var(--olive); }
  .link-arrow .ar { color: var(--gold); }

  /* ===== FACILITIES ===== */
  .facilities { background: var(--espresso); color: var(--ivory); padding: 80px 0; }
  .facilities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
  .fac { text-align: center; padding: 0 12px; }
  .fac-icon { width: 50px; height: 50px; margin: 0 auto 14px; color: var(--gold-soft); display: flex; align-items: center; justify-content: center; }
  .fac-name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }

  /* ===== OFFERS ===== */
  .offers { background: var(--ivory); }
  .offers .section-eyebrow {
    font-size: 16px;
    letter-spacing: 0.36em;
    margin-bottom: 24px;
    display: inline-block;
  }
  .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .offer-card { position: relative; overflow: hidden; aspect-ratio: 3 / 4; cursor: pointer; }
  .offer-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
  .offer-card:hover img { transform: scale(1.08); }
  .offer-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46, 42, 36, 0) 30%, rgba(46, 42, 36, 0.85) 100%); }
  .offer-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; color: var(--ivory); z-index: 2; }
  .offer-tag { display: inline-block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 12px; }
  .offer-content h3 { color: var(--ivory); font-size: 30px; margin-bottom: 8px; font-weight: 500; }
  .offer-discount { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold-soft); font-style: italic; margin-bottom: 12px; }
  .offer-content p { font-size: 13px; opacity: 0.85; margin-bottom: 18px; }

  /* ===== BLOG ===== */
  .blog { background: var(--sand); }
  .blog-header { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
  .blog-header > div { max-width: 580px; }
  .blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
  .blog-post { background: var(--ivory); overflow: hidden; transition: transform 0.5s ease, box-shadow 0.5s ease; cursor: pointer; display: flex; flex-direction: column; }
  .blog-post:hover { transform: translateY(-4px); box-shadow: 0 24px 40px rgba(46, 42, 36, 0.08); }
  .blog-post.feature { grid-row: span 2; }
  .blog-post-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); position: relative; }
  .blog-post.feature .blog-post-img { aspect-ratio: 4 / 3; }
  .blog-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
  .blog-post:hover .blog-post-img img { transform: scale(1.06); }
  .blog-post-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .blog-post.feature .blog-post-body { padding: 38px 40px 42px; }
  .blog-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .blog-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
  .blog-meta .date { color: var(--espresso); opacity: 0.6; }
  .blog-post h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--espresso);
  }
  .blog-post.feature h3 { font-size: 32px; }
  .blog-post p { font-size: 14px; opacity: 0.75; line-height: 1.65; margin-bottom: 20px; flex: 1; }
  .blog-post .link-arrow { font-size: 11px; }
  .blog-cta { text-align: center; margin-top: 60px; }

  /* ===== CTA ===== */
  .cta-banner { background: var(--ivory); padding: 0 0 130px; }
  .cta-inner {
    background: var(--sand);
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-inner::before, .cta-inner::after { content: ''; position: absolute; width: 1px; background: var(--gold); }
  .cta-inner::before { top: 30px; left: 30px; height: 60px; }
  .cta-inner::after { bottom: 30px; right: 30px; height: 60px; }
  .cta-mark { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 18px; }
  .cta-inner h2 { font-size: clamp(32px, 4vw, 52px); max-width: 720px; margin: 0 auto 24px; font-style: italic; line-height: 1.15; }
  .cta-inner p { max-width: 540px; margin: 0 auto 36px; font-size: 16px; opacity: 0.8; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer { background: var(--olive-deep); color: var(--ivory); padding: 90px 0 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 70px; }
  .footer-brand .logo-img { height: 72px; margin-bottom: 24px; }
  .footer-brand p { opacity: 0.65; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
  footer h5 { font-family: 'Outfit', sans-serif; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 22px; font-weight: 500; }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 10px; }
  footer ul { list-style: none; padding-left: 0; }
  footer ul li { margin-bottom: 10px; }
  footer ul li a { color: var(--ivory); opacity: 0.78; text-decoration: none; font-size: 14px; transition: opacity 0.3s, padding 0.3s; display: inline-block; }
  footer ul li a:hover { opacity: 1; padding-left: 4px; }
  .footer-bottom { padding-top: 30px; border-top: 1px solid rgba(247, 243, 234, 0.15); display: flex; justify-content: space-between; font-size: 12px; opacity: 0.65; letter-spacing: 0.1em; flex-wrap: wrap; gap: 16px; color: var(--ivory); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .logo-img { height: 64px; }
    .intro-grid { grid-template-columns: 1fr; gap: 50px; }
    .privileges-list { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .offers-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats-wrap { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .stat { border-right: none; }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }
    section.padded { padding: 80px 0; }

    .room-row, .room-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .room-row-img { min-height: 320px; }
    .room-row-body { padding: 40px 32px; }
    .room-row-body h3 { font-size: 30px; }

    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-post.feature { grid-column: span 2; grid-row: auto; }
  }
  @media (max-width: 580px) {
    .container { padding: 0 22px; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 60px 28px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post.feature { grid-column: auto; }
    .room-features { grid-template-columns: 1fr; }
  }

  /* ========================================
     MOBILE / TABLET RESPONSIVE — comprehensive
     ======================================== */

  /* Hamburger button */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--espresso);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
  }

  /* Mobile drawer */
  .mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
  }
  .mobile-drawer.is-open { pointer-events: auto; }
  .md-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 42, 36, 0.5);
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
  }
  .mobile-drawer.is-open .md-overlay { opacity: 1; }
  .md-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 400px;
    background: var(--ivory);
    padding: 80px 36px 36px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer.is-open .md-panel { transform: translateX(0); }
  .md-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(46, 42, 36, 0.18);
    background: transparent;
    color: var(--espresso);
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .md-close:hover { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
  .md-links {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
  }
  .md-links li { border-bottom: 1px solid rgba(46, 42, 36, 0.08); }
  .md-links li:first-child { border-top: 1px solid rgba(46, 42, 36, 0.08); }
  .md-links a {
    display: block;
    padding: 18px 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--espresso);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, padding 0.2s;
  }
  .md-links a:hover, .md-links a:active { color: var(--olive); padding-left: 12px; }
  .md-book {
    display: block;
    background: var(--olive);
    color: var(--ivory);
    text-decoration: none;
    text-align: center;
    padding: 18px;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(79, 90, 58, 0.3);
  }
  .md-contact {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(46, 42, 36, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .md-contact a {
    color: var(--espresso);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.78;
  }

  /* ====== TABLET (iPad portrait & smaller) ====== */
  @media (max-width: 980px) {
    .topbar { font-size: 11px; letter-spacing: 0.14em; padding: 9px 16px; }
    .topbar .gold { margin: 0 8px; }

    /* Show hamburger, hide nav links + desktop book button */
    .nav-links { display: none; }
    .btn-book-desktop { display: none; }
    .nav-burger { display: flex; }
    .mobile-drawer { display: block; }
    nav.main-nav { padding: 14px 0; }
    .logo-img { height: 64px; }

    /* Hero — smaller padding, tighter type */
    .hero { min-height: 540px; padding: 80px 0 100px; }
    .hero h1 { font-size: clamp(26px, 4.5vw, 38px) !important; line-height: 1.15; }
    .hero .lead { font-size: 16px; }
    .hero-content { padding: 60px 0; }
    .hero-actions { flex-wrap: wrap; gap: 12px; }
    .hero-actions .btn { padding: 14px 22px; font-size: 11px; }
    .hero-stats-wrap { grid-template-columns: repeat(4, 1fr) !important; gap: 16px 8px !important; }
    .stat-value { font-size: 28px !important; }
    .stat-label { font-size: 10px !important; letter-spacing: 0.16em !important; }

    /* Booking widget — pill stacks on tablet too */
    .booking-widget-section { padding: 36px 16px 50px; }
    .bw-pill {
      flex-direction: column;
      border-radius: 22px;
      padding: 12px;
      gap: 4px;
    }
    .bw-dates, .bw-field {
      width: 100%;
      border-radius: 14px;
      padding: 16px 18px;
      justify-content: flex-start;
    }
    .bw-divider { display: none; }
    .bw-search { width: 100%; padding: 18px; margin-top: 6px; }

    /* Calendar popup goes full width on tablet */
    .bw-cal {
      width: auto !important;
      left: 0 !important;
      right: 0 !important;
    }
    .bw-cal-grid { grid-template-columns: 1fr; gap: 24px; }
    .bw-cal-head { grid-template-columns: auto 1fr auto; gap: 12px; }
    .bw-month-title-2, .bw-month-2 { display: none; }

    /* Guest/promo popup full width */
    .bw-guest-popup, .bw-promo-popup {
      left: 0 !important;
      right: 0 !important;
      min-width: 0 !important;
    }

    /* Section paddings */
    section.padded { padding: 70px 0 !important; }
    .section-title { font-size: clamp(28px, 4.5vw, 42px) !important; }

    /* Intro grid stacks */
    .intro-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .intro-image { aspect-ratio: 4/3 !important; }

    /* Privileges */
    .priv-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .priv-item { padding: 28px 22px !important; }

    /* Why Guests Love */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

    /* Rooms list */
    .room-row { grid-template-columns: 1fr !important; }
    .room-row-img { min-height: 260px; aspect-ratio: 16/10; }
    .room-row-body { padding: 32px 24px !important; }
    .room-row-body h3 { font-size: 26px !important; }
    .room-meta-row { gap: 18px; flex-wrap: wrap; }
    .room-row-actions { flex-wrap: wrap; gap: 14px; }
    .rooms-header { flex-direction: column; align-items: flex-start; gap: 18px; }

    /* Facilities bar */
    .facilities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; padding: 40px 0 !important; }
    .facility-item .fi-icon { width: 32px; height: 32px; }

    /* Offers */
    .offers-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
    .offer-card { padding: 0 !important; }
    .offer-card img { position: absolute; inset: 0; }

    /* Gallery */
    .g-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .g-grid .g-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
    .gallery-tabs { gap: 6px; }
    .g-tab { padding: 9px 14px; font-size: 10px; letter-spacing: 0.16em; }

    /* Certificates marquee */
    .certs { padding: 70px 0 !important; }
    .cert-item { width: 140px; height: 140px; padding: 14px; }

    /* Reviews */
    .reviews { padding: 70px 0 !important; }
    .reviews-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .google-summary { flex-direction: column; align-items: flex-start; padding: 24px; }
    .gs-rating { flex-wrap: wrap; }

    /* Connect */
    .connect-grid { grid-template-columns: 1fr !important; gap: 50px !important; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }

    /* Blog */
    .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-post.feature { grid-column: span 2; grid-row: auto; }
    .blog-post.feature .blog-post-img { aspect-ratio: 16/9; }

    /* CTA */
    .cta-banner { padding: 80px 0 !important; }
    .cta-inner h2 { font-size: clamp(26px, 5vw, 42px) !important; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
  }

  /* ====== PHONE (small) ====== */
  @media (max-width: 580px) {
    .topbar { padding: 8px 14px; font-size: 10px; }
    .topbar .gold { display: none; }
    .topbar span:not(.gold) { margin: 0 6px; }

    .container { padding: 0 18px; }
    .logo-img { height: 54px; }

    /* Hero */
    .hero { min-height: 440px; padding: 40px 0 60px; }
    .hero h1 { font-size: clamp(22px, 6vw, 30px) !important; }
    .hero .lead { font-size: 15px; line-height: 1.6; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-actions .btn { width: 100%; text-align: center; padding: 14px 18px; }
    .hero-stats-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 24px 12px !important; }
    .stat { padding: 0 !important; }
    .stat-value { font-size: 24px !important; }

    /* Booking pill — mobile spacing */
    .bw-pill { padding: 8px; gap: 2px; }
    .bw-dates, .bw-field { padding: 14px 16px; font-size: 14px; }
    .bw-date-label { font-size: 14px; }
    .bw-display-text { font-size: 14px; }
    .bw-popup { padding: 18px 14px 16px; border-radius: 18px; }
    .bw-popup-actions { gap: 8px; flex-wrap: wrap; }
    .btn-cancel, .btn-apply { padding: 9px 18px; font-size: 13px; }
    .bw-day { font-size: 12px; }
    .bw-dow { font-size: 10px; padding: 4px 0; }
    .bw-nav-btn { width: 36px; height: 36px; font-size: 16px; }
    .bw-month-title { font-size: 15px; }
    .guest-row { padding: 16px 18px; }
    .guest-row-label { font-size: 15px; }
    .promo-input { padding: 14px 16px; font-size: 15px; }

    /* Privileges 1 col */
    .priv-grid { grid-template-columns: 1fr !important; }

    /* Why grid 1 col */
    .why-grid { grid-template-columns: 1fr; }

    /* Facilities 2 col, smaller */
    .facilities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; padding: 30px 0 !important; }
    .facility-item-label { font-size: 10px; }

    /* Gallery — single col on smallest screens */
    .gallery-tabs { gap: 4px; flex-direction: column; align-items: stretch; padding: 0 4px; }
    .g-tab { width: 100%; padding: 11px 14px; }

    /* Reviews stats */
    .reviews-stats { gap: 24px; }
    .rstat-value { font-size: 32px !important; }

    /* Social grid 1 col */
    .social-grid { grid-template-columns: 1fr; }

    /* Blog 1 col */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post.feature { grid-column: auto; }

    /* CTA */
    .cta-inner { padding: 50px 22px !important; }
    .cta-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .cta-buttons .btn { width: 100%; text-align: center; }

    /* Footer 1 col */
    .footer-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* Smooth touch scroll on iOS */
  html { -webkit-text-size-adjust: 100%; }
  body { -webkit-overflow-scrolling: touch; }
  /* Prevent horizontal scroll bug on mobile */
  body.no-scroll { overflow: hidden; }


/* ===================== */

  .booking-widget-section {
    background: var(--ivory);
    padding: 60px 24px 70px;
    position: relative;
    z-index: 40;
  }

  .bw-pill {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 38px rgba(46, 42, 36, 0.12), 0 2px 8px rgba(46, 42, 36, 0.05);
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 14px;
    gap: 4px;
    position: relative;
  }
  .bw-icon {
    color: var(--espresso);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    opacity: 0.85;
  }

  /* TRIGGER FIELDS */
  .bw-dates, .bw-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    user-select: none;
    position: relative;
  }
  .bw-dates { flex: 1.6; }
  .bw-field { flex: 1; min-width: 0; }
  .bw-dates:hover, .bw-field:hover { background: rgba(46, 42, 36, 0.05); }
  .bw-dates.is-active, .bw-field.is-active {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(46, 42, 36, 0.12), 0 4px 12px rgba(46, 42, 36, 0.06);
  }

  .bw-date-label {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--espresso);
    white-space: nowrap;
  }
  .bw-date-label.is-placeholder { opacity: 0.55; }
  .bw-arrow {
    color: var(--espresso);
    opacity: 0.55;
    font-size: 16px;
    flex-shrink: 0;
  }
  .bw-divider { width: 1px; height: 28px; background: rgba(46, 42, 36, 0.12); flex-shrink: 0; }

  .bw-display-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--espresso);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .bw-display-text.is-placeholder { opacity: 0.55; }

  /* SEARCH BUTTON */
  .bw-search {
    background: var(--olive);
    color: var(--ivory);
    border: none;
    border-radius: 999px;
    padding: 16px 38px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 90, 58, 0.25);
  }
  .bw-search:hover {
    background: var(--olive-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(79, 90, 58, 0.4);
  }

  /* === SHARED POPUP === */
  .bw-popup {
    position: absolute;
    top: calc(100% + 14px);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(46, 42, 36, 0.18), 0 4px 12px rgba(46, 42, 36, 0.06);
    padding: 24px 24px 22px;
    display: none;
    z-index: 100;
    animation: fadeDown 0.25s ease-out;
  }
  .bw-popup.is-open { display: block; }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .bw-popup-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }
  .bw-popup-actions .left { margin-right: auto; }
  .btn-cancel, .btn-apply, .btn-clear {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 999px;
    padding: 10px 26px;
  }
  .btn-cancel {
    background: #fff;
    color: var(--espresso);
    border: 1px solid rgba(46, 42, 36, 0.25);
  }
  .btn-cancel:hover { border-color: var(--espresso); }
  .btn-apply {
    background: var(--olive);
    color: var(--ivory);
    border: 1px solid var(--olive);
  }
  .btn-apply:hover { background: var(--olive-deep); }
  .btn-clear {
    background: transparent;
    color: var(--espresso);
    border: none;
    padding: 10px 8px;
  }
  .btn-clear:hover { color: var(--olive); }

  /* === CALENDAR POPUP === */
  .bw-cal {
    left: 0;
    right: auto;
    width: 760px;
    max-width: calc(100vw - 48px);
  }
  .bw-cal-head {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
  }
  .bw-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(46, 42, 36, 0.15);
    background: #fff;
    color: var(--espresso);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bw-nav-btn:hover { background: var(--espresso); color: #fff; border-color: var(--espresso); }
  .bw-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .bw-month-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--espresso);
  }
  .bw-cal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .bw-month {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }
  .bw-dow {
    text-align: center;
    font-size: 11px;
    color: var(--espresso);
    opacity: 0.55;
    font-weight: 500;
    padding: 6px 0;
  }
  .bw-day {
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    font-family: 'Outfit', sans-serif;
    color: var(--espresso);
    font-size: 14px;
    font-weight: 500;
    min-width: 0;
  }
  .bw-day-empty { background: transparent; cursor: default; }
  .bw-day:not(.bw-day-empty):not(.bw-day-disabled):hover {
    border-color: var(--olive);
  }
  .bw-day-disabled { opacity: 0.28; cursor: not-allowed; }
  .bw-day.is-checkin {
    background: #fff;
    color: var(--espresso);
    border: 2px solid var(--olive);
  }
  .bw-day.is-checkout {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
  }
  .bw-day.is-in-range {
    background: rgba(79, 90, 58, 0.15);
    border-radius: 0;
  }

  /* === GUEST POPUP === */
  .bw-guest-popup {
    min-width: 360px;
    right: 0;
    left: auto;
  }
  .guest-row {
    background: #f5f5f3;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .guest-row-label {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--espresso);
  }
  .guest-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 999px;
    padding: 8px;
    border: 1px solid rgba(46, 42, 36, 0.12);
  }
  .gc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f0f0ee;
    color: var(--espresso);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .gc-btn:hover { background: rgba(46, 42, 36, 0.12); }
  .gc-btn:disabled { opacity: 0.4; cursor: not-allowed; }
  .gc-value {
    min-width: 28px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--espresso);
  }

  /* === PROMO POPUP === */
  .bw-promo-popup {
    min-width: 420px;
    right: 0;
    left: auto;
  }
  .promo-input {
    width: 100%;
    border: 1px solid rgba(46, 42, 36, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--espresso);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
  }
  .promo-input:focus { border-color: var(--olive); }
  .promo-input::placeholder { color: var(--espresso); opacity: 0.45; }

  /* TAGLINE */
  .bw-tagline {
    text-align: center;
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
  }
  .bw-tagline .gold-dot { color: var(--gold); margin: 0 12px; }

  /* MOBILE */
  @media (max-width: 880px) {
    .booking-widget-section { padding: 36px 16px 50px; }
    .bw-pill {
      flex-direction: column;
      border-radius: 22px;
      padding: 12px;
      gap: 4px;
    }
    .bw-dates, .bw-field {
      width: 100%;
      border-radius: 14px;
      padding: 16px 18px;
      justify-content: flex-start;
    }
    .bw-divider { display: none; }
    .bw-search { width: 100%; padding: 18px; margin-top: 6px; }
    .bw-popup { left: 8px !important; right: 8px !important; min-width: 0 !important; padding: 22px 18px; }
    .bw-cal-grid { grid-template-columns: 1fr; gap: 24px; }
    .bw-cal-head { grid-template-columns: auto 1fr auto; gap: 12px; }
    .bw-month-title-2, .bw-month-2 { display: none; }
  }


/* ===================== */

  .pet-section {
    background: var(--sand);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .pet-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border: 1px solid rgba(184, 155, 94, 0.3);
    border-radius: 50%;
    z-index: 0;
  }
  .pet-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border: 1px solid rgba(184, 155, 94, 0.2);
    border-radius: 50%;
    z-index: 0;
  }
  .pet-section .container { position: relative; z-index: 1; }
  .pet-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .pet-illustration {
    text-align: center;
  }
  .pet-icon-large {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
    background: var(--ivory);
    position: relative;
  }
  .pet-icon-large::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(184, 155, 94, 0.4);
    border-radius: 50%;
  }
  .pet-emoji {
    font-size: 90px;
    line-height: 1;
    display: block;
  }
  .pet-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--olive);
    margin-top: 12px;
  }
  .pet-text .pet-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--espresso);
  }
  .pet-text .pet-headline em { color: var(--olive); font-style: italic; }
  .pet-text p { font-size: 16px; opacity: 0.8; margin-bottom: 20px; line-height: 1.7; }
  .pet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(46, 42, 36, 0.12);
  }
  .pet-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .pet-feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50%;
  }
  .pet-feature-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--espresso);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .pet-feature-text span {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
  }
  .pet-note {
    margin-top: 28px;
    padding: 18px 22px;
    background: rgba(184, 155, 94, 0.12);
    border-left: 3px solid var(--gold);
    font-size: 14px;
    line-height: 1.6;
  }
  .pet-note strong { color: var(--olive); }
  @media (max-width: 980px) {
    .pet-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .pet-icon-large { width: 140px; height: 140px; }
    .pet-features { text-align: left; }
    .pet-section { padding: 70px 0; }
  }
  @media (max-width: 580px) {
    .pet-features { grid-template-columns: 1fr; gap: 18px; }
  }


/* ===================== */

  .gallery-section { background: var(--ivory); padding: 130px 0; }
  .gallery-tabs { display: flex; gap: 8px; justify-content: center; margin: 30px 0 50px; flex-wrap: wrap; }
  .g-tab { background: transparent; border: 1px solid var(--line); color: var(--espresso); padding: 11px 22px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-family: 'Outfit', sans-serif; font-weight: 400; }
  .g-tab:hover { border-color: var(--olive); color: var(--olive); }
  .g-tab.active { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
  .g-tab .g-count { margin-left: 6px; opacity: 0.6; font-size: 10px; }
  .g-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .g-grid .g-item { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: var(--sand); position: relative; transition: transform 0.4s; }
  .g-grid .g-item.tall { grid-row: span 2; aspect-ratio: 4/6; }
  .g-grid .g-item.hidden { display: none; }
  .g-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
  .g-grid .g-item:hover img { transform: scale(1.06); }
  .g-grid .g-item::after { content: '⛶'; position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(247,243,234,0.92); color: var(--espresso); display: flex; align-items: center; justify-content: center; font-size: 13px; opacity: 0; transition: opacity 0.3s; }
  .g-grid .g-item:hover::after { opacity: 1; }
  /* LIGHTBOX */
  .lb { position: fixed; inset: 0; background: rgba(46,42,36,0.96); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }
  .lb.open { display: flex; }
  .lb img { max-width: 100%; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
  .lb-btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; background: var(--ivory); border: none; color: var(--espresso); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
  .lb-btn:hover { background: var(--gold); color: var(--ivory); }
  .lb-close { top: 24px; right: 24px; }
  .lb-prev { top: 50%; transform: translateY(-50%); left: 24px; }
  .lb-next { top: 50%; transform: translateY(-50%); right: 24px; }
  .lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--gold-soft); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }
  @media (max-width: 980px) { .g-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 640px) { .g-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } .g-grid .g-item.tall { grid-row: span 1; aspect-ratio: 4/3; } .lb { padding: 16px; } }


/* ===================== */

  .certs { background: var(--ivory); padding: 130px 0; position: relative; overflow: hidden; }
  .certs-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
  .certs-header .section-eyebrow { color: var(--gold); }
  .certs-header h2.section-title { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; margin-bottom: 18px; font-weight: 400; color: var(--espresso); }
  .certs-header h2.section-title em { font-style: italic; color: var(--olive); }
  .certs-header p { opacity: 0.78; font-size: 16px; }

  .cert-slider {
    overflow: hidden;
    position: relative;
  }
  .cert-slider::before, .cert-slider::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .cert-slider::before { left: 0; background: linear-gradient(to right, var(--ivory), transparent); }
  .cert-slider::after { right: 0; background: linear-gradient(to left, var(--ivory), transparent); }
  .cert-track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    animation: certScroll 60s linear infinite;
    width: max-content;
  }
  .cert-track:hover { animation-play-state: paused; }
  @keyframes certScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .cert-card {
    flex-shrink: 0;
    width: 240px;
    background: var(--sand);
    padding: 36px 24px 28px;
    text-align: center;
    transition: transform 0.5s, box-shadow 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cert-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(46,42,36,0.12); }
  .cert-badge-wrap {
    width: 130px;
    height: 130px;
    background: var(--ivory);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(46,42,36,0.06);
    padding: 14px;
    position: relative;
  }
  .cert-badge-wrap::before, .cert-badge-wrap::after {
    content: ''; position: absolute; width: 14px; height: 14px;
    border: 1px solid var(--gold); opacity: 0.4;
  }
  .cert-badge-wrap::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
  .cert-badge-wrap::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
  .cert-badge-wrap svg { width: 100%; height: 100%; display: block; }
  .cert-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--espresso); margin-bottom: 6px; font-weight: 500; line-height: 1.2; }
  .cert-issuer { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); font-weight: 500; line-height: 1.4; }
  .cert-controls { text-align: center; margin-top: 50px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--olive); opacity: 0.7; }

  @media (max-width: 580px) {
    .cert-card { width: 200px; padding: 28px 20px 24px; }
    .cert-badge-wrap { width: 100px; height: 100px; }
  }


/* ===================== */

  .reviews { background: var(--sand); padding: 130px 0; }
  .reviews-header { text-align: center; max-width: 720px; margin: 0 auto 50px; }

  /* Summary card — Google-style */
  .google-summary {
    background: var(--ivory);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  .gs-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .gs-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--olive);
    border: 1px solid var(--gold);
  }
  .gs-info h4 { font-size: 17px; color: var(--espresso); font-family: 'Outfit', sans-serif; font-weight: 500; margin-bottom: 6px; }
  .gs-rating { display: flex; align-items: center; gap: 10px; }
  .gs-rating-num { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--espresso); font-weight: 500; }
  .gs-stars { color: #FFB300; font-size: 18px; letter-spacing: 1px; }
  .gs-count { font-size: 13px; opacity: 0.65; }
  .gs-write { background: var(--olive); color: var(--ivory); padding: 12px 26px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; font-weight: 500; }
  .gs-write:hover { background: var(--olive-deep); }

  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .g-review-card {
    background: var(--ivory);
    padding: 28px 26px;
    transition: transform 0.5s, box-shadow 0.5s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .g-review-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(46,42,36,0.08); }
  .grc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .grc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
  }
  .grc-author { flex: 1; min-width: 0; }
  .grc-name { font-size: 15px; color: var(--espresso); font-weight: 500; margin-bottom: 2px; line-height: 1.2; }
  .grc-date { font-size: 12px; opacity: 0.6; }
  .grc-google {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .grc-stars { color: #FFB300; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
  .g-review-card p { font-size: 14px; line-height: 1.6; color: var(--espresso); opacity: 0.85; }
  .reviews-cta { text-align: center; margin-top: 50px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  @media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; } .google-summary { flex-direction: column; align-items: flex-start; } }


/* ===================== */

  .connect { background: var(--espresso-soft); color: var(--ivory); padding: 100px 0; }
  .connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
  .connect h2 { color: var(--ivory); }
  .connect .section-eyebrow { color: var(--gold-soft); }
  .connect-list { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
  .connect-item { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(247,243,234,0.12); text-decoration: none; color: var(--ivory); transition: padding 0.3s; }
  .connect-item:hover { padding-left: 8px; }
  .connect-icon { width: 44px; height: 44px; min-width: 44px; border: 1px solid var(--gold-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-soft); }
  .connect-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 4px; font-weight: 500; }
  .connect-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ivory); font-weight: 500; }

  /* Social icon row (compact under contact info) */
  .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    align-items: center;
    flex-wrap: wrap;
  }
  .social-icons .si-label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-soft); font-weight: 500; margin-right: 8px;
  }
  .social-icons a {
    width: 42px; height: 42px;
    border: 1px solid rgba(212, 189, 134, 0.4);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-icons a:hover {
    background: var(--gold-soft); color: var(--espresso-soft);
    transform: translateY(-3px);
    border-color: var(--gold-soft);
  }
  .social-icons a svg { width: 18px; height: 18px; }

  /* Google Map embed */
  .map-wrap {
    display: flex;
    flex-direction: column;
  }
  .map-eyebrow-row {
    margin-bottom: 28px;
  }
  .map-frame {
    flex: 1;
    width: 100%;
    min-height: 460px;
    border: 1px solid rgba(212, 189, 134, 0.25);
    overflow: hidden;
    position: relative;
    background: rgba(247, 243, 234, 0.04);
  }
  .map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    filter: grayscale(0.2) contrast(0.95);
    display: block;
  }
  .map-cta {
    margin-top: 20px;
    text-align: center;
  }
  .map-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-soft);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s;
  }
  .map-cta a:hover { gap: 14px; }

  @media (max-width: 980px) {
    .connect-grid { grid-template-columns: 1fr; gap: 50px; }
    .map-frame, .map-frame iframe { min-height: 360px; }
  }

/* =========================================================
   MOBILE-FIRST OPTIMISATION  (most guests browse on phones)
   ========================================================= */
@media (max-width: 880px) {
  /* No accidental horizontal scrolling.
     NOTE: use 'clip' not 'hidden' — 'hidden' on html/body breaks
     position:sticky (the sticky header) on mobile browsers. */
  html, body { overflow-x: clip; max-width: 100%; }
  img, video, iframe, table { max-width: 100%; height: auto; }

  /* Comfortable reading + bigger tap targets */
  body { font-size: 16px; -webkit-text-size-adjust: 100%; }
  a, button, .btn, input[type=submit] { touch-action: manipulation; }
  .btn, .nav-burger, .md-close, .hero-dot,
  .gallery-tab, .gvs-thumb, .rv-btn, .cb-ck-btn,
  .cbc-map-btn, .je-btn { min-height: 44px; }
  .btn { display: inline-flex; align-items: center; justify-content: center; }

  /* Inputs: 16px stops iOS auto-zoom on focus */
  input, select, textarea, .promo-input,
  .cbc-field input, .cbc-field textarea { font-size: 16px !important; }

  /* Headings scale down so nothing overflows */
  h1 { font-size: clamp(30px, 8vw, 44px) !important; line-height: 1.12 !important; }
  h2 { font-size: clamp(26px, 6.5vw, 36px) !important; line-height: 1.15 !important; }
  h3 { font-size: clamp(19px, 5vw, 24px) !important; }

  /* Tighter section spacing on small screens */
  .padded, section.padded { padding-top: 56px !important; padding-bottom: 56px !important; }
  .container { padding-left: 20px !important; padding-right: 20px !important; }

  /* HERO */
  .hero { min-height: 88vh; }
  .hero-content { text-align: center; }
  .hero p.lead { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { padding: 18px 0; }
  .hero-stats-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 18px 0 !important; }
  .stat { padding: 8px 10px; }
  .stat:nth-child(2) { border-right: none; }
  .stat-value { font-size: 26px; }
  .hero-dots { bottom: 92px; }

  /* Any 2+ column grid collapses cleanly */
  .index-grid, .reviews-grid, .pillar-grid,
  .commit-grid, .connect-grid, .footer-grid,
  .sustain-awards-grid, .cbc-grid {
    grid-template-columns: 1fr !important;
  }

  /* Gallery on mobile */
  .gallery-tabs { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .gallery-tab { padding: 9px 16px; font-size: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .gallery-video-stage, .gvs-main { max-width: 100%; }
  .gvs-strip { gap: 8px; }

  /* Reviews */
  .reviews-summary { flex-wrap: wrap; justify-content: center; text-align: center; }
  .reviews-cta { flex-direction: column; }
  .reviews-cta .rv-btn { width: 100%; text-align: center; }

  /* Footer: stack + readable */
  .footer-grid { gap: 36px !important; }
  footer .container { text-align: left; }

  /* Floating widgets: smaller + lifted above the sticky bar */
  .cb-social-float { right: 14px; bottom: 86px; gap: 10px; }
  .cb-social-toggle { width: 46px; height: 46px; }
  .cb-social-list a { width: 42px; height: 42px; }

  /* Space so the fixed bottom bar never hides content */
  body { padding-bottom: 64px; }

  /* Friendlier mobile drawer menu */
  .mobile-drawer .md-links a { display: block; padding: 15px 4px; font-size: 18px; }
  .mobile-drawer .md-book { display: block; text-align: center; padding: 16px; font-size: 14px; margin-top: 18px; }
  .mobile-drawer .md-contact a { display: block; padding: 10px 0; font-size: 16px; }
}

/* Very small phones */
@media (max-width: 420px) {
  h1 { font-size: 28px !important; }
  .hero-stats-wrap { grid-template-columns: 1fr !important; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .stat:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr !important; }
}

/* ===== STICKY MOBILE ACTION BAR (Call / Book) ===== */
.cb-mbar { display: none; }
@media (max-width: 880px) {
  .cb-mbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 8500; background: var(--ivory, #F7F3EA);
    border-top: 1px solid var(--line, rgba(46,42,36,.14));
    box-shadow: 0 -4px 18px rgba(46,42,36,.12);
  }
  .cb-mbar a {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 8px; font-size: 13px; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none; min-height: 54px;
  }
  .cb-mbar .cb-mbar-call { color: var(--olive, #4F5A3A); font-weight: 600; }
  .cb-mbar .cb-mbar-call svg { width: 18px; height: 18px; }
  .cb-mbar .cb-mbar-book { background: var(--olive, #4F5A3A); color: #fff; font-weight: 600; }
  .cb-mbar .cb-mbar-book:active { background: var(--olive-dark, #3D472C); }
}

/* =========================================================
   MOBILE DECLUTTER  (full-screen menu · no floating social ·
   compact cookie bar)
   ========================================================= */
@media (max-width: 880px) {

  /* 1) Mobile menu = clean FULL screen */
  .mobile-drawer .md-panel {
    width: 100% !important;
    max-width: none !important;
    height: 100dvh;
    padding: 88px 28px 40px !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }
  .mobile-drawer .md-links {
    list-style: none; margin: 0; padding: 0; width: 100%;
  }
  .mobile-drawer .md-links li { margin: 0; }
  .mobile-drawer .md-links a {
    padding: 16px 4px !important;
    font-size: 20px !important;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .02em;
    border-bottom: 1px solid rgba(46,42,36,.08);
  }
  .mobile-drawer .md-book {
    width: 100%; max-width: 320px; margin: 26px auto 0 !important;
    background: var(--olive, #4F5A3A); color: #fff;
  }
  .mobile-drawer .md-contact {
    margin-top: 22px; display: flex; flex-direction: column; gap: 4px;
  }
  .md-close { width: 48px !important; height: 48px !important;
    font-size: 30px; line-height: 1; }

  /* 2) Hide the floating social bubble on mobile
        (already in the footer — removes clutter & overlap) */
  .cb-social-float { display: none !important; }

  /* 3) Cookie bar: slim & compact, not half the screen */
  .cb-cookie-inner { padding: 12px 16px !important; gap: 10px !important; }
  .cb-cookie-text strong { display: none !important; }      /* drop the big serif heading */
  .cb-cookie-text { flex: 1 1 100% !important; min-width: 0 !important; }
  .cb-cookie-text p { font-size: 12px !important; line-height: 1.45 !important; }
  .cb-cookie-actions { width: 100%; gap: 8px !important; }
  .cb-cookie-actions .cb-ck-btn {
    flex: 1; padding: 11px 8px !important; font-size: 11px !important;
    min-height: 40px !important;
  }
}

/* =========================================================
   FOOTER — Follow us icons + Web design credit
   ========================================================= */
.footer-follow {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 30px 0 30px; border-top: 1px solid rgba(247,243,234,.12);
  margin-top: 30px;
}
.footer-follow-label {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-soft, #D4BD86);
}
.footer-follow-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-follow-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(247,243,234,.25);
  display: flex; align-items: center; justify-content: center;
  color: #F7F3EA; transition: all .2s;
}
.footer-follow-icons a:hover {
  background: var(--gold, #B89B5E); border-color: var(--gold, #B89B5E); color: #2E2A24;
}
.footer-follow-icons svg { width: 17px; height: 17px; }
.footer-credit { font-size: 12.5px; opacity: .75; }
.footer-credit a, .footer-credit strong { color: var(--gold-soft, #D4BD86); font-weight: 500; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* =========================================================
   MOBILE POLISH  (round 2 — declutter & fit)
   ========================================================= */
@media (max-width: 880px) {
  /* (1) Top announcement bar = ONE line, never wraps */
  .topbar {
    white-space: nowrap; overflow: hidden; text-overflow: clip;
    font-size: 9.5px !important; letter-spacing: .06em !important;
    padding: 7px 10px !important; text-align: center;
  }
  .topbar .gold { display: inline !important; margin: 0 7px !important; font-size: 8px; }
  .topbar span:not(.gold) { margin: 0 !important; }

  /* (2) No "Book Now" button at the top on mobile
        (the fixed Call/Book bar handles this) */
  nav.main-nav .btn-book,
  .btn-book-desktop { display: none !important; }

  /* (3) Hero: image clearly visible + tidy, no overflow */
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(46,42,36,.30) 0%, rgba(46,42,36,.42) 55%, rgba(46,42,36,.62) 100%) !important;
  }
  .hero { min-height: 84vh; }
  .hero-content { padding: 0 22px; }
  .hero-content h1, .hero-content p { overflow-wrap: anywhere; }
  .hero h1 { text-shadow: 0 2px 18px rgba(0,0,0,.35); }
  .hero p.lead { text-shadow: 0 1px 10px rgba(0,0,0,.35); max-width: 90%; margin-left: auto; margin-right: auto; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px !important; }

  /* (4) Hero stats bar was cluttered stacking down — hide on mobile */
  .hero-stats { display: none !important; }
  .hero-dots { bottom: 30px; }

  /* (5) Tagline under the date search = one line */
  .bw-tagline {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-size: 9px !important; letter-spacing: .12em !important; margin-top: 20px !important;
  }
  .bw-tagline .gold-dot { margin: 0 6px !important; }

  /* (7) Gallery filter = single horizontal scroll row (no tall column) */
  .gallery-tabs {
    flex-direction: row !important; flex-wrap: nowrap !important;
    align-items: center !important; justify-content: flex-start !important;
    overflow-x: auto !important; -webkit-overflow-scrolling: touch;
    gap: 8px !important; padding: 0 2px 6px !important;
    margin: 20px 0 30px !important; scrollbar-width: none;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gallery-tab { flex: 0 0 auto !important; white-space: nowrap; }

  /* (8) CTA "Slow mornings…" — remove the decorative side lines
        (they overlapped the text on small screens) */
  .cta-inner::before, .cta-inner::after { display: none !important; }
  .cta-inner { padding: 54px 24px !important; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }

  /* Footer follow row centred on mobile */
  .footer-follow { justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* =========================================================
   MOBILE POLISH  (round 3)
   ========================================================= */
/* Make sure the nav stays pinned on every browser */
nav.main-nav { position: -webkit-sticky; position: sticky; top: 0; }

@media (max-width: 880px) {
  /* (A) Awards & Certifications — tighter on mobile */
  .sustain-awards { padding-top: 44px !important; padding-bottom: 44px !important; }
  .sustain-awards-grid { gap: 14px !important; }
  .sustain-award { padding: 2px !important; }
  .sustain-award img { max-height: 150px !important; }
  .sustain-award-text { font-size: 15px !important; }

  /* (B) "Follow us on" — stack & centre inside its box */
  .footer-follow {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .footer-follow-icons {
    justify-content: center !important;
    width: 100%;
  }

  /* (C) Keep the header reachable while scrolling */
  nav.main-nav {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
  }
}

/* =========================================================
   MOBILE HERO — calm, readable, less "busy"
   (keeps all text — just better hierarchy & contrast)
   ========================================================= */
@media (max-width: 880px) {
  /* Soft, even scrim so text is crisp against the photo
     (image still visible, but no more eye strain) */
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(40,38,30,.42) 0%,
      rgba(40,38,30,.50) 45%,
      rgba(40,38,30,.66) 100%) !important;
  }

  .hero { min-height: 80vh; }
  .hero-content {
    padding: 0 26px !important;
    max-width: 480px; margin: 0 auto;
  }

  /* Eyebrow: smaller, tighter tracking, shorter rules */
  .hero-eyebrow {
    font-size: 10px !important;
    letter-spacing: .18em !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
    opacity: .95;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 16px !important; }

  /* Headline: clear, contained, not overwhelming */
  .hero h1 {
    font-size: clamp(28px, 7.4vw, 38px) !important;
    line-height: 1.16 !important;
    margin-bottom: 16px !important;
    font-style: italic;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
  }

  /* Lead: full text kept, but smaller & airier so it reads easily */
  .hero p.lead {
    font-size: 14.5px !important;
    line-height: 1.7 !important;
    margin: 0 auto 26px !important;
    max-width: 340px;
    opacity: .9;
    text-shadow: 0 1px 10px rgba(0,0,0,.35);
  }

  /* Buttons: full-width, comfortable tap, clear separation */
  .hero-actions { gap: 12px !important; margin-top: 4px; }
  .hero-actions .btn { width: 100%; font-size: 12px; letter-spacing: .14em; }
}

/* Extra calm on very small phones */
@media (max-width: 400px) {
  .hero h1 { font-size: 26px !important; }
  .hero p.lead { font-size: 14px !important; max-width: 300px; }
  .hero-eyebrow { letter-spacing: .14em !important; }
}

/* =========================================================
   MOBILE POLISH  (round 4) — footer centring + sticky proof
   ========================================================= */
@media (max-width: 880px) {
  /* Whole footer content centred = balanced look */
  footer .footer-grid > * ,
  footer .footer-brand { text-align: center !important; }
  footer .footer-brand img.logo-img { margin-left: auto; margin-right: auto; }
  footer ul { padding: 0; list-style: none; }

  /* FOLLOW US ON — force perfect centre */
  .footer-follow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 30px auto 0 !important;
  }
  .footer-follow-label { width: 100%; text-align: center !important; }
  .footer-follow-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
  .footer-bottom > div, .footer-credit { width: 100%; text-align: center !important; }
}

/* Sticky header must never be trapped by an overflow ancestor */
html { overflow-x: clip; }
nav.main-nav { position: -webkit-sticky !important; position: sticky !important; top: 0 !important; z-index: 999; }

/* =========================================================
   FIXED SITE HEADER  (immune to overflow ancestors —
   replaces position:sticky which kept breaking)
   ========================================================= */
#cb-site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
}
/* nav now flows inside the sticky wrapper (no more sticky) */
nav.main-nav { position: static !important; top: auto !important; }
/* Sticky reserves its own space — NO body padding needed (was the
   source of the header/hero gap). Force it off at every breakpoint. */
body { padding-top: 0 !important; }
@media (max-width: 880px) { body { padding-top: 0 !important; } }
@media (max-width: 480px) { body { padding-top: 0 !important; } }

/* The full-screen mobile menu must cover the fixed header too */
.mobile-drawer { z-index: 1100 !important; }

.reviews-widget{margin-top:14px}
@media(max-width:880px){.reviews-widget{margin-top:8px}}

/* =========================================================
   MOBILE — restore social popup + Book-only bottom bar
   ========================================================= */
@media (max-width: 880px) {
  /* Bring back the floating social popup on mobile */
  .cb-social-float {
    display: flex !important;
    right: 14px !important;
    bottom: 78px !important;   /* sits above the Book Now bar */
    gap: 10px !important;
    z-index: 8600;
  }
  .cb-social-toggle { width: 46px !important; height: 46px !important; }
  .cb-social-list a { width: 42px !important; height: 42px !important; }

  /* Book Now spans the whole bottom bar (Call removed) */
  .cb-mbar .cb-mbar-book {
    flex: 1 1 100% !important;
    width: 100%; text-align: center;
    padding: 17px 8px !important;
  }
}

/* =========================================================
   TRUSTINDEX REVIEWS WIDGET — light brand touch only
   (keep the plugin's "Light border" look; just align
   fonts, star colour, buttons & links to the theme)
   ========================================================= */
.reviews-widget { margin-top: 18px; }

/* Typography only — don't touch plugin backgrounds/borders */
.reviews-widget .ti-widget *,
.reviews-widget .ti-review-content,
.reviews-widget [class*="review-text"] { font-family: 'Outfit', sans-serif; }

/* Business name in the brand serif */
.reviews-widget .ti-name,
.reviews-widget .ti-header .ti-name,
.reviews-widget [class*="business-name"] {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--espresso, #2E2A24) !important;
  font-weight: 600 !important;
}

/* Logo & avatars: always crisp, never tinted/faded */
.reviews-widget img {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Stars → brand gold */
.reviews-widget .ti-stars svg,
.reviews-widget .ti-star svg,
.reviews-widget [class*="star"] svg { fill: var(--gold, #B89B5E) !important; }
.reviews-widget .ti-stars span,
.reviews-widget [class*="stars"] { color: var(--gold, #B89B5E) !important; }

/* "Read more" link → brand olive */
.reviews-widget .ti-read-more,
.reviews-widget [class*="read-more"] {
  color: var(--olive, #4F5A3A) !important;
  font-weight: 600 !important;
}

/* "Write a review" button → brand button */
.reviews-widget .ti-write-review-button,
.reviews-widget .ti-write-review-btn,
.reviews-widget a[class*="write-review"],
.reviews-widget button[class*="write-review"] {
  background: var(--olive, #4F5A3A) !important;
  color: #fff !important;
  border: 1px solid var(--olive, #4F5A3A) !important;
  border-radius: 2px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  transition: background .25s !important;
}
.reviews-widget .ti-write-review-button:hover,
.reviews-widget a[class*="write-review"]:hover {
  background: var(--olive-dark, #3D472C) !important;
}

/* Carousel arrows → brand olive (no heavy box) */
.reviews-widget .ti-nav-arrow svg,
.reviews-widget [class*="nav-arrow"] svg,
.reviews-widget [class*="control"] svg {
  fill: var(--olive, #4F5A3A) !important;
  color: var(--olive, #4F5A3A) !important;
}

/* Soften plugin's powered-by line a touch */
.reviews-widget .ti-footer { opacity: .7; }

/* =========================================================
   SINGLE POST CONTENT — tame imported HTML, match theme
   (constrains media, styles old blog content on-brand)
   ========================================================= */
.post-content { color: var(--espresso, #2E2A24); }

/* Never let any media break out of the column */
.post-content img,
.post-content video,
.post-content iframe,
.post-content embed,
.post-content object,
.post-content figure,
.post-content table {
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
}
.post-content img {
  display: block;
  margin: 28px auto;
  border-radius: 4px;
}
.post-content figure { margin: 28px 0 !important; }
.post-content figure img { margin: 0 auto; }
.post-content figcaption {
  text-align: center; font-size: 13px; color: #8a8273;
  margin-top: 10px; font-style: italic;
}
.post-content iframe { display: block; margin: 28px auto; width: 100%; }

/* Neutralise WP full/wide alignment from the old site
   so nothing spills past the reading column */
.post-content .alignfull,
.post-content .alignwide,
.post-content .wp-block-image.alignfull,
.post-content .wp-block-image.alignwide {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: auto !important;
  right: auto !important;
}
.post-content .alignleft  { float: left;  margin: 8px 28px 18px 0; max-width: 50%; }
.post-content .alignright { float: right; margin: 8px 0 18px 28px; max-width: 50%; }
.post-content .aligncenter { margin-left: auto; margin-right: auto; }

/* Typography for imported content → on brand */
.post-content p { margin: 0 0 22px; }
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: 'Cormorant Garamond', 'Trirong', Georgia, serif;
  color: var(--espresso, #2E2A24);
  line-height: 1.2; margin: 40px 0 14px; font-weight: 600;
}
.post-content h2 { font-size: clamp(26px, 3.4vw, 36px); }
.post-content h3 { font-size: clamp(22px, 2.8vw, 28px); }
.post-content h4 { font-size: 20px; }
.post-content a {
  color: var(--olive, #4F5A3A);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--gold, #B89B5E); }
.post-content ul,
.post-content ol { margin: 0 0 22px; padding-left: 1.4em; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  margin: 30px 0; padding: 18px 26px;
  border-left: 3px solid var(--gold, #B89B5E);
  background: rgba(184,155,94,.07);
  font-style: italic; color: #5a5347;
}
.post-content blockquote p:last-child { margin-bottom: 0; }
.post-content hr {
  border: 0; height: 1px;
  background: rgba(46,42,36,.15); margin: 40px 0;
}

/* Don't let huge embeds force horizontal scroll on phones */
@media (max-width: 880px) {
  .post-content img,
  .post-content iframe { margin: 20px auto; }
  .post-content .alignleft,
  .post-content .alignright { float: none; max-width: 100%; margin: 18px auto; }
}

/* =========================================================
   SINGLE POST HEADER — elegant breadcrumb + title block
   ========================================================= */
.page-header {
  background: var(--ivory, #F7F3EA);
  padding: 46px 0 0;
}
.page-header .breadcrumb {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9a9384;
  text-align: center;
}
.page-header .breadcrumb a {
  color: var(--olive, #4F5A3A);
  text-decoration: none;
  transition: color .2s;
}
.page-header .breadcrumb a:hover { color: var(--gold, #B89B5E); }
.page-header .breadcrumb .sep { margin: 0 10px; color: #c7c0b1; }

/* Title block */
.post-section .post-wrap { text-align: center; }
.post-section .post-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold, #B89B5E);
  margin-bottom: 18px;
}
.post-section h1.h2,
.post-section .post-section.h2 {
  font-family: 'Cormorant Garamond', 'Trirong', Georgia, serif;
  color: var(--espresso, #2E2A24);
}
.post-section .post-date {
  display: inline-block;
}
.post-section .post-date::before,
.post-section .post-date::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(46,42,36,.25);
  vertical-align: middle;
  margin: 0 14px;
}
/* Featured image → premium framed */
.post-section .post-wrap > img,
.post-section .post-wrap .wp-post-image {
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(46,42,36,.12);
}
/* Body copy back to left-aligned for readability */
.post-section .post-content { text-align: left; }
.post-section .post-back { text-align: center; }
.post-section .post-back .link-arrow {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--olive, #4F5A3A); text-decoration: none;
}
.post-section .post-back .link-arrow:hover { color: var(--gold, #B89B5E); }

@media (max-width: 880px) {
  .page-header { padding-top: 30px; }
  .post-section .post-wrap { padding: 40px 0 !important; }
  .post-section .post-date::before,
  .post-section .post-date::after { width: 16px; margin: 0 8px; }
}

/* =========================================================
   JOURNAL PAGINATION — on-brand page numbers
   ========================================================= */
.blog-index .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  margin: 0 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--espresso, #2E2A24);
  text-decoration: none;
  border: 1px solid rgba(46,42,36,.18);
  border-radius: 2px;
  background: #fff;
  transition: all .2s ease;
}
.blog-index a.page-numbers:hover {
  border-color: var(--olive, #4F5A3A);
  color: var(--olive, #4F5A3A);
}
.blog-index .page-numbers.current {
  background: var(--olive, #4F5A3A);
  border-color: var(--olive, #4F5A3A);
  color: #fff;
}
.blog-index .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 4px;
}
.blog-index .page-numbers.prev,
.blog-index .page-numbers.next {
  font-size: 20px;
  color: var(--gold, #B89B5E);
}
.blog-index a.page-numbers.prev:hover,
.blog-index a.page-numbers.next:hover {
  background: var(--gold, #B89B5E);
  border-color: var(--gold, #B89B5E);
  color: #fff;
}
@media (max-width: 600px) {
  .blog-index .page-numbers {
    min-width: 38px; height: 38px; font-size: 16px; margin: 0 2px;
  }
}

/* =========================================================
   MOBILE HERO DECLUTTER — hide the 2 buttons, shrink dots
   ========================================================= */
@media (max-width: 880px) {
  /* Remove the BOOK DIRECT / CHECK AVAILABILITY buttons on mobile */
  .hero .hero-actions { display: none !important; }

  /* Slide indicators → small neat dots (not tall blocks) */
  .hero-dot {
    min-height: 0 !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: rgba(247,243,234,.45) !important;
  }
  .hero-dot.is-active {
    background: var(--gold-soft, #D4BD86) !important;
    transform: none !important;
  }
  .hero-dots { gap: 8px !important; }
}

/* =========================================================
   LANGUAGE SWITCHER (GTranslate) — style its OWN float widget
   to match the theme. We do NOT inject it into the layout,
   so it can never break the header/hero again.
   ========================================================= */
.gtranslate_wrapper { z-index: 9400 !important; }

/* GTranslate "Float" switcher — themed pill, top-right under header */
.gt_float_switcher {
  font-family: 'Outfit', sans-serif !important;
  border-radius: 2px !important;
  box-shadow: 0 6px 20px rgba(46,42,36,.18) !important;
  overflow: hidden !important;
}
.gt_float_switcher .gt_selected,
.gt_float_switcher .gt-selected {
  background: var(--olive, #4F5A3A) !important;
}
.gt_float_switcher .gt_selected a,
.gt_float_switcher .gt-selected .gt-current-lang,
.gt_float_switcher .gt_selected .gt-current-lang {
  color: var(--ivory, #F7F3EA) !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.gt_float_switcher img { border-radius: 2px; }
.gt_float_switcher .gt_options {
  background: var(--ivory, #F7F3EA) !important;
  border: 1px solid rgba(46,42,36,.12) !important;
}
.gt_float_switcher .gt_options a {
  color: var(--espresso, #2E2A24) !important;
  font-size: 13px !important;
}
.gt_float_switcher .gt_options a:hover {
  background: var(--sand, #E8DDCB) !important;
  color: var(--olive, #4F5A3A) !important;
}
.gt_float_switcher .gt-current-lang .gt_float_switcher-arrow,
.gt_float_switcher .gt_float_switcher-arrow {
  filter: brightness(0) invert(1);
}

/* Hide Google's default top translate banner / keep layout intact */
.skiptranslate.goog-te-banner-frame,
iframe.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* =========================================================
   LANGUAGE SWITCHER — small inline, next to BOOK NOW
   Hard-constrained so GTranslate output can't break layout
   ========================================================= */
.cb-lang-mini {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
  position: static !important;
}
.cb-lang-mini .gtranslate_wrapper,
.cb-lang-mini > div,
.cb-lang-mini .gt_float_switcher {
  position: static !important;
  display: inline-flex !important;
  box-shadow: none !important;
  background: transparent !important;
  top: auto !important; left: auto !important;
  right: auto !important; bottom: auto !important;
}
/* GTranslate "Dropdown" look → small themed select */
.cb-lang-mini select,
.cb-lang-mini .gt_selector {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-color: transparent;
  border: 1px solid rgba(46,42,36,.22);
  border-radius: 2px;
  color: var(--espresso, #2E2A24);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 26px 9px 12px;
  cursor: pointer;
  outline: none;
  line-height: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B89B5E' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  transition: border-color .2s, color .2s;
}
.cb-lang-mini select:hover,
.cb-lang-mini .gt_selector:hover {
  border-color: var(--olive, #4F5A3A);
  color: var(--olive, #4F5A3A);
}
.cb-lang-mini select option {
  background: #fff; color: var(--espresso, #2E2A24);
  text-transform: none; letter-spacing: normal;
}
/* If GTranslate outputs its float-style switcher, tame it inline */
.cb-lang-mini .gt_float_switcher .gt_selected { background: transparent !important; }
.cb-lang-mini .gt_float_switcher .gt_selected a,
.cb-lang-mini .gt_float_switcher .gt-current-lang {
  color: var(--espresso, #2E2A24) !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  font-size: 12px !important;
}
.cb-lang-mini img { width: 16px; height: auto; }

/* Kill Google's top banner / body shift (keeps hero full) */
.skiptranslate.goog-te-banner-frame,
iframe.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

@media (max-width: 1024px) {
  /* On tablet/mobile the desktop Book Now is hidden; hide mini lang too
     (GTranslate's own mobile widget can be used instead) */
  .cb-lang-mini { display: none !important; }
}

/* =========================================================
   GTRANSLATE FLOAT SWITCHER (inline in nav) — final tuning
   No background, dropdown opens DOWNWARD
   ========================================================= */
.cb-lang-mini .gt_float_switcher,
.cb-lang-mini .gt_float_switcher .gt_options,
.cb-lang-mini .gt_float_switcher-dropdown {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
/* the visible "EN ^" pill — strip its background */
.cb-lang-mini .gt_float_switcher .gt_selected {
  background: transparent !important;
  box-shadow: none !important;
}
.cb-lang-mini .gt_float_switcher .gt_selected a {
  color: var(--espresso, #2E2A24) !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 6px 8px !important;
}
/* arrow → point DOWN (was up) and recolor */
.cb-lang-mini .gt_float_switcher .gt_float_switcher-arrow {
  background-image: none !important;
  width: 0 !important; height: 0 !important;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 5px solid var(--gold, #B89B5E) !important;
  border-bottom: 0 !important;
  transform: none !important;
  margin-left: 4px;
}
/* options panel drops DOWNWARD below the button */
.cb-lang-mini .gt_float_switcher .gt_options {
  position: absolute !important;
  top: 100% !important;
  bottom: auto !important;
  left: 0 !important;
  margin-top: 6px !important;
  background: #fff !important;
  border: 1px solid rgba(46,42,36,.14) !important;
  border-radius: 3px !important;
  box-shadow: 0 10px 26px rgba(46,42,36,.16) !important;
  min-width: 130px;
  z-index: 9999 !important;
}
.cb-lang-mini .gt_float_switcher .gt_options a {
  color: var(--espresso, #2E2A24) !important;
  background: #fff !important;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 9px 14px !important;
}
.cb-lang-mini .gt_float_switcher .gt_options a:hover {
  background: var(--sand, #E8DDCB) !important;
  color: var(--olive, #4F5A3A) !important;
}
.cb-lang-mini .gt_float_switcher { position: relative !important; }

/* =========================================================
   GTRANSLATE — FORCE transparent + bordered, fix dropdown
   (overrides GTranslate inline styles & nested classes)
   ========================================================= */
/* 1) Make EVERYTHING inside the switcher transparent */
.cb-lang-mini .gt_float_switcher,
.cb-lang-mini .gt_float_switcher * {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
/* 2) Outline only on the visible button (the "EN" pill) */
.cb-lang-mini .gt_float_switcher {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid rgba(46,42,36,.28) !important;
  border-radius: 3px !important;
  padding: 2px 4px !important;
  overflow: visible !important;
}
.cb-lang-mini .gt_float_switcher .gt_selected a,
.cb-lang-mini .gt_float_switcher .gt-selected {
  color: var(--espresso,#2E2A24) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  padding: 6px 8px !important;
  display: inline-flex !important;
  align-items: center !important;
}
/* 3) The options panel: white, bordered, drops DOWN, visible on open */
.cb-lang-mini .gt_float_switcher .gt_options {
  display: none;
  position: absolute !important;
  top: calc(100% + 6px) !important;
  bottom: auto !important;
  left: 0 !important;
  right: auto !important;
  min-width: 140px !important;
  background: #fff !important;
  background-color: #fff !important;
  border: 1px solid rgba(46,42,36,.16) !important;
  border-radius: 3px !important;
  box-shadow: 0 12px 30px rgba(46,42,36,.18) !important;
  z-index: 99999 !important;
  max-height: none !important;
  overflow: visible !important;
}
/* show panel when GTranslate adds its "open" state OR on hover/focus */
.cb-lang-mini .gt_float_switcher.gt-open .gt_options,
.cb-lang-mini .gt_float_switcher:hover .gt_options,
.cb-lang-mini .gt_float_switcher:focus-within .gt_options {
  display: block !important;
}
.cb-lang-mini .gt_float_switcher .gt_options a {
  display: block !important;
  background: #fff !important;
  background-color: #fff !important;
  color: var(--espresso,#2E2A24) !important;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 9px 14px !important;
  white-space: nowrap !important;
}
.cb-lang-mini .gt_float_switcher .gt_options a:hover {
  background: var(--sand,#E8DDCB) !important;
  background-color: var(--sand,#E8DDCB) !important;
  color: var(--olive,#4F5A3A) !important;
}
/* arrow → small gold caret pointing down */
.cb-lang-mini .gt_float_switcher .gt_float_switcher-arrow {
  width: 0 !important; height: 0 !important;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 5px solid var(--gold,#B89B5E) !important;
  border-bottom: 0 !important;
  margin-left: 5px !important;
  transition: transform .2s !important;
}
.cb-lang-mini .gt_float_switcher img { width: 18px !important; height: auto !important; }

/* =========================================================
   LANGUAGE DROPDOWN — themed, full width (no truncation)
   ========================================================= */
.cb-lang-mini select,
.cb-lang-mini .gt_selector {
  font-size: 11px !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  padding: 8px 22px 8px 9px !important;
  width: auto !important;
  max-width: 88px !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
  color: var(--espresso, #2E2A24) !important;
  font-family: 'Outfit', sans-serif !important;
  background-color: transparent !important;
  border: 1px solid rgba(46,42,36,.28) !important;
  border-radius: 2px !important;
  background-position: right 7px center !important;
}
.cb-lang-mini select:hover,
.cb-lang-mini .gt_selector:hover {
  border-color: var(--olive, #4F5A3A) !important;
  color: var(--olive, #4F5A3A) !important;
}
.cb-lang-mini select option {
  background: #fff !important;
  color: var(--espresso, #2E2A24) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.cb-lang-mini { margin-right: 20px !important; }

/* Show on mobile/tablet too — full width, NOT truncated */
@media (max-width: 1024px) {
  .cb-lang-mini { display: inline-flex !important; margin-right: 10px !important; flex: 0 0 auto !important; }
  .cb-lang-mini select,
  .cb-lang-mini .gt_selector {
    font-size: 11px !important;
    padding: 8px 22px 8px 9px !important;
    max-width: 82px !important;
    width: 82px !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }
}
@media (max-width: 480px) {
  .cb-lang-mini { margin-right: 6px !important; }
  .cb-lang-mini select,
  .cb-lang-mini .gt_selector {
    max-width: 70px !important;
    width: 70px !important;
    font-size: 10px !important;
    padding: 8px 20px 8px 7px !important;
  }
}

/* Kill ALL Google Translate injected chrome that adds a strip
   under the header (keeps header flush against hero, full screen) */
html, body { top: 0 !important; position: static !important; }
.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
#goog-gt-tt, .goog-te-balloon-frame,
.goog-te-gadget, #google_translate_element,
.goog-tooltip, .goog-text-highlight {
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  height: 0 !important;
}
/* but keep GTranslate's own switcher UI visible */
.cb-lang-mini .skiptranslate,
.cb-lang-mini .goog-te-gadget { display: inline-flex !important; height: auto !important; }

/* =========================================================
   MOBILE HEADER LAYOUT — burger LEFT · logo CENTER · lang RIGHT
   ========================================================= */
@media (max-width: 980px) {
  .nav-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  /* Hamburger → far left */
  .nav-burger {
    order: 1 !important;
    margin: 0 !important;
  }
  /* Logo → dead center, independent of side widths */
  .nav-logo {
    order: 2 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
  }
  /* Language switcher → far right */
  .cb-lang-mini {
    order: 3 !important;
    margin: 0 !important;
    display: inline-flex !important;
  }
  /* Book Now (desktop) stays hidden on mobile */
  .btn-book-desktop { display: none !important; }
}

/* =========================================================
   PROMO POPUP — half image / half text, themed, responsive
   ========================================================= */
#cb-promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,42,36,.62);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}
#cb-promo-overlay.cb-promo-show { opacity: 1; visibility: visible; }
#cb-promo-box {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 760px;
  background: var(--ivory, #F7F3EA);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(46,42,36,.4);
  transform: translateY(16px);
  transition: transform .35s ease;
}
#cb-promo-overlay.cb-promo-show #cb-promo-box { transform: translateY(0); }
#cb-promo-close {
  position: absolute;
  top: 10px; right: 14px;
  background: rgba(255,255,255,.85);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--espresso, #2E2A24);
  cursor: pointer;
  z-index: 2;
  transition: background .2s;
}
#cb-promo-close:hover { background: #fff; }
.cb-promo-img {
  width: 45%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cb-promo-content {
  width: 55%;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cb-promo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  color: var(--espresso, #2E2A24);
  margin: 0 0 14px;
}
.cb-promo-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(46,42,36,.78);
  margin: 0 0 26px;
}
.cb-promo-btn {
  align-self: flex-start;
  display: inline-block;
  background: var(--olive, #4F5A3A);
  color: var(--ivory, #F7F3EA);
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s;
}
.cb-promo-btn:hover { background: var(--olive-dark, #3D472C); }

@media (max-width: 680px) {
  #cb-promo-box { flex-direction: column; max-width: 380px; }
  .cb-promo-img { width: 100%; min-height: 200px; }
  .cb-promo-content { width: 100%; padding: 28px 24px 32px; }
  .cb-promo-title { font-size: 24px; }
  .cb-promo-text { margin-bottom: 20px; }
}
