    :root {
      --cream: #FAF7F2;
      --warm-white: #F5F0E8;
      --parchment: #EDE4D4;
      --sand: #D4C4A8;
      --gold: #B5793A;
      --gold-dark: #9A6230;
      --terracotta: #8B3A1D;
      --brown-deep: #3D2410;
      --brown-darker: #120D07;
      --text-primary: #1A1208;
      --text-muted: #6B5B45;
      --text-light: #9C8B74;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lato', sans-serif;
      background-color: var(--cream);
      color: var(--text-primary);
      -webkit-font-smoothing: antialiased;
    }

    .font-serif {
      font-family: 'Cormorant Garamond', Georgia, serif !important;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--sand);
      border-radius: 3px;
    }

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

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

    .fade-up {
      animation: fadeUp 0.9s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.15s;
      opacity: 0;
    }

    .delay-2 {
      animation-delay: 0.32s;
      opacity: 0;
    }

    .delay-3 {
      animation-delay: 0.50s;
      opacity: 0;
    }

    .delay-4 {
      animation-delay: 0.68s;
      opacity: 0;
    }

    .img-zoom {
      overflow: hidden;
    }

    .img-zoom img {
      display: block;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .img-zoom:hover img {
      transform: scale(1.07);
    }

    .section-label {
      font-family: 'Lato', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .btn-outline {
      display: inline-block;
      padding: 13px 38px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Lato', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease;
      cursor: pointer;
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: #fff;
    }

    .btn-solid {
      display: inline-block;
      padding: 13px 38px;
      background: var(--gold);
      color: #fff;
      font-family: 'Lato', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s ease;
      cursor: pointer;
      border: 1px solid var(--gold);
    }

    .btn-solid:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
    }

    /* ===== NAVBAR ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.5s ease;
    }

    header.scrolled {
      background: var(--cream);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
      border-bottom: 1px solid var(--parchment);
    }

    .navbar-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    @media (min-width: 1024px) {
      .navbar-container {
        padding: 0 3rem;
      }
    }

    .navbar-logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      text-decoration: none;
      color: #fff;
    }

    header.scrolled .navbar-logo {
      color: var(--text-primary);
    }

    .navbar-logo-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.25rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.02em;
      transition: color 0.3s ease;
    }

    .navbar-logo-subtitle {
      font-size: 0.56rem;
      font-weight: 300;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      opacity: 0.75;
      transition: opacity 0.3s ease;
      margin-top: 0.2rem;
    }

    header.scrolled .navbar-logo-subtitle {
      color: var(--gold);
      opacity: 1;
    }

    nav {
      display: none;
      align-items: center;
      gap: 2.5rem;
    }

    @media (min-width: 1024px) {
      nav {
        display: flex;
      }
    }

    nav a {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.3s ease;
      color: rgba(255, 255, 255, 0.85);
    }

    header.scrolled nav a {
      color: var(--text-muted);
    }

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

    .nav-instagram {
      display: none;
      align-items: center;
      justify-content: center;
      width: 17px;
      height: 17px;
      transition: opacity 0.3s ease;
    }

    @media (min-width: 1024px) {
      .nav-instagram {
        display: flex;
      }
    }

    nav a.nav-instagram {
      color: rgba(255, 255, 255, 0.85);
    }

    header.scrolled nav a.nav-instagram {
      color: var(--text-muted);
    }

    nav a.nav-instagram:hover {
      opacity: 0.7;
      color: var(--text-muted);
    }

    .btn-book {
      display: none;
    }

    @media (min-width: 1024px) {
      .btn-book {
        display: inline-block;
        padding: 13px 38px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        color: rgba(255, 255, 255, 0.9);
        font-family: 'Lato', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        background: transparent;
      }

      header.scrolled .btn-book {
        border-color: var(--gold);
        color: var(--gold);
      }

      .btn-book:hover {
        background: var(--gold);
        color: #fff;
      }
    }

    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      width: 22px;
      height: 22px;
      transition: color 0.3s ease;
      color: #fff;
    }

    header.scrolled .mobile-menu-btn {
      color: var(--text-primary);
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: var(--cream);
      border-top: 1px solid var(--parchment);
      padding: 1.5rem;
      flex-direction: column;
      gap: 1.25rem;
      z-index: 40;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--text-muted);
      transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
      color: var(--gold);
    }

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

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://sitarambhawan.com/wp-content/uploads/2026/04/amoli-banner-1753791250.jpg');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.6) 100%
      );
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 1.5rem;
      max-width: 56rem;
      margin: 0 auto;
    }

    .hero-label {
      color: rgba(210, 185, 145, 0.95);
      margin-bottom: 1.25rem;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 3rem;
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      color: #fff;
      letter-spacing: 0.02em;
    }

    @media (min-width: 640px) {
      .hero-title {
        font-size: 3.75rem;
      }
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 4.5rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 5.5rem;
      }
    }

    .hero-title em {
      font-style: italic;
      font-weight: 300;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      justify-content: center;
      margin: 1.5rem auto;
      max-width: 280px;
      color: rgba(210, 185, 145, 0.6);
    }

    .hero-divider-star {
      font-size: 1.125rem;
      color: rgba(210, 185, 145, 0.8);
    }

    .hero-subtitle {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 2.5rem;
      color: rgba(255, 255, 255, 0.82);
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      letter-spacing: 0.02em;
    }

    @media (min-width: 640px) {
      .hero-subtitle {
        font-size: 1.125rem;
      }
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 640px) {
      .hero-buttons {
        flex-direction: row;
      }
    }

    .hero-buttons .btn-outline {
      border-color: rgba(255, 255, 255, 0.65);
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-buttons .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .hero-scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0.6;
      transition: opacity 0.3s ease;
      text-decoration: none;
      color: #fff;
      z-index: 10;
    }

    .hero-scroll-cue:hover {
      opacity: 1;
    }

    .hero-scroll-label {
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
    }

    .hero-scroll-arrow {
      display: inline-block;
      animation: bounce 2s ease-in-out infinite;
    }

    /* ===== ABOUT ===== */
    .about {
      padding: 6rem 1.5rem;
      background-color: var(--cream);
    }

    @media (min-width: 1024px) {
      .about {
        padding: 8rem 3rem;
      }
    }

    .about-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 6rem;
    }

    @media (min-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
      }
    }

    .about-text h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.25rem;
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 2rem;
      color: var(--text-primary);
    }

    @media (min-width: 640px) {
      .about-text h2 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .about-text h2 {
        font-size: 3.75rem;
      }
    }

    .about-text h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 1.5rem;
      color: var(--text-muted);
    }

    .about-image {
      border-radius: 0.125rem;
      overflow: hidden;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      aspect-ratio: 4/5;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-pillars {
      padding: 3.5rem 2.5rem;
      border-radius: 0.125rem;
      background: var(--warm-white);
      border: 1px solid var(--parchment);
    }

    @media (min-width: 1024px) {
      .about-pillars {
        padding: 4rem;
      }
    }

    .about-pillars-title {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .about-pillars-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    @media (min-width: 640px) {
      .about-pillars-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1024px) {
      .about-pillars-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .pillar {
      transition: all 0.3s ease;
    }

    .pillar-line {
      width: 32px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 1.25rem;
      transition: width 0.3s ease;
    }

    .pillar:hover .pillar-line {
      width: 56px;
    }

    .pillar h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .pillar p {
      font-size: 0.875rem;
      line-height: 1.5;
      color: var(--text-muted);
    }

    /* ===== ROOMS ===== */
    .rooms {
      background: var(--brown-deep);
      padding: 6rem 1.5rem;
    }

    @media (min-width: 1024px) {
      .rooms {
        padding: 8rem 3rem;
      }
    }

    .rooms-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .rooms-heading {
      text-align: center;
      margin-bottom: 4rem;
    }

    .rooms-heading-label {
      color: rgba(181, 121, 58, 0.9);
      margin-bottom: 1rem;
    }

    .rooms-heading h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.25rem;
      font-weight: 300;
      color: #f5efe4;
      letter-spacing: 0.01em;
      line-height: 1.15;
    }

    @media (min-width: 640px) {
      .rooms-heading h2 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .rooms-heading h2 {
        font-size: 3.75rem;
      }
    }

    .rooms-heading h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .rooms-main {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      margin-bottom: 4rem;
      overflow: hidden;
      border-radius: 0.125rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    @media (min-width: 1024px) {
      .rooms-main {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }
    }

    .rooms-image {
      min-height: 420px;
      overflow: hidden;
    }

    .rooms-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .rooms-info {
      background: #2a1a0d;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (min-width: 1024px) {
      .rooms-info {
        padding: 3.5rem;
      }
    }

    .rooms-info-label {
      color: rgba(181, 121, 58, 0.9);
      margin-bottom: 0.75rem;
    }

    .rooms-info h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.875rem;
      font-weight: 400;
      color: #f5efe4;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 1024px) {
      .rooms-info h3 {
        font-size: 2.25rem;
      }
    }

    .rooms-info-count {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      margin-bottom: 1.5rem;
      color: var(--gold);
    }

    .rooms-info p {
      font-size: 0.875rem;
      line-height: 1.5;
      margin-bottom: 2rem;
      color: rgba(210, 185, 145, 0.7);
    }

    .rooms-amenities {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
    }

    @media (min-width: 640px) {
      .rooms-amenities {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1.5rem;
      }
    }

    .amenity {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .amenity-star {
      color: var(--gold);
      font-size: 0.625rem;
      margin-top: 0.3rem;
      flex-shrink: 0;
    }

    .amenity-text {
      font-size: 0.75rem;
      line-height: 1.5;
      color: rgba(210, 185, 145, 0.75);
    }

    .rooms-gallery {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .rooms-gallery {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .room-gallery-item {
      border-radius: 0.125rem;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
    }

    .room-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .room-gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 18, 8, 0.75), transparent);
      display: flex;
      align-items: flex-end;
      padding: 1.25rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .room-gallery-item:hover .room-gallery-overlay {
      opacity: 1;
    }

    .room-gallery-label {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.125rem;
      font-style: italic;
      color: #f5efe4;
    }

    /* ===== EXPERIENCE ===== */
    .experience {
      padding: 6rem 1.5rem;
      background: var(--warm-white);
    }

    @media (min-width: 1024px) {
      .experience {
        padding: 8rem 3rem;
      }
    }

    .experience-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .experience-heading {
      text-align: center;
      margin-bottom: 5rem;
    }

    .experience-heading h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.15;
    }

    @media (min-width: 640px) {
      .experience-heading h2 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .experience-heading h2 {
        font-size: 3.75rem;
      }
    }

    .experience-heading h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .experience-items {
      display: flex;
      flex-direction: column;
      gap: 5rem;
    }

    .experience-item {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .experience-item {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
    }

    .experience-item.reverse .experience-image {
      order: 2;
    }

    .experience-image {
      border-radius: 0.125rem;
      overflow: hidden;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
      aspect-ratio: 16/10;
    }

    .experience-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .experience-text-label {
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .experience-text h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.875rem;
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.25;
      margin-bottom: 1.25rem;
    }

    @media (min-width: 1024px) {
      .experience-text h3 {
        font-size: 2.25rem;
      }
    }

    .experience-text-line {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 1.5rem;
    }

    .experience-text p {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--text-muted);
    }

    /* ===== GALLERY ===== */
    .gallery {
      padding: 6rem 1.5rem;
      background: var(--cream);
    }

    @media (min-width: 1024px) {
      .gallery {
        padding: 8rem 3rem;
      }
    }

    .gallery-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .gallery-heading {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .gallery-heading h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--text-primary);
    }

    @media (min-width: 640px) {
      .gallery-heading h2 {
        font-size: 3rem;
      }
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      grid-auto-rows: 200px;
      margin-bottom: 2.5rem;
    }

    @media (max-width: 1023px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 0.5rem;
      }
    }

    @media (max-width: 639px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
      }
    }

    .gallery-item {
      border-radius: 0.125rem;
      overflow: hidden;
    }

    .gallery-item.span-2-col {
      grid-column: span 2;
    }

    .gallery-item.span-2-row {
      grid-row: span 2;
    }

    @media (max-width: 1023px) {
      .gallery-item.span-2-col,
      .gallery-item.span-2-row {
        grid-column: span 1;
        grid-row: span 1;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 639px) {
      .gallery-item.span-2-col,
      .gallery-item.span-2-row {
        grid-column: span 1;
        grid-row: span 1;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-cta {
      text-align: center;
    }

    /* ===== CONTACT ===== */
    .contact {
      padding: 6rem 1.5rem;
      background: var(--parchment);
    }

    @media (min-width: 1024px) {
      .contact {
        padding: 8rem 3rem;
      }
    }

    .contact-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
    }

    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
      }
    }

    .contact-info h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.1;
      margin-bottom: 2rem;
    }

    @media (min-width: 640px) {
      .contact-info h2 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .contact-info h2 {
        font-size: 3.75rem;
      }
    }

    .contact-info h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .contact-info p {
      font-size: 0.875rem;
      line-height: 1.9;
      margin-bottom: 2.5rem;
      color: var(--text-muted);
      max-width: 380px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: opacity 0.3s ease;
    }

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

    .contact-detail-icon {
      width: 16px;
      height: 16px;
      color: var(--gold);
      margin-top: 4px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-detail-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 0.25rem;
      color: var(--text-light);
      display: block;
    }

    .contact-detail a {
      font-size: 0.875rem;
      line-height: 1.5;
      color: var(--text-muted);
      text-decoration: none;
      transition: text-decoration 0.3s ease;
    }

    .contact-detail a:hover {
      text-decoration: underline;
    }

    .contact-form-container {
      padding: 2.5rem;
      border-radius: 0.125rem;
      background: var(--cream);
    }

    @media (min-width: 1024px) {
      .contact-form-container {
        padding: 3rem;
      }
    }

    .contact-form h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-size: 1.5rem;
      margin-bottom: 1.75rem;
      color: var(--text-primary);
    }

    .form-group {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 1.75rem;
    }

    @media (min-width: 640px) {
      .form-group.grid-2 {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-field {
      position: relative;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--sand);
      padding: 0.75rem 0;
      font-size: 0.875rem;
      color: var(--text-primary);
      font-family: 'Lato', sans-serif;
      outline: none;
      transition: border-color 0.3s ease;
      resize: none;
    }

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

    .form-field input::placeholder,
    .form-field select::placeholder,
    .form-field textarea::placeholder {
      color: var(--text-light);
    }

    .form-field select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%236B5B45' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 4px center;
      padding-right: 20px;
    }

    .contact-form button {
      margin-top: 0.5rem;
      text-align: center;
    }

    .form-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px;
      text-align: center;
    }

    .form-success-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--parchment);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 22px;
      color: var(--gold);
    }

    .form-success h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }

    .form-success p {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--brown-darker);
      color: rgba(210, 185, 145, 0.6);
    }

    .footer-main {
      max-width: 80rem;
      margin: 0 auto;
      padding: 4rem 1.5rem 2.5rem;
    }

    @media (min-width: 1024px) {
      .footer-main {
        padding: 4rem 3rem 2.5rem;
      }
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    .footer-section h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      font-weight: 400;
      color: #f5efe4;
    }

    .footer-section-label {
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      color: var(--gold);
    }

    .footer-section p {
      font-size: 0.875rem;
      line-height: 1.5;
      margin-bottom: 1.25rem;
      color: rgba(210, 185, 145, 0.55);
      max-width: 280px;
    }

    .footer-nav {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-nav a {
      font-size: 0.875rem;
      text-decoration: none;
      color: rgba(210, 185, 145, 0.55);
      transition: color 0.3s ease;
    }

    .footer-nav a:hover {
      color: #f5efe4;
    }

    .footer-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
      transition: opacity 0.3s ease;
    }

    .footer-detail:hover {
      opacity: 0.8;
    }

    .footer-detail a {
      color: rgba(210, 185, 145, 0.55);
      text-decoration: none;
      font-size: 0.875rem;
      line-height: 1.5;
      transition: color 0.3s ease;
    }

    .footer-detail a:hover {
      color: #f5efe4;
    }

    .footer-divider {
      border-top: 1px solid rgba(210, 185, 145, 0.1);
      margin-bottom: 2rem;
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 640px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: rgba(210, 185, 145, 0.3);
    }
  