  :root {
    --gold: #C49A1A;
    --gold-light: #E2B53A;
    --gold-pale: #FDF5DC;
    --dark: #1A1A1A;
    --charcoal: #4A4A4A;
    --mid: #555;
    --light: #888;
    --cream: #FEFCF0;
    --white: #FFFFFF;
    --border: #F0E4B0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── NAVIGATION ── */
  .renovation-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--dark);
    border-bottom: 1px solid var(--gold);
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .renovation-banner p {
    color: var(--cream);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin: 0;
  }

  .renovation-banner a {
    color: var(--gold-light);
    font-weight: 500;
    text-decoration: underline;
  }

  .renovation-banner-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
  }

  @media (max-width: 900px) {
    .renovation-banner { padding: 10px 16px; }
    .renovation-banner p { font-size: 12px; }
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(74,74,74,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-brand-sub {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 3px;
  }

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

  .nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    letter-spacing: 0.15em !important;
    transition: background 0.3s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1208 0%, #2c2010 40%, #1a1a1a 100%);
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
  }

  .hero-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2C1F05 0%, #3D2B0A 50%, #1A1208 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,0.3);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,18,8,0.3) 0%, rgba(26,18,8,0.6) 100%);
  }

  .hero-content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    animation: fadeUp 1.2s ease forwards;
  }

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

  .hero-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 300;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
    text-transform: uppercase;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--gold);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
  }

  .btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  .hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--dark);
    padding: 20px 48px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .trust-item-icon {
    color: var(--gold-light);
    font-size: 16px;
  }

  /* ── SECTIONS ── */
  section { padding: 100px 48px; }

  .section-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid);
    max-width: 560px;
  }

  .gold-rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 24px 0;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px;
  }

  .about-images {
    position: relative;
    height: 520px;
  }

  .about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
    background: linear-gradient(135deg, #E2B53A33, #C49A1A33);
    border: 1px solid var(--border);
  }

  .about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    background: linear-gradient(135deg, #1A1A1A, #4A4A4A);
    border: 3px solid var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .about-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 20px;
    text-align: center;
    min-width: 90px;
  }

  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    display: block;
  }

  .about-badge-text {
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    margin-top: 4px;
  }

  /* ── GALLERY ── */
  .gallery-section {
    background: var(--cream);
    padding: 100px 48px;
  }

  .gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery-item {
    overflow: hidden;
    position: relative;
    background: var(--border);
    cursor: pointer;
  }

  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 3; }
  .gallery-item:nth-child(5) { grid-column: span 4; }
  .gallery-item:nth-child(6) { grid-column: span 6; }
  .gallery-item:nth-child(7) { grid-column: span 6; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--light);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e8dfc8, #f0e8d4);
  }

  .gallery-placeholder-icon { font-size: 28px; opacity: 0.4; }

  /* ── FEATURES ── */
  .features-section {
    background: var(--dark);
    padding: 100px 48px;
  }

  .features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
  }

  .features-header .section-title { color: var(--white); }
  .features-header .section-eyebrow { color: var(--gold-light); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 48px 36px;
    transition: all 0.3s;
  }

  .feature-card:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.3);
  }

  .feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
  }

  .feature-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
  }

  /* ── LOCATION ── */
  .location-section {
    background: var(--white);
    padding: 100px 48px;
  }

  .location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .location-map {
    background: var(--gold-pale);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .nearby-list {
    list-style: none;
    margin-top: 32px;
  }

  .nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .nearby-name { font-weight: 500; color: var(--dark); }
  .nearby-time {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  /* ── REVIEWS ── */
  .reviews-section {
    background: var(--cream);
    padding: 100px 48px;
  }

  .reviews-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
  }

  .reviews-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .reviews-score-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .reviews-score-max {
    font-size: 24px;
    color: var(--light);
    font-weight: 300;
  }

  .reviews-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 48px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
  }

  .review-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 8px 40px rgba(139,105,20,0.08);
    transform: translateY(-4px);
  }

  .review-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: var(--gold-pale);
    line-height: 0.5;
    margin-bottom: 16px;
    display: block;
  }

  .review-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 24px;
    font-style: italic;
  }

  .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .review-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.05em;
  }

  .review-meta {
    font-size: 11px;
    color: var(--light);
    margin-top: 2px;
  }

  .review-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
  }

  /* ── BOOKING ── */
  .booking-section {
    background: var(--charcoal);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .booking-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(226,181,58,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .booking-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .booking-inner .section-title { color: var(--white); }
  .booking-inner .section-eyebrow { color: var(--gold-light); }
  .booking-inner .section-body {
    color: rgba(255,255,255,0.5);
    margin: 0 auto 48px;
  }

  .booking-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 32px 0;
  }

  .booking-price-from {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .booking-price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
  }

  .booking-price-unit {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
  }

  .booking-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 48px;
    margin-top: 40px;
    text-align: left;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group.full { grid-column: span 2; }

  .form-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .form-input, .form-textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }

  .form-input:focus, .form-textarea:focus {
    border-color: var(--gold-light);
  }

  .form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255,255,255,0.2);
  }

  .form-textarea { height: 120px; resize: vertical; }

  .form-note {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  /* ── CONTACT BAR ── */
  .contact-bar {
    background: var(--gold);
    padding: 32px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .contact-item:hover { opacity: 0.8; }

  .contact-item-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
  }

  .contact-item-value {
    font-size: 15px;
    font-weight: 500;
    display: block;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
  }

  .footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  .footer-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--gold-light); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 70px 24px; }
    .about { grid-template-columns: 1fr; padding: 70px 24px; }
    .about-images { height: 320px; }
    .about-badge { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .trust-bar { padding: 16px 24px; gap: 20px; }
    .contact-bar { padding: 24px; gap: 24px; }
    footer { padding: 32px 24px; flex-direction: column; text-align: center; }
    .booking-form { padding: 28px 20px; }
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }

  .lightbox.active { display: flex; }
  .lightbox img { max-width: 80vw; max-height: 85vh; object-fit: contain; }
  .lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
  }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    padding: 20px;
    user-select: none;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
  .lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .loc-card:hover img { transform: scale(1.06); }
