
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #1B2E4A;
      --teal:   #2E7D8C;
      --saffron:#D4720A;
      --oak:    #C8843A;
      --ivory:  #FBF8F3;
      --ivory2: #F3EDE4;
      --white:  #FFFFFF;
      --text:   #1A1A1A;
      --muted:  #5A5A5A;
      --light:  #E8E0D6;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--ivory);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ───────────�    /* Header Wrapper */
    header.site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    /* Top Bar Style */
    .top-bar {
      background: #0b0705;
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
      height: 36px;
      font-size: 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.04em;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      color: #C8843A;
      font-weight: 500;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .top-bar-separator {
      color: rgba(255, 255, 255, 0.2);
    }

    .top-bar-phone {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .top-bar-phone:hover {
      color: #C8843A;
    }

    /* Nav Bar Style */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(20, 14, 10, 0.95);
      backdrop-filter: blur(12px);
      transition: background 0.3s;
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 600;
      color: var(--white); letter-spacing: 0.01em;
    }
    .nav-logo span { color: #C8843A; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.85); text-decoration: none;
      font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; transition: color 0.2s;
      position: relative;
      padding: 0.4rem 0;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #C8843A;
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: #C8843A; }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    .nav-cta {
      background: #C8843A; color: #0d0805;
      padding: 0.6rem 1.4rem; border-radius: 4px;
      font-size: 0.82rem; font-weight: 700; text-decoration: none;
      letter-spacing: 0.04em; text-transform: uppercase;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .nav-cta:hover {
      background: #b85f08;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(200, 132, 58, 0.3);
    }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); transition: all 0.3s;
    }

    .mobile-menu {
      display: none; position: fixed; top: 108px; left: 0; right: 0;
      background: rgba(20, 14, 10, 0.98); z-index: 99; padding: 1.5rem 5%;
      border-bottom: 2px solid #C8843A;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block; color: rgba(255,255,255,0.9); text-decoration: none;
      padding: 0.75rem 0; font-size: 0.95rem; font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ── HERO ────────────────────────────────── */
    .hero {
      position: relative; height: 100vh; min-height: 650px;
      display: flex; align-items: center; justify-content: flex-start;
      padding: 0 8%;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('../images/about-img-accent.webp');
      background-size: cover; background-position: center;
      transform: scale(1.04);
      animation: heroZoom 12s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to { transform: scale(1.0); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(13, 8, 5, 0.92) 0%, rgba(13, 8, 5, 0.65) 50%, rgba(13, 8, 5, 0.3) 100%);
    }
    .hero-om {
      position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
      font-size: 22vw; color: rgba(200, 132, 58, 0.08);
      font-family: serif; line-height: 1; pointer-events: none;
      animation: omPulse 4s ease-in-out infinite;
      user-select: none;
    }
    @keyframes omPulse {
      0%, 100% { opacity: 0.08; }
      50% { opacity: 0.14; }
    }
    .hero-content {
      position: relative; z-index: 2; max-width: 700px;
      font-family: 'Inter', sans-serif;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid #C8843A;
      border-radius: 100px;
      padding: 0.4rem 1.2rem;
      background: rgba(200, 132, 58, 0.08);
      color: #C8843A;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      margin-bottom: 1.8rem;
      text-transform: uppercase;
    }
    .hero-badge-icon {
      font-size: 0.9rem;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 4.2rem);
      font-weight: 500;
      line-height: 1.15;
      color: #FFFFFF;
      margin-bottom: 1.2rem;
    }
    .hero h1 .highlight-gold {
      font-style: italic;
      color: #C8843A;
    }
    .gold-divider {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.8rem;
    }
    .gold-divider .divider-line {
      height: 1px;
      width: 60px;
      background: rgba(200, 132, 58, 0.5);
    }
    .gold-divider .divider-diamond {
      color: #C8843A;
      font-size: 0.8rem;
      line-height: 1;
    }
    .hero-description {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    .hero-features {
      display: flex;
      gap: 2rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    .hero-feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.6rem;
    }
    .feature-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(200, 132, 58, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(13, 8, 5, 0.6);
      transition: border-color 0.3s, background 0.3s;
    }
    .hero-feature-item:hover .feature-circle {
      border-color: #C8843A;
      background: rgba(200, 132, 58, 0.15);
    }
    .feature-icon {
      font-size: 1.25rem;
    }
    .feature-label {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.75rem;
      font-weight: 500;
      line-height: 1.3;
    }
    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }
    .btn-gold-solid {
      background: #C8843A;
      color: #0d0805;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.9rem 2.2rem;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    }
    .btn-gold-solid:hover {
      background: #b85f08;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(200, 132, 58, 0.4);
    }
    .btn-gold-outline {
      border: 1px solid #C8843A;
      background: transparent;
      color: #FFFFFF;
      font-size: 0.88rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.9rem 2.2rem;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s, border-color 0.3s, transform 0.2s;
    }
    .btn-gold-outline:hover {
      background: rgba(200, 132, 58, 0.15);
      border-color: #C8843A;
      transform: translateY(-2px);
    }
    .hero-badge {
      padding: 0.5rem 1rem; border-radius: 100px;
      color: var(--white); font-size: 0.78rem; font-weight: 500;
    }
    .badge-icon { font-size: 1rem; }

    /* ── TRUST BAR ───────────────────────────── */
    .trust-bar {
      background: var(--navy); padding: 1.2rem 8%;
      display: flex; align-items: center; justify-content: space-around;
      flex-wrap: wrap; gap: 1rem;
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.6rem;
      color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 400;
    }
    .trust-icon { color: var(--saffron); font-size: 1.1rem; }

    /* ── SECTION COMMON ──────────────────────── */
    section { padding: 5rem 8%; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--saffron); font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem;
    }
    .section-eyebrow::before {
      content: ''; display: block; width: 22px; height: 1.5px; background: var(--saffron);
    }
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 600; line-height: 1.25; color: var(--navy);
      margin-bottom: 0.75rem;
    }
    h2 em { font-style: italic; color: var(--teal); }
    .section-lead {
      color: var(--muted); font-size: 1rem; line-height: 1.75;
      max-width: 600px; font-weight: 300;
    }

    /* ── ABOUT ───────────────────────────────── */
    .about { background: var(--ivory); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
      align-items: center; margin-top: 3.5rem;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%; border-radius: 4px;
      aspect-ratio: 4/3; object-fit: cover;
      display: block;
    }
    .about-img-accent {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      width: 55%; border-radius: 4px;
      border: 4px solid var(--ivory);
      aspect-ratio: 4/3; object-fit: cover;
    }
    .about-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 500; font-style: italic;
      color: var(--navy); margin: 1.5rem 0 1rem;
      padding-left: 1.2rem;
      border-left: 3px solid var(--saffron);
    }
    .about-text {
      color: var(--muted); line-height: 1.85; font-size: 0.97rem;
      font-weight: 300; margin-bottom: 1rem;
    }
    .about-stats {
      display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
    }
    .stat {
      text-align: left;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--saffron);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem;
      font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
    }

    /* ── ROOMS ───────────────────────────────── */
    .rooms { background: var(--ivory2); }
    .rooms-header { margin-bottom: 3rem; }
    .rooms-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    }
    .room-card {
      background: var(--white); border-radius: 6px;
      overflow: hidden; box-shadow: 0 2px 16px rgba(27,46,74,0.07);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .room-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(27,46,74,0.14);
    }
    .room-img-wrap { position: relative; overflow: hidden; }
    .room-img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover;
      display: block; transition: transform 0.5s;
    }
    .room-card:hover .room-img { transform: scale(1.04); }
    .room-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: var(--navy); color: var(--white);
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 3px;
    }
    .room-badge.popular {
      background: var(--saffron);
    }
    .room-body { padding: 1.5rem; }
    .room-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 600; color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .room-desc {
      font-size: 0.875rem; color: var(--muted); line-height: 1.7;
      font-weight: 300; margin-bottom: 1rem;
    }
    .room-features {
      display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem;
    }
    .feature-tag {
      font-size: 0.72rem; font-weight: 500;
      background: var(--ivory2); color: var(--teal);
      padding: 0.25rem 0.6rem; border-radius: 3px;
      border: 1px solid var(--light);
    }
    .room-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 1rem; border-top: 1px solid var(--light);
    }
    .room-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700; color: var(--saffron);
    }
    .room-price small {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem; color: var(--muted); font-weight: 400;
    }
    .room-meta { font-size: 0.78rem; color: var(--muted); text-align: right; }
    .book-btn {
      display: inline-block; background: var(--navy); color: var(--white);
      padding: 0.5rem 1.1rem; border-radius: 4px; text-decoration: none;
      font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.05em; margin-top: 0.5rem;
      transition: background 0.2s;
    }
    .book-btn:hover { background: var(--teal); }

    /* ── AMENITIES ───────────────────────────── */
    .amenities { background: var(--navy); }
    .amenities h2 { color: var(--white); }
    .amenities .section-lead { color: rgba(255,255,255,0.65); }
    .amenities-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
      margin-top: 3rem;
    }
    .amenity-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 6px; padding: 1.75rem 1.5rem;
      text-align: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .amenity-card:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(212,114,10,0.4);
    }
    .amenity-icon { font-size: 2rem; margin-bottom: 0.75rem; }
    .amenity-name {
      color: var(--white); font-size: 0.88rem; font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .amenity-desc { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.5; }

    /* ── GALLERY ─────────────────────────────── */
    .gallery { background: var(--ivory); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 0.75rem; margin-top: 2.5rem;
    }
    .gallery-item {
      overflow: hidden; border-radius: 4px; cursor: pointer;
    }
    .gallery-item:first-child {
      grid-column: 1 / 3; grid-row: 1 / 2;
    }
    .gallery-img {
      width: 100%; height: 100%; min-height: 180px;
      object-fit: cover; display: block;
      transition: transform 0.5s;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.05); }
    .gallery-item:first-child .gallery-img { min-height: 320px; }

    /* ── LOCATION ────────────────────────────── */
    .location { background: var(--ivory2); }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: start; margin-top: 3rem;
    }
    .location-map-wrap {
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(27,46,74,0.12);
    }
    .location-map-wrap iframe {
      width: 100%; height: 380px; border: none; display: block;
    }
    .attraction-list { list-style: none; margin-top: 0.5rem; }
    .attraction-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 0.9rem 0; border-bottom: 1px solid var(--light);
    }
    .attraction-item:last-child { border-bottom: none; }
    .attraction-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--saffron); flex-shrink: 0; margin-top: 5px;
    }
    .attraction-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
    .attraction-dist { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
    .reach-section { margin-top: 2rem; }
    .reach-item {
      display: flex; gap: 1rem; align-items: flex-start;
      margin-bottom: 1rem;
    }
    .reach-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
    .reach-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
    .reach-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

    /* ── POLICIES ────────────────────────────── */
    .policies { background: var(--ivory); }
    .policies-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .policy-card {
      background: var(--white); border-radius: 6px;
      padding: 1.75rem; border-top: 3px solid var(--saffron);
      box-shadow: 0 2px 12px rgba(27,46,74,0.05);
    }
    .policy-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
    .policy-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 600; color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .policy-list { list-style: none; }
    .policy-list li {
      font-size: 0.85rem; color: var(--muted); line-height: 1.7;
      padding: 0.25rem 0;
      display: flex; gap: 0.5rem;
    }
    .policy-list li::before { content: "›"; color: var(--saffron); font-weight: 700; }

    /* ── CONTACT ─────────────────────────────── */
    .contact { background: var(--navy); }
    .contact h2 { color: var(--white); }
    .contact .section-lead { color: rgba(255,255,255,0.65); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
      margin-top: 3rem; align-items: start;
    }
    .contact-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 6px; padding: 2rem;
    }
    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .contact-item:last-child { border-bottom: none; }
    .contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
    .contact-label {
      font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--saffron); font-weight: 600; margin-bottom: 0.2rem;
    }
    .contact-val {
      color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 400;
    }
    .contact-val a {
      color: rgba(255,255,255,0.9); text-decoration: none;
    }
    .contact-val a:hover { color: var(--saffron); }
    .ota-section { margin-top: 2rem; }
    .ota-title {
      color: rgba(255,255,255,0.6); font-size: 0.75rem;
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 1rem; font-weight: 500;
    }
    .ota-links {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
    }
    .ota-link {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.8);
      text-decoration: none; padding: 0.4rem 0.9rem;
      border-radius: 100px; font-size: 0.75rem; font-weight: 500;
      transition: background 0.2s, border-color 0.2s;
    }
    .ota-link:hover {
      background: rgba(212,114,10,0.2); border-color: var(--saffron);
      color: var(--white);
    }
    .cta-block {
      background: linear-gradient(135deg, var(--saffron) 0%, #b85f08 100%);
      border-radius: 6px; padding: 2.5rem;
      text-align: center; margin-top: 1rem;
    }
    .cta-block h3 {
      font-family: 'Playfair Display', serif;
      color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem;
    }
    .cta-block p {
      color: rgba(255,255,255,0.85); font-size: 0.9rem;
      margin-bottom: 1.5rem; line-height: 1.6;
    }
    .cta-phone {
      display: block; color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 700;
      text-decoration: none; margin-bottom: 0.5rem;
    }
    .cta-phone:hover { opacity: 0.85; }
    .cta-divider {
      color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 0.5rem;
    }
    .cta-phone2 {
      display: block; color: rgba(255,255,255,0.9);
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 600;
      text-decoration: none; margin-bottom: 1.5rem;
    }
    .cta-phone2:hover { opacity: 0.8; }
    .cta-btn {
      display: inline-block; background: var(--white); color: var(--saffron);
      padding: 0.75rem 2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
      transition: opacity 0.2s;
    }
    .cta-btn:hover { opacity: 0.9; }

    /* ── FOOTER ──────────────────────────────── */
    .main-footer {
      background-color: #0b1320;
      color: #a5b1c2;
      padding: 5rem 8% 2.5rem 8%;
      font-size: 0.9rem;
      line-height: 1.6;
      border-top: 3px solid var(--saffron);
    }
    .footer-grid-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3.5rem 2.5rem;
      margin-bottom: 4rem;
    }
    .footer-col {
      display: flex;
      flex-direction: column;
    }
    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 1.75rem;
      position: relative;
      letter-spacing: 0.03em;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -0.6rem;
      width: 35px;
      height: 2px;
      background-color: var(--saffron);
      border-radius: 2px;
    }
    .footer-about {
      gap: 1.2rem;
    }
    .footer-about-text {
      color: #cbd5e1;
      font-size: 0.88rem;
      margin: 0;
    }
    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: var(--oak);
      font-size: 0.95rem;
      margin-top: 0.5rem;
      font-weight: 500;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-links-list li a {
      color: #a5b1c2;
      text-decoration: none;
      font-size: 0.88rem;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    .footer-links-list li a::before {
      content: '→';
      margin-right: 0.5rem;
      opacity: 0;
      transform: translateX(-5px);
      transition: all 0.3s ease;
      color: var(--saffron);
    }
    .footer-links-list li a:hover {
      color: var(--white);
      transform: translateX(5px);
    }
    .footer-links-list li a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }
    .footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
    }
    .footer-contact-icon {
      font-size: 1.1rem;
      color: var(--saffron);
      line-height: 1.2;
    }
    .footer-contact-text {
      color: #cbd5e1;
      font-size: 0.88rem;
    }
    .footer-contact-text a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-contact-text a:hover {
      color: var(--white);
    }
    .footer-explore-text {
      color: #cbd5e1;
      font-size: 0.88rem;
      margin-bottom: 1.5rem;
    }
    .footer-maps-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(200, 132, 58, 0.4);
      color: var(--oak);
      padding: 0.65rem 1.2rem;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-bottom: 1.2rem;
      background-color: rgba(200, 132, 58, 0.05);
    }
    .footer-maps-btn:hover {
      background-color: var(--saffron);
      border-color: var(--saffron);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(212, 114, 10, 0.25);
    }
    .footer-socials {
      margin-top: 0.5rem;
    }
    .footer-wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background-color: #25D366;
      color: var(--white);
      padding: 0.65rem 1.2rem;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .footer-wa-btn:hover {
      background-color: #128c7e;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-copy {
      color: #8898aa;
      font-size: 0.8rem;
    }
    .footer-extra-links {
      display: block;
      text-align: right;
    }
    .footer-extra-links a {
      color: #8898aa;
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s ease;
    }
    .footer-extra-links a:hover {
      color: var(--saffron);
    }

    /* ── LIGHTBOX ────────────────────────────── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
    }
    .lightbox.active { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 90vh; border-radius: 4px;
      object-fit: contain;
    }
    .lightbox-close {
      position: fixed; top: 1.5rem; right: 1.5rem;
      font-size: 2rem; color: white; cursor: pointer;
      background: none; border: none; line-height: 1;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 900px) {
      section { padding: 3.5rem 5%; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .about-grid,
      .contact-grid,
      .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .rooms-grid { grid-template-columns: 1fr; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .policies-grid { grid-template-columns: 1fr; }
      .about-img-accent { display: none; }
      .hero-om { display: none; }
      .hero-badges { flex-wrap: nowrap; overflow-x: auto; gap: 0.75rem; padding-bottom: 0.5rem; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item:first-child { grid-column: 1/3; }
      .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
      .footer-extra-links {
        text-align: center;
      }
      .top-bar-left {
        display: none;
      }
      .top-bar {
        justify-content: center;
      }
      .top-bar-right {
        gap: 0.5rem;
      }
    }

    @media (max-width: 540px) {
      section { padding: 3rem 4%; }
      nav { padding: 0 4%; }
      .hero { padding: 0 5%; }
      .hero-badges { display: none; }
      .amenities-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: 1/2; }
      .trust-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 1.5rem; }
      .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .footer-col {
        align-items: center;
        text-align: center;
      }
      .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .footer-logo-img {
        margin: 0 auto;
      }
      .footer-logo {
        justify-content: center;
      }
    }

    /* ── FLOATING BUTTONS ────────────────────── */
    .float-group {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
      display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end;
    }
    .float-btn {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.7rem 1.1rem; border-radius: 50px;
      font-size: 0.82rem; font-weight: 600;
      text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .float-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
    .float-wa {
      background: #25D366; color: #fff;
    }
    .float-call {
      background: var(--saffron); color: #fff;
    }
    .float-top {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--navy); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; cursor: pointer; border: none;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      transition: transform 0.2s, opacity 0.3s;
      opacity: 0;
    }
    .float-top.visible { opacity: 1; }
    .float-top:hover { transform: translateY(-2px); background: var(--teal); }

    @media (max-width: 540px) {
      .float-btn span.btn-label { display: none; }
      .float-btn { padding: 0.75rem; border-radius: 50%; }
      .float-btn .btn-icon { font-size: 1.3rem; }
    }
    @media (max-width: 480px) {
      .top-bar-right span:first-child,
      .top-bar-separator {
        display: none;
      }
    }
  
