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

  :root {
    --white: #FDFCFA;
    --cream: #F5F0E8;
    --champagne: #C9A96E;
    --champagne-light: #E8D5B0;
    --sage: #8A9E8A;
    --sage-light: #C4D4C0;
    --stone: #9A8E80;
    --ink: #2C2820;
    --ink-light: #4A433A;
    --mid: #7A7168;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { background: var(--white); color: var(--ink); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; }

  /* ── NAV ── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(253,252,250,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,0.2);
  }
  .nav-logo {
    text-decoration: none; display: inline-block;
  }
  .nav-logo img { height: 44px; width: auto; display: block; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-light); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--champagne); }
  .nav-cta {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white); background: var(--champagne);
    padding: 11px 26px; text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--ink); }

  /* ── HERO ── */
  .hero { height: 100vh; min-height: 700px; position: relative; overflow: hidden; }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
      linear-gradient(160deg, rgba(44,40,32,0.38) 0%, rgba(44,40,32,0.12) 50%, rgba(44,40,32,0.45) 100%);
  }
  .hero-content {
    position: absolute; bottom: 14vh; left: 7vw; right: 7vw;
    display: flex; align-items: flex-end; justify-content: space-between;
  }
  .hero-text { max-width: 640px; }
  .hero-eyebrow {
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--champagne-light); margin-bottom: 18px;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 300; line-height: 1.0; color: #FDFCFA; margin-bottom: 10px;
  }
  .hero-title em { font-style: italic; font-weight: 300; color: var(--champagne-light); }
  .hero-sub {
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 300;
    letter-spacing: 0.08em; color: rgba(253,252,250,0.78); margin-top: 16px;
  }
  .hero-right {
    text-align: right; display: flex; flex-direction: column;
    align-items: flex-end; gap: 20px;
  }
  .hero-scroll {
    font-family: var(--font-body); font-size: 0.65rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(253,252,250,0.65);
    display: flex; align-items: center; gap: 12px; cursor: pointer;
  }
  .hero-scroll::after {
    content: ''; display: block; width: 40px; height: 1px; background: var(--champagne);
  }
  .hero-dots { display: flex; gap: 8px; }
  .hero-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(253,252,250,0.4); cursor: pointer; transition: background 0.3s;
  }
  .hero-dot.active { background: var(--champagne); }

  /* ── STATS BAND ── */
  .intro-band {
    background: var(--ink); padding: 28px 7vw;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .intro-stat { text-align: center; }
  .intro-stat .num {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
    color: var(--champagne); display: block;
  }
  .intro-stat .lbl {
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(253,252,250,0.55); display: block; margin-top: 2px;
  }
  .intro-divider { width: 1px; height: 44px; background: rgba(201,169,110,0.3); }
  .intro-tagline {
    font-family: var(--font-display); font-size: 1.3rem;
    font-style: italic; font-weight: 300;
    color: rgba(253,252,250,0.78); max-width: 340px; line-height: 1.5;
  }
  .intro-tagline em { color: var(--champagne); font-style: italic; }

  /* ── SECTION COMMON ── */
  section { padding: 100px 7vw; }
  .section-eyebrow {
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--champagne); margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300; line-height: 1.15; color: var(--ink);
  }
  .section-title em { font-style: italic; color: var(--champagne); }
  .hairline { width: 48px; height: 1px; background: var(--champagne); margin: 28px 0; }

  /* ── STORY ── */
  .story { background: var(--cream); }
  .story-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
  .story-text p {
    font-size: 0.95rem; line-height: 1.85; color: var(--ink-light); margin-bottom: 18px;
  }

  /* ── GALLERY ── */
  .gallery-section { background: var(--white); padding-bottom: 0; }
  .gallery-header { margin-bottom: 52px; }

  /* Main 4-col grid for first 8 images */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-bottom: 3px;
  }
  .gallery-item {
    overflow: hidden; cursor: pointer; position: relative;
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
    min-height: 220px;
  }
  .gallery-grid .gallery-item:nth-child(1) img { min-height: 460px; }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(44,40,32,0.65));
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(253,252,250,0.88);
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; }

  /* Second row — 5 new images in a horizontal strip */
  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
  }
  .gallery-strip .gallery-item img { min-height: 200px; }

  /* ── SPECS ── */
  .specs { background: var(--cream); }
  .specs-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .specs-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
  .specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .spec-item {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(201,169,110,0.25);
    border-right: 1px solid rgba(201,169,110,0.25);
  }
  .spec-item:nth-child(even) { border-right: none; }
  .spec-item:nth-last-child(-n+2) { border-bottom: none; }
  .spec-num {
    font-family: var(--font-display); font-size: 2rem; font-weight: 300;
    color: var(--champagne); display: block;
  }
  .spec-unit {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.1em; color: var(--stone);
  }
  .spec-label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-light); margin-top: 6px; display: block;
  }
  .specs-cta { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white); background: var(--champagne);
    padding: 14px 32px; text-decoration: none; display: inline-block; transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--ink); }
  .btn-outline {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--champagne); border: 1px solid var(--champagne);
    padding: 14px 32px; text-decoration: none; display: inline-block; transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--champagne); color: var(--white); }

  /* ── ROOMS ── */
  .rooms { background: var(--white); }
  .rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
  .room-card { position: relative; overflow: hidden; }
  .room-card img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .room-card:hover img { transform: scale(1.04); }
  .room-card-body { padding: 22px 0 0; }
  .room-card-tag {
    font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--champagne); margin-bottom: 6px;
  }
  .room-card-title {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    color: var(--ink); line-height: 1.2;
  }
  .room-card-desc {
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 300;
    color: var(--mid); margin-top: 8px; line-height: 1.7;
  }

  /* ── SURROUNDINGS ── */
  .surroundings { background: var(--ink); }
  .surroundings .section-title { color: var(--cream); }
  .surroundings .section-eyebrow { color: var(--champagne); }
  .surroundings .hairline { background: var(--champagne); }
  .surr-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; margin-top: 52px;
  }
  .surr-list { list-style: none; }
  .surr-item {
    display: flex; align-items: baseline; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .surr-item:last-child { border-bottom: none; }
  .surr-time {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
    color: var(--champagne); min-width: 70px;
  }
  .surr-mins { font-family: var(--font-body); font-size: 0.65rem; color: var(--stone); letter-spacing: 0.1em; }
  .surr-place { font-family: var(--font-body); font-size: 0.85rem; font-weight: 300; color: rgba(253,252,250,0.75); }
  .surr-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: brightness(0.85) saturate(0.9); }

  /* ── CONTACT ── */
  .contact { background: var(--cream); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-info p { font-size: 0.9rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 12px; }
  .contact-detail { display: flex; align-items: center; gap: 12px; margin-top: 28px; margin-bottom: 10px; }
  .contact-detail-label {
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); min-width: 80px;
  }
  .contact-detail-value { font-family: var(--font-body); font-size: 0.9rem; color: var(--ink); text-decoration: none; }
  .contact-detail-value:hover { color: var(--champagne); }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-label {
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid);
  }
  .form-input, .form-select, .form-textarea {
    font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
    color: var(--ink); background: var(--white);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 12px 16px; outline: none; transition: border-color 0.2s; width: 100%;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--champagne); }
  .form-textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white); background: var(--champagne);
    border: none; cursor: pointer; padding: 16px 40px;
    align-self: flex-start; transition: background 0.2s;
  }
  .form-submit:hover { background: var(--ink); }

  /* ── FOOTER ── */
  footer { background: var(--ink); padding: 52px 7vw 36px; display: flex; flex-direction: column; gap: 32px; }
  .footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
  .footer-logo { display: inline-block; }
  .footer-logo img { height: 48px; width: auto; display: block; }
  .footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
  .footer-nav a {
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 400;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(253,252,250,0.5); text-decoration: none; transition: color 0.2s;
  }
  .footer-nav a:hover { color: var(--champagne); }
  .footer-bottom {
    border-top: 1px solid rgba(201,169,110,0.15); padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-family: var(--font-body); font-size: 0.68rem; font-weight: 300; color: rgba(253,252,250,0.35); }
  .footer-by { font-family: var(--font-body); font-size: 0.68rem; font-weight: 300; color: rgba(253,252,250,0.35); }
  .footer-by a { color: var(--champagne); text-decoration: none; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(20,18,14,0.95); z-index: 1000;
    align-items: center; justify-content: center; padding: 40px;
  }
  .lightbox.open { display: flex; }
  .lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
  .lightbox-close {
    position: absolute; top: 24px; right: 32px;
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(253,252,250,0.6); cursor: pointer; background: none; border: none;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--champagne); }
  .lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; font-size: 2rem;
    color: rgba(253,252,250,0.4); cursor: pointer; padding: 16px; transition: color 0.2s;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-prev:hover, .lightbox-next:hover { color: var(--champagne); }

  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    section { padding: 70px 6vw; }
    .story-inner, .specs-inner, .contact-inner, .surr-inner { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .intro-band { justify-content: center; gap: 24px; }
    .hero-content { flex-direction: column; align-items: flex-start; gap: 24px; }
  }

  /* ── DESKTOP-ONLY: LARGER SMALL TEXT ── */
  @media (min-width: 901px) {
    .nav-links a { font-size: 0.8rem; }
    .nav-cta { font-size: 0.8rem; }
    .hero-eyebrow { font-size: 0.78rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-scroll { font-size: 0.74rem; }
    .intro-stat .lbl { font-size: 0.74rem; }
    .section-eyebrow { font-size: 0.74rem; }
    .gallery-caption { font-size: 0.78rem; }
    .spec-unit { font-size: 0.8rem; }
    .spec-label { font-size: 0.8rem; }
    .room-card-tag { font-size: 0.7rem; }
    .room-card-desc { font-size: 0.9rem; }
    .surr-mins { font-size: 0.72rem; }
    .surr-place { font-size: 0.95rem; }
    .contact-detail-label { font-size: 0.72rem; }
    .contact-detail-value { font-size: 0.98rem; }
    .form-label { font-size: 0.72rem; }
    .form-input, .form-select, .form-textarea { font-size: 0.96rem; }
    .form-submit { font-size: 0.8rem; }
    .btn-primary { font-size: 0.8rem; }
    .btn-outline { font-size: 0.8rem; }
    .footer-nav a { font-size: 0.76rem; }
    .footer-copy { font-size: 0.76rem; }
    .footer-by { font-size: 0.76rem; }
    .lightbox-close { font-size: 0.8rem; }
    .story-text p { font-size: 1.02rem; }
    .contact-info p { font-size: 0.98rem; }
  }