    :root {
      --gold: #c9a96e;
      --gold-dark: #a07840;
      --gold-light: #e8d5b0;
      --cream: #faf7f2;
      --ivory: #f5f0e8;
      --warm-white: #fefcf8;
      --charcoal: #2a2a2a;
      --muted: #7a7167;
      --border: rgba(201, 169, 110, .25);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Playfair Display', serif;
    }

    a {
      text-decoration: none;
    }

    /* NAVBAR */

    .navbar {
      background: rgba(250, 247, 242, .96) !important;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--charcoal) !important;
    }

    .navbar-brand em {
      font-style: italic;
    }

    .navbar-brand span {
      color: var(--gold);
    }

    .nav-link {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted) !important;
      transition: .3s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--gold-dark) !important;
    }

    .btn-gold {
      background: var(--gold);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 10px 22px;
      border: none;
      border-radius: 0;
      transition: .3s;
    }

    .btn-gold:hover {
      background: var(--gold-dark);
      color: #fff;
    }

    /* HERO */

    .page-hero {
      background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover no-repeat;
      position: relative;
      padding: 150px 0 72px;
      text-align: center;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(250, 247, 242, .87);
    }

    .page-hero .inner {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .page-title {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 400;
      line-height: 1.1;
    }

    .page-title em {
      color: var(--gold-dark);
      font-style: italic;
    }

    .gold-rule {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 18px auto;
    }

    .page-sub {
      max-width: 540px;
      margin: auto;
      font-size: 13px;
      line-height: 1.9;
      color: var(--muted);
    }

    /* SECTION */

    .booking-section {
      padding: 80px 0;
    }

    /* FORM */

    .form-card {
      background: var(--warm-white);
      padding: 48px 40px;
    }

    .form-card-title {
      font-size: 24px;
      margin-bottom: 6px;
    }

    .form-card-title em {
      color: var(--gold-dark);
      font-style: italic;
    }

    .form-rule {
      width: 28px;
      height: 1px;
      background: var(--gold);
      margin: 14px 0 24px;
    }

    .form-card-sub {
      font-size: 13px;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 30px;
    }

    .form-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 7px;
    }

    .form-control,
    .form-select {
      border: 1px solid var(--border);
      border-radius: 0;
      background: var(--cream);
      padding: 13px 14px;
      font-size: 13px;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--gold);
      background: #fff;
      box-shadow: none;
    }

    textarea {
      resize: none;
    }

    .btn-submit {
      width: 100%;
      background: var(--charcoal);
      color: #fff;
      border: none;
      border-radius: 0;
      padding: 15px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: .3s;
    }

    .btn-submit:hover {
      background: var(--gold-dark);
    }

    /* SIDEBAR */

    .info-card {
      background: var(--ivory);
      padding: 38px 32px;
      height: 100%;
    }

    .info-title {
      font-size: 22px;
    }

    .info-title em {
      color: var(--gold-dark);
      font-style: italic;
    }

    .info-rule {
      width: 26px;
      height: 1px;
      background: var(--gold);
      margin: 14px 0 24px;
    }

    .contact-method {
      display: flex;
      gap: 14px;
      align-items: center;
      padding: 16px 18px;
      background: var(--warm-white);
      margin-bottom: 10px;
      border-left: 2px solid transparent;
      transition: .3s;
    }

    .contact-method:hover {
      border-left-color: var(--gold);
    }

    .contact-method-icon {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ivory);
      border: 1px solid var(--border);
      color: var(--gold);
    }

    .contact-method-label {
      display: block;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
    }

    .contact-method-value {
      font-size: 13px;
      color: var(--charcoal);
    }

    .contact-method-value a {
      color: var(--charcoal);
    }

    .contact-method-value a:hover {
      color: var(--gold-dark);
    }

    /* HOURS */

    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 12px;
    }

    .hours-row:last-child {
      border-bottom: none;
    }

    .hours-day {
      color: var(--muted);
    }

    .hours-time {
      color: var(--charcoal);
    }

    /* SOCIAL */

    .social-btn {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(201, 169, 110, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: .3s;
    }

    .social-btn:hover {
      background: var(--gold);
      color: #fff;
    }

    /* WHATSAPP FLOAT */

    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 28px;
      z-index: 999;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    }

    .whatsapp-float:hover {
      color: #fff;
      transform: translateY(-3px);
    }

    /* FOOTER */

    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, .6);
      padding: 60px 0 22px;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: #fff;
      margin-bottom: 10px;
    }

    .footer-brand span {
      color: var(--gold);
    }

    .footer-tagline {
      max-width: 250px;
      line-height: 1.9;
      font-size: 13px;
    }

    .footer-gold-rule {
      width: 26px;
      height: 1px;
      background: var(--gold);
      margin: 18px 0;
    }

    .footer-contact {
      line-height: 2.2;
      font-size: 13px;
    }

    .footer-contact a {
      color: rgba(255, 255, 255, .6);
    }

    .footer-h {
      color: #fff;
      font-size: 16px;
      margin-bottom: 16px;
      font-family: 'Playfair Display', serif;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-top: 40px;
      padding-top: 22px;
    }

    @media(max-width:767px) {

      .booking-section {
        padding: 55px 0;
      }

      .form-card {
        padding: 30px 22px;
      }

      .info-card {
        margin-top: 18px;
        padding: 30px 22px;
      }

    }