/* ── DYNAMIC ENHANCEMENTS ────────────────── */
.nav-links a, .nav-cta, .float-group a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  background: #b85f08;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 114, 10, 0.3);
}

img {
  max-width: 100%;
  height: auto;
}

/* Hamburger Mobile Menu Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Logo Image Styling */
.nav-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease;
}
.nav-logo-img:hover {
  transform: scale(1.04);
}

/* Footer Logo Image Styling */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.footer-logo-img:hover {
  transform: scale(1.03);
}

/* Remove default button styling for Accessibility button */
button.hamburger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
@media (max-width: 900px) {
  button.hamburger {
    display: flex;
  }
}

/* ───────────────────────────────────────────────────
   ★ INNER PAGE HERO
   ─────────────────────────────────────────────────── */
.inner-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 86px; /* offset for fixed header */
}
.inner-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.inner-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 28, 46, 0.75);
  z-index: 2;
}
.inner-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 0 1rem;
}
.inner-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.inner-hero-subtitle {
  font-size: 0.95rem;
  color: var(--light);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Active Nav Link Highlight */
.nav-links a.active {
  color: var(--saffron) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 4px;
}

/* ───────────────────────────────────────────────────
   ★ ROOM IMAGE CAROUSEL
   ─────────────────────────────────────────────────── */
.room-slider-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.room-slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.room-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
}
.room-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 28, 46, 0.6);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.room-slider-arrow:hover {
  background: rgba(15, 28, 46, 0.9);
  transform: translateY(-50%) scale(1.05);
}
.room-slider-arrow.prev { left: 10px; }
.room-slider-arrow.next { right: 10px; }

