@font-face {
    font-family: 'Higuen Elegant Serif';
    src: url('../fonts/Higuen Serif.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  /* Applied to all h1 headings site-wide */
  h1 {
    font-family: 'Higuen Elegant Serif', 'Cormorant Garamond', Georgia, serif;
  }

  :root {
    --cream: #efebe5;
    --warm-white: #f7f4f0;
    --brown-dark: #5e381f;
    --brown-mid: #5e381f;
    --brown-light: #8a5530;
    --brown-pale: #b8845a;
    --stone: #d8cfc4;
    --text-dark: #2a1a0a;
    --text-mid: #5e381f;
    --text-light: #8a6a50;
    --gold: #c9a84c;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--warm-white);
    color: #3a2010;
    overflow-x: hidden;
  }

  /* ===== PAGE MANAGEMENT ===== */
  .page { display: none; }
  .page.active { display: block; }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 48px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
  }

  nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(160,96,48,0.12);
    padding: 16px 48px;
  }

  .nav-logo {
    font-family: 'Higuen Elegant Serif', 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0.04em;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.4s;
  }

  nav.scrolled .nav-logo { color: #5e381f; }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.25s, background 0.25s, padding 0.25s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 4px;
    white-space: nowrap;
    border-radius: 0;
    position: relative;
  }

  nav.scrolled .nav-links a { color: #5e381f; }

  .nav-links > li > a:hover {
    color: white;
  }

  nav.scrolled .nav-links > li > a:hover {
    color: #5e381f;
  }

  /* 3 dots container */
  .nav-links > li > a .nav-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: center;
    pointer-events: none;
  }

  .nav-links > li > a .nav-dots span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  nav.scrolled .nav-links > li > a .nav-dots span {
    background: #5e381f;
  }

  .nav-links > li > a .nav-dots span:nth-child(1) { transition-delay: 0s; }
  .nav-links > li > a .nav-dots span:nth-child(2) { transition-delay: 0.08s; }
  .nav-links > li > a .nav-dots span:nth-child(3) { transition-delay: 0.16s; }

  .nav-links > li > a:hover .nav-dots span {
    opacity: 1;
    transform: scale(1);
  }

  nav.scrolled .nav-links a { color: #5e381f; }
  .nav-links a:hover { color: white; }
  nav.scrolled .nav-links a:hover { color: #5e381f; }

  /* Dropdown arrow — only on the chevron span, not ::after on <a> */
  .nav-links .has-dropdown > a .chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s;
    flex-shrink: 0;
  }

  .nav-links .has-dropdown:hover > a .chevron,
  .nav-links .has-dropdown.open > a .chevron {
    transform: rotate(-135deg) translateY(-2px);
  }

  /* Dropdown panel */
  .dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    min-width: 200px;
    box-shadow: 0 16px 48px rgba(94,56,31,0.16);
    border-top: 2px solid #5e381f;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
    list-style: none;
  }

  /* Invisible bridge so mouse can travel from link to dropdown */
  .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
  }

  .nav-links .has-dropdown:hover .dropdown,
  .nav-links .has-dropdown.open .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown li a {
    display: block;
    padding: 13px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5e381f !important;
    border-bottom: 1px solid rgba(212,197,176,0.35);
    transition: background 0.15s, color 0.15s;
  }

  .dropdown li:last-child a { border-bottom: none; }
  .dropdown li a:hover {
    background: var(--cream);
    color: #5e381f !important;
  }

  .nav-book {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255,255,255,0.75);
    padding: 10px 22px;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
  }

  nav.scrolled .nav-book {
    color: #5e381f;
    border-color: #5e381f;
  }

  .nav-book:hover {
    background: white;
    color: #5e381f;
    border-color: white;
  }

  nav.scrolled .nav-book:hover {
    background: #5e381f;
    color: white;
    border-color: #5e381f;
  }

  /* ===== HERO ===== */
  .hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(to bottom, rgba(23, 14, 8, 0.905) 0%, rgba(94, 56, 31, 0.632) 50%),
      url('../images/pareklisia.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.0); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease 0.3s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
  }

  .hero-title {
    font-family: 'Higuen Elegant Serif', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 300;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 44px;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  }

  .btn-outline-white {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255,255,255,0.65);
    padding: 14px 36px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .btn-outline-white:hover {
    background: white;
    color: #5e381f;
    border-color: white;
  }

  /* ===== ABOUT SECTION ===== */
  .about {
    background: #5e381f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-img-wrap {
    position: relative;
    padding-bottom: 18px;
    padding-left: 18px;
  }

  .about-img-border {
    position: relative;
    display: block;
    line-height: 0;
    z-index: 2;
  }

  .about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
  }

  .about-img-frame {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border: 2.5px solid rgba(255,255,255,0.3);
    pointer-events: none;
    z-index: 1;
  }

  .leaf-tr {
    top: -50px;
    right: -20px;
    width: 280px;
    opacity: 0.22;
    transform: rotate(190deg);
  }

  .leaf-br { display: none; }
  .leaf-bl { display: none; }

  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.1;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
    font-weight: 300;
  }

  .btn-text {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 14px 36px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
  }

  .btn-text:hover {
    background: white;
    color: #5e381f;
    border-color: white;
  }

  .leaf-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  /* ===== ROOMS ===== */
  .rooms {
    background: var(--cream);
    padding: 80px 0 80px;
    position: relative;
    overflow: visible;
  }

  /* Pomegranate decoration bottom-left */
  .rooms-deco {
    position: absolute;
    bottom: -80px;
    left: -55px;
    bottom: -108px;
    transform: rotate(15deg);
    width: 350px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
  }

  .rooms-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 80px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .rooms-title-col {
    flex: 0 0 260px;
    padding-top: 0;
    padding-right: 32px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 400;
    color: #5e381f;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .rooms-slider-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
  }

  .rooms-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 20px 16px;
  }

  .rooms-slider::-webkit-scrollbar { display: none; }

  .room-card {
    flex: 0 0 370px;
    scroll-snap-align: start;
    background: var(--cream);
    border: none;
    transition: transform 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .room-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid transparent;
    transition: border-color 0.35s ease;
    pointer-events: none;
    z-index: 3;
  }

  .room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(94,56,31,0.07);
  }

  .room-card:hover::after {
    border-color: #5e381f;
  }

  .room-card.featured {
    flex: 0 0 370px;
    background: var(--cream);
  }

  .room-img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: 50% 45%;
    display: block;
    background: #d8cfc4;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }

  .room-info {
    padding: 20px 20px 24px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .room-details {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
  }

  .room-num {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
    font-family: 'Josefin Sans', sans-serif;
  }

  .room-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #5e381f;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .btn-book-room {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5e381f;
    border: 1px solid #5e381f;
    padding: 14px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    width: 100%;
  }

  .btn-book-room:hover {
    background: #5e381f;
    color: white;
    border-color: #5e381f;
  }

  .slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--stone);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5e381f;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .slider-btn:hover { background: #5e381f; color: white; border-color: #5e381f; }
  .slider-prev { left: -20px; }
  .slider-next { right: -20px; }

  /* ===== AMENITIES ===== */
  .amenities {
    position: relative;
    padding: 70px 48px;
    text-align: center;
    overflow: hidden;
  }

  .amenities-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(17, 10, 3, 0.933), rgba(94, 56, 31, 0.664)),
      url('../images/comfort2.jpg') center/cover no-repeat;
  }

  .amenities-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
  }

  .amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 300;
    color: white;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
  }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .amenity-icon-img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    mix-blend-mode: screen;
  }

  .amenity-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    text-align: center;
    white-space: nowrap;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    background: var(--warm-white);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  

  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-title-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 400;
    color: #5e381f;
    text-align: center;
    margin-bottom: 60px;
  }

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

  .testi-card {
    padding: 40px 32px;
    border-top: 2px solid #5e381f;
    position: relative;
  }

  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: #5e381f;
    line-height: 0.6;
    margin-bottom: 20px;
  }

  .testi-text {
    font-size: 14px;
    line-height: 1.8;
    color: #5e381f;
    font-weight: 300;
    margin-bottom: 24px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
  }

  .testi-author {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5e381f;
  }

  /* ===== FOOTER ===== */
  footer {
    background: #5e381f;
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .footer-leaf {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 280px;
    opacity: 0.13;
    pointer-events: none;
    transform: rotate(190deg);
  }

  .footer-inner { max-width: 100%; padding: 0; margin: 0; }

  .footer-brand {
    padding: 35px 64px 35px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-logo {
    font-family: 'Higuen Elegant Serif', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    line-height: 1;
    letter-spacing: 0.02em;
  }


  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 40px 64px 44px;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-col-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    display: block;
    margin-bottom: 18px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer-nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .footer-nav a:hover { color: white; }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact span,
  .footer-contact a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: left;
  }

  .footer-contact a:hover { color: white; }

  .footer-social { display: flex; gap: 10px; }

  .footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: all 0.2s;
  }

  .footer-social a:hover {
    border-color: white;
    color: white;
    background: rgba(255,255,255,0.08);
  }

  .footer-bottom {
    padding: 20px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.15);
  }

  .footer-bottom span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
  }

  .footer-docs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer-docs a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .footer-docs a:hover { color: white; }

  .footer-dev-credit {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-dev-credit span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
  }

  .footer-dev-credit img {
    height: 16px;
    width: auto;
    opacity: 0.5;
    vertical-align: middle;
  }

  .footer-dev-credit a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
  }

  .footer-dev-credit a:hover { color: rgba(255,255,255,0.8); }

  /* ===== BOOKING PAGE ===== */
  .booking-hero {
    height: 52vh;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .booking-hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(20,8,2,0.55), rgba(20,8,2,0.65)),
      url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1600&q=80') center/cover no-repeat;
  }

  .booking-hero-content {
    position: relative;
    z-index: 2;
  }

  .booking-hero h1 {
    font-family: 'Higuen Elegant Serif', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    color: white;
    margin-bottom: 16px;
  }

  .booking-hero p {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
  }

  .scroll-arrow {
    color: rgba(255,255,255,0.6);
    font-size: 22px;
    animation: bounce 2s infinite;
    cursor: pointer;
  }

  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  /* ===== BOOKING FORM ===== */
  .booking-section {
    background: var(--cream);
    padding: 90px 48px;
    position: relative;
    overflow: hidden;
  }

  .booking-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .booking-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 400;
    color: #5e381f;
    text-align: center;
    margin-bottom: 48px;
  }

  .booking-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .room-select {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #5e381f;
    border: 1px solid var(--stone);
    background: white;
    padding: 12px 36px 12px 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("../images/image-2.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    min-width: 180px;
    letter-spacing: 0.04em;
  }

  .cal-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }

  .cal-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--stone);
    background: white;
    cursor: pointer;
    font-size: 15px;
    color: #5e381f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .cal-nav-btn:hover { background: #5e381f; color: white; border-color: #5e381f; }

  .cal-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #5e381f;
    min-width: 160px;
    text-align: center;
  }

  .calendar {
    border: 1px solid var(--stone);
    background: white;
    margin-bottom: 28px;
    overflow: hidden;
  }

  .cal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #5e381f;
  }

  .cal-header span {
    text-align: center;
    padding: 14px 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
  }

  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }

  .cal-day {
    border: 0.5px solid rgba(212,197,176,0.4);
    min-height: 64px;
    padding: 10px 12px;
    font-size: 14px;
    color: #3a2010;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
    user-select: none;
  }

  .cal-day:hover:not(.unavailable):not(.empty) { background: rgba(160,96,48,0.08); }
  .cal-day.empty { cursor: default; background: rgba(0,0,0,0.02); color: transparent; }
  .cal-day.unavailable { background: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(160,96,48,0.12) 8px, rgba(160,96,48,0.12) 10px); cursor: not-allowed; color: var(--text-light); }
  .cal-day.selected { background: rgba(94,56,31,0.15); }
  .cal-day.today { font-weight: 600; }
  .cal-day.today::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #5e381f; }

  .cal-legend {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #5e381f;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .legend-box {
    width: 26px;
    height: 26px;
    border: 1px solid var(--stone);
    background: white;
  }

  .legend-box.unavail {
    background: repeating-linear-gradient(135deg, transparent, transparent 6px, rgba(160,96,48,0.2) 6px, rgba(160,96,48,0.2) 8px);
  }

  .cal-note {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
  }

  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-input {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #3a2010;
    border: 1px solid var(--stone);
    background: white;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    letter-spacing: 0.02em;
  }

  .form-input:focus { border-color: #5e381f; }
  .form-input::placeholder { color: var(--text-light); }

  textarea.form-input {
    resize: vertical;
    min-height: 140px;
  }

  .btn-submit {
    display: block;
    width: 260px;
    margin: 0 auto 32px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    background: #5e381f;
    border: none;
    padding: 18px 32px;
    cursor: pointer;
    transition: background 0.25s;
  }

  .btn-submit:hover { background: #5e381f; }

  .booking-contact {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #5e381f;
    line-height: 2;
  }

  .booking-contact a {
    color: #5e381f;
    text-decoration: none;
  }

  /* ===== HAMBURGER & MOBILE NAV ===== */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0);
    border-radius: 50%;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
    transition: background 0.25s, border-color 0.25s, transform 0.15s;
  }

  .hamburger:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
  }

  .hamburger:active {
    transform: scale(0.9);
    background: rgba(255,255,255,0.25);
  }

  nav.scrolled .hamburger:hover {
    background: rgba(94,56,31,0.1);
    border-color: rgba(94,56,31,0.25);
  }

  nav.scrolled .hamburger:active {
    background: rgba(94,56,31,0.2);
  }

  .hamburger.open {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
  }

  nav.scrolled .hamburger.open {
    background: rgba(94,56,31,0.12);
    border-color: rgba(94,56,31,0.3);
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: white;
    transition: transform 0.35s ease, opacity 0.25s ease, background 0.4s;
    transform-origin: center;
  }

  nav.scrolled .hamburger span { background: #5e381f; }

  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Dim overlay behind mobile menu */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,8,2,0.45);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-book-mobile { display: none; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    nav { padding: 18px 20px; }
    nav.scrolled { padding: 14px 20px; }

    /* Hide desktop book button, show hamburger */
    .nav-book-desktop { display: none !important; }
    .hamburger { display: flex; }

    /* Mobile slide-in menu */
    .nav-links {
      position: fixed;
      top: 0; right: 0;
      width: min(280px, 80vw);
      height: 100vh;
      background: #5e381f;
      flex-direction: column;
      gap: 0;
      padding: 90px 0 40px;
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 150;
      list-style: none;
      display: flex !important;
      visibility: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .nav-links.open {
      transform: translateX(0);
      visibility: visible;
    }

    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-links > li:last-child { border-bottom: none; margin-top: auto; padding: 24px 32px 0; }

    .nav-links a {
      display: block;
      padding: 18px 32px;
      font-size: 13px;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.85) !important;
      touch-action: manipulation;
      -webkit-tap-highlight-color: rgba(255,255,255,0.08);
      cursor: pointer;
    }

    .nav-links a:hover { color: white !important; background: rgba(255,255,255,0.05); }

    /* Mobile dropdown */
    .nav-links .has-dropdown > a .chevron { display: none; }
    .dropdown {
      position: static;
      transform: none !important;
      opacity: 1 !important;
      pointer-events: all !important;
      box-shadow: none;
      border-top: none;
      border-left: 2px solid rgba(255,255,255,0.15);
      background: rgba(0,0,0,0.15);
      display: none;
      min-width: unset;
    }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown li a {
      padding: 13px 32px 13px 44px !important;
      font-size: 11px !important;
      color: rgba(255,255,255,0.65) !important;
      border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    }
    .dropdown li a:hover {
      background: rgba(255,255,255,0.06) !important;
      color: white !important;
    }

    .nav-book-mobile { display: block; }
    .nav-book-mobile .nav-book {
      width: 100%;
      border-color: rgba(255,255,255,0.4);
      color: white !important;
      padding: 14px 32px;
      font-size: 12px;
      text-align: center;
    }

    /* Content adjustments */
    .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
    .section-header { flex-direction: column; gap: 0; padding: 0 20px; }
    .rooms-layout { flex-direction: column; padding: 0 20px; gap: 24px; }
    .rooms-title-col { flex: none; padding: 0; }
    .rooms-slider { padding: 0 0 24px; }
    .room-card { flex: 0 0 260px; }
    .room-card.featured { flex: 0 0 260px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .amenities { padding: 80px 20px; }
    .testi-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 80px 20px; }
    .testimonials-inner { padding: 0; }
    .footer-brand { padding: 36px 24px 28px; }
    .footer-cols { grid-template-columns: 1fr 1fr; padding: 28px 24px; gap: 24px; }
    .footer-bottom { padding: 14px 24px; }
    .booking-section { padding: 60px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; }
    .hero-title { font-size: clamp(48px, 14vw, 80px); }
    .booking-controls { flex-direction: column; align-items: flex-start; }
    .cal-nav { margin-left: 0; }
    .section-title { font-size: 40px; }
    .about-text h2 { font-size: 34px; }
  }

  @media (max-width: 480px) {
    nav { padding: 16px 16px; }
    .amenity-item { padding: 28px 16px; }
    .amenity-icon-img { width: 150px; height: 150px; }
    .testi-card { padding: 28px 20px; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
  }
