
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

  :root {
    --gold:       #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim:   rgba(201,168,76,0.15);
    --cream:      #FAF7F2;
    --dark:       #0A0A0A;
    --mid:        #1A1A1A;
    --text-muted: #888;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'Jost', sans-serif;
  }

  /* ── Reset for page sections ── */
  .content { padding-top: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }

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

  /* Swap src for your real image */
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%),
      url('{% static "core/images/hero.jpg" %}') center/cover no-repeat;
    transform: scale(1.08);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }

  @keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
  }

  /* Decorative diagonal lines */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.04) 80px,
      rgba(201,168,76,0.04) 81px
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
  }

  .hero-eyebrow {
    font-family: var(--sans);
    font-weight: 200;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.3s forwards;
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s 0.6s forwards;
    margin-bottom: 24px;
  }

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

  .hero-sub {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.9s forwards;
    line-height: 1.8;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1.2s forwards;
  }

  .btn-primary {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
  }

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

  .btn-outline {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    display: inline-block;
  }

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

  /* Scroll hint */
  .scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
  }

  .scroll-hint span {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out 2.5s infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
  }

  /* ────────────────────────────────────
     2. BOOKING BAR
  ──────────────────────────────────── */
  .booking-bar {
    background: var(--mid);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(201,168,76,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.3);
  }

  .booking-field {
    display: flex;
    flex-direction: column;
    padding: 10px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex: 1;
    min-width: 160px;
  }

  .booking-field:last-of-type { border-right: none; }

  .booking-field label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .booking-field input,
  .booking-field select {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    cursor: pointer;
  }

  .booking-field select option { background: #222; color: #fff; }

  .booking-btn {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 36px;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
    margin-left: 16px;
  }

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

  /* ────────────────────────────────────
     3. INTRODUCTION
  ──────────────────────────────────── */
  .intro-section {
    background: var(--cream);
    padding: 120px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .intro-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .intro-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
  }

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

  .intro-text {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 32px;
  }

  .intro-link {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: opacity 0.3s;
  }

  .intro-link:hover { opacity: 0.7; }

  .intro-image-wrap {
    position: relative;
  }

  .intro-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }

  .intro-image-badge {
    position: absolute;
    bottom: -24px; left: -24px;
    background: var(--dark);
    color: #fff;
    padding: 24px 28px;
    min-width: 160px;
  }

  .badge-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .badge-text {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
  }

  /* ────────────────────────────────────
     4. STATS BAND
  ──────────────────────────────────── */
  .stats-band {
    background: var(--dark);
    padding: 64px 40px;
  }

  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
  }



  .stat-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
  }

  /* ────────────────────────────────────
     5. ROOMS SECTION
  ──────────────────────────────────── */
  .rooms-section {
    padding: 120px 40px;
    background: #fff;
  }

  .section-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 64px;
  }

  .section-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    line-height: 1.2;
  }

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

  /* Room grid */
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .room-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .room-card:first-child {
    grid-row: span 2;
  }

  .room-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .room-card:first-child img { min-height: 562px; }

  .room-card:hover img { transform: scale(1.06); }

  .room-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.4s;
  }

  .room-card:hover .room-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  }

  .room-tag {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .room-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
  }

  .room-price {
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
  }

  .room-price span {
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 400;
  }

  .room-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
    display: inline-block;
    margin-top: 14px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: 10px 24px;
    text-decoration: none;
  }

  .room-card:hover .room-btn {
    opacity: 1;
    transform: translateY(0);
  }

  /* ────────────────────────────────────
     6. AMENITIES
  ──────────────────────────────────── */
  .amenities-section {
    background: var(--cream);
    padding: 120px 40px;
  }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .amenity-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }

  .amenity-card:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transform: translateY(-6px);
  }

  .amenity-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
  }

  .amenity-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .amenity-desc {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ────────────────────────────────────
     7. EXPERIENCE GALLERY
  ──────────────────────────────────── */
  .gallery-section {
    padding: 120px 40px;
    background: var(--dark);
  }

  .gallery-section .section-title { color: #fff; }

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

  .gallery-item {
    overflow: hidden;
    position: relative;
  }

  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    transition: transform 0.7s ease, filter 0.4s;
    filter: brightness(0.85);
  }

  .gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
  }

  /* Layout spans */
  .gallery-item:nth-child(1) { grid-column: span 7; min-height: 380px; }
  .gallery-item:nth-child(2) { grid-column: span 5; }
  .gallery-item:nth-child(3) { grid-column: span 4; }
  .gallery-item:nth-child(4) { grid-column: span 4; }
  .gallery-item:nth-child(5) { grid-column: span 4; }

  /* ────────────────────────────────────
     8. TESTIMONIAL
  ──────────────────────────────────── */
  .testimonial-section {
    background: var(--cream);
    padding: 120px 40px;
    text-align: center;
  }

  .testimonial-quote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.55;
    position: relative;
  }

  .testimonial-quote::before {
    content: '"';
    font-family: var(--serif);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: -40px; left: -20px;
    line-height: 1;
    pointer-events: none;
  }

  .testimonial-author {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
  }

  .testimonial-role {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* Dots */
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
  }

  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .dot.active {
    background: var(--gold);
    transform: scale(1.4);
  }

  /* ────────────────────────────────────
     9. NEWSLETTER / CTA
  ──────────────────────────────────── */
  .cta-section {
    position: relative;
    overflow: hidden;
    padding: 140px 40px;
    background: var(--dark);
    text-align: center;
  }

  /* Bg image — swap for your own */
  .cta-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
      url('{% static "core/images/cta-bg.jpg" %}') center/cover no-repeat;
    z-index: 0;
  }

  .cta-content {
    position: relative;
    z-index: 1;
  }

  .cta-eyebrow {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .cta-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 16px;
  }

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

  .cta-sub {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
  }

  .newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
  }

  .newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    color: #fff;
    font-family: var(--sans);
    font-size: 13px;
    outline: none;
    transition: background 0.3s;
  }

  .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-form input:focus { background: rgba(255,255,255,0.15); }

  .newsletter-form button {
    padding: 16px 28px;
    background: var(--gold);
    color: #000;
    border: none;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
  }

  .newsletter-form button:hover { background: var(--gold-light); }

  /* ────────────────────────────────────
     SHARED ANIMATIONS
  ──────────────────────────────────── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.30s; }
  .reveal-delay-3 { transition-delay: 0.45s; }
  .reveal-delay-4 { transition-delay: 0.60s; }

  /* ────────────────────────────────────
     RESPONSIVE
  ──────────────────────────────────── */
  @media (max-width: 900px) {
    .intro-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .room-card:first-child { grid-row: auto; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(n) { grid-column: span 6; }
    .booking-bar { flex-direction: column; padding: 24px; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .booking-btn { width: 100%; text-align: center; }
  }

  @media (max-width: 600px) {
    .rooms-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-column: span 12; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
    .intro-section { padding: 64px 20px; }
  }