/* ───────────────────────────────────────────────────
   ★ GALLERY PAGE FILTERABLE SYSTEM
   ─────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem auto;
  padding: 0 1rem;
}
.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--ivory2);
  border: 1px solid var(--light);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--oak);
  color: var(--oak);
}
.filter-btn.active {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 4px 12px rgba(212, 114, 10, 0.25);
}
.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.gallery-grid-page .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid-page .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.gallery-grid-page .gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-grid-page .gallery-item.hidden {
  display: none;
}

/* ───────────────────────────────────────────────────
   ★ LIGHTBOX ENHANCEMENTS WITH NAV ARROWS
   ─────────────────────────────────────────────────── */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  z-index: 1010;
}
.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) scale(1.05);
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  z-index: 1010;
  background: rgba(15, 28, 46, 0.6);
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* Adjustments for responsive inner heroes & galleries */
@media (max-width: 900px) {
  .inner-hero {
    height: 220px;
    margin-top: 86px;
  }
  .inner-hero-content h1 {
    font-size: 2rem;
  }
  .gallery-grid-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
}

@media (max-width: 540px) {
  .inner-hero {
    height: 180px;
  }
  .inner-hero-content h1 {
    font-size: 1.6rem;
  }
  .inner-hero-subtitle {
    font-size: 0.8rem;
  }
  .gallery-grid-page {
    grid-template-columns: 1fr;
  }
}

/* ───────────────────────────────────────────────────
   ★ PREMIUM ADDITIONS: STICKY BOOKING BAR, FAQ & ANIMATIONS
   ─────────────────────────────────────────────────── */


/* Form Inputs Focus & Validation */
.cta-block form input:focus, 
.cta-block form select:focus, 
.cta-block form textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(212, 114, 10, 0.15);
  background-color: var(--white);
}
.cta-block form input:valid:not(:placeholder-shown),
.cta-block form select:valid:not([value=""]) {
  border-color: #2E7D8C;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232E7D8C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.25rem;
}

/* Success Modal Styling */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 46, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
  pointer-events: none;
}
.success-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.success-modal-content {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.success-modal.active .success-modal-content {
  transform: translateY(0);
}
.success-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(46, 125, 140, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}
.success-modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.success-modal-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.success-modal-close-btn {
  background-color: var(--saffron);
  color: var(--white);
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.success-modal-close-btn:hover {
  background-color: #b85f08;
  transform: translateY(-2px);
}

/* Background Gradients */
.about, .rooms {
  background: linear-gradient(to bottom, var(--ivory), var(--ivory2));
}
.policies {
  background: linear-gradient(to bottom, var(--white), var(--ivory));
}
.amenities {
  background: linear-gradient(135deg, #0b1320 0%, #1c2e4a 100%) !important;
}
.contact, .main-footer {
  background: linear-gradient(135deg, #0b1320 0%, #152238 100%) !important;
}

/* Fade-up animations */
.fade-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-up-element.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar Logo Glow */
.nav-logo-link {
  position: relative;
}
.nav-logo-link::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 5rem 8%;
  background: linear-gradient(to bottom, var(--ivory), var(--ivory2));
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: border-color 0.3s;
}
.faq-item.active {
  border-color: var(--oak);
}
.faq-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-item-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
  color: var(--oak);
}
.faq-item.active .faq-item-arrow {
  transform: rotate(180deg);
}
.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.faq-item.active .faq-item-content {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

/* ───────────────────────────────────────────────────
   ★ REACH SECTION & FLOATING BUTTON VISIBILITY OVERRIDES
   ─────────────────────────────────────────────────── */
.contact .reach-label {
  color: var(--saffron) !important;
}
.contact .reach-desc {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Ensure floating buttons are displayed on desktop too */
.float-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.18);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}
.float-wa {
  background-color: #25D366;
}
.float-wa:hover {
  background-color: #128c7e;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.float-call {
  background-color: var(--saffron);
}
.float-call:hover {
  background-color: #b85f08;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(212, 114, 10, 0.3);
}
.float-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #0b1320;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-top:hover {
  background-color: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-3px);
}

/* ───────────────────────────────────────────────────
   ★ DEDICATED BLOG & ARTICLES LAYOUT
   ─────────────────────────────────────────────────── */
.blog-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 5%;
}
.blog-article {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
}
.blog-article h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  border-left: 4px solid var(--saffron);
  padding-left: 1rem;
}
.blog-article h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
}
.blog-article p {
  line-height: 1.75;
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}
.blog-article ul, .blog-article ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--muted);
}
.blog-article li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.blog-callout {
  background: var(--ivory);
  border-left: 4px solid var(--saffron);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}
.blog-callout h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.blog-callout p {
  margin-bottom: 0;
  font-style: italic;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--light);
  padding-bottom: 0.6rem;
}
.sidebar-posts-list {
  list-style: none;
  padding: 0;
}
.sidebar-posts-list li {
  margin-bottom: 1rem;
  line-height: 1.4;
}
.sidebar-posts-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-posts-list a:hover {
  color: var(--saffron);
}
.blog-preview-section {
  padding: 5rem 8%;
  background: var(--ivory2);
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-preview-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.blog-preview-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-preview-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-preview-meta {
  font-size: 0.78rem;
  color: var(--saffron);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-preview-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.blog-preview-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.blog-preview-link {
  color: var(--saffron);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-preview-link::after {
  content: '→';
  transition: transform 0.2s;
}
.blog-preview-card:hover .blog-preview-link::after {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}
