*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --cream: #faf7f2;
      --warm-white: #fffef9;
      --charcoal: #1a1a1a;
      --dark: #2c2c2c;
      --mid: #5a5a5a;
      --light: #9a9a9a;
      --border: #e8e2d9;
      --accent: #8b6f47;
      --accent-light: #c4a882;
      --accent-dark: #6b5235;
      --green: #4a7c59;
      --green-light: #e8f2eb;
      --red: #c0392b;
      --red-light: #fdecea;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
      --radius: 16px;
      --radius-sm: 8px;
      --radius-lg: 24px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all .3s;
    }

    nav.scrolled {
      background: rgba(250, 247, 242, 0.96);
      backdrop-filter: blur(12px);
      padding: 14px 40px;
      box-shadow: var(--shadow-sm);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      transition: color .3s;
    }

    nav.scrolled .nav-logo {
      color: var(--charcoal);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, .9);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      letter-spacing: .03em;
      transition: color .2s;
    }

    nav.scrolled .nav-links a {
      color: var(--mid);
    }

    .nav-links a:hover {
      color: var(--accent-light);
    }

    nav.scrolled .nav-links a:hover {
      color: var(--accent);
    }

    .nav-cta {
      background: var(--accent);
      color: #fff !important;
      padding: 9px 22px;
      border-radius: 50px;
    }

    .nav-cta:hover {
      background: var(--accent-dark) !important;
    }

    @media(max-width:768px) {
      nav {
        padding: 16px 20px;
      }

      nav.scrolled {
        padding: 12px 20px;
      }

      .nav-links {
        display: none;
      }
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 26, 26, .65) 0%, rgba(26, 26, 26, .35) 60%, rgba(26, 26, 26, .55) 100%)
        center/cover no-repeat fixed;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 120px 40px 80px;
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: 60px;
      align-items: center;
    }

    .hero-text {
      color: #fff;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .25);
      color: rgba(255, 255, 255, .95);
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    }

    .hero-title span {
      color: var(--accent-light);
    }

    .hero-desc {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .85);
      max-width: 500px;
      margin-bottom: 36px;
      font-weight: 300;
      line-height: 1.75;
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, .2);
      color: rgba(255, 255, 255, .95);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 500;
    }

    .hero-feature svg {
      width: 15px;
      height: 15px;
    }

    @media(max-width:1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        max-width: 600px;
      }
    }

    @media(max-width:768px) {
      .hero-content {
        padding: 100px 20px 60px;
      }
    }

    /* BOOKING CARD */
    .booking-card {
      background: var(--warm-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: visible;
      border: 1px solid var(--border);
      animation: fadeInUp .7s .3s ease both;
    }

    .booking-card-header {
      background: var(--accent);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .booking-card-header h3 {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
    }

    .booking-price-tag {
      color: rgba(255, 255, 255, .85);
      font-size: .8rem;
      text-align: right;
    }

    .booking-price-tag strong {
      display: block;
      font-size: 1.3rem;
      color: #fff;
      font-family: 'Playfair Display', serif;
    }

    .booking-body {
      padding: 24px 28px;
    }

    /* FORM */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 14px;
    }

    .form-group {
      margin-bottom: 14px;
    }

    .form-group label {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 7px;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      color: var(--dark);
      background: #fff;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(139, 111, 71, .12);
    }

    .date-display {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      color: var(--dark);
      background: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: border-color .2s, box-shadow .2s;
      user-select: none;
    }

    .date-display:hover {
      border-color: var(--accent-light);
    }

    .date-display.has-value {
      color: var(--dark);
      font-weight: 500;
    }

    .date-display.placeholder {
      color: var(--light);
    }

    .date-display svg {
      width: 16px;
      height: 16px;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* GUEST COUNTER */
    .guest-counter {
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 8px 14px;
      background: #fff;
      transition: border-color .2s;
    }

    .guest-counter:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(139, 111, 71, .12);
    }

    .gc-btn {
      background: none;
      border: none;
      cursor: pointer;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--cream);
      color: var(--accent);
      font-size: 1.1rem;
      font-weight: 700;
      transition: all .2s;
      flex-shrink: 0;
    }

    .gc-btn:hover {
      background: var(--accent);
      color: #fff;
    }

    .gc-btn:disabled {
      opacity: .3;
      cursor: not-allowed;
    }

    .gc-label {
      flex: 1;
      text-align: center;
      font-weight: 600;
      font-size: .95rem;
      color: var(--dark);
    }

    /* RES TYPE */
    .res-type-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .res-type-option {
      position: relative;
    }

    .res-type-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .res-type-label {
      display: block;
      padding: 10px 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all .2s;
      background: #fff;
    }

    .res-type-option input:checked+.res-type-label {
      border-color: var(--accent);
      background: rgba(139, 111, 71, .06);
    }

    .res-type-name {
      font-size: .8rem;
      font-weight: 600;
      color: var(--dark);
      display: block;
      margin-bottom: 2px;
    }

    .res-type-desc {
      font-size: .7rem;
      color: var(--light);
      line-height: 1.4;
    }

    .res-type-badge {
      display: inline-block;
      background: var(--green);
      color: #fff;
      font-size: .65rem;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
      margin-top: 4px;
    }

    /* PRICE SUMMARY */
    .price-summary {
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      margin-bottom: 16px;
      border: 1px solid var(--border);
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .85rem;
      color: var(--mid);
      margin-bottom: 6px;
    }

    .price-row:last-child {
      margin-bottom: 0;
    }

    .price-row.total {
      border-top: 1px solid var(--border);
      margin-top: 8px;
      padding-top: 8px;
      font-weight: 700;
      font-size: 1rem;
      color: var(--dark);
    }

    .price-row.total span:last-child {
      color: var(--accent);
    }

    .price-loading {
      text-align: center;
      color: var(--light);
      font-size: .82rem;
      padding: 8px 0;
    }

    /* BUTTONS */
    .btn-book {
      width: 100%;
      padding: 15px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-book:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(139, 111, 71, .35);
    }

    .btn-book:disabled {
      background: var(--light);
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .booking-note {
      text-align: center;
      font-size: .73rem;
      color: var(--light);
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    /* INLINE CALENDAR */
    .cal-inline-wrap {
      position: relative;
    }

    .cal-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 400;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      padding: 20px;
      width: 680px;
      max-width: 95vw;
    }

    .cal-dropdown.open {
      display: block;
    }

    .cal-dropdown-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .cal-dropdown-hint {
      font-size: .78rem;
      color: var(--accent);
      font-weight: 600;
      text-align: center;
      flex: 1;
    }

    .cal-nav-btn {
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--mid);
      transition: all .2s;
      flex-shrink: 0;
    }

    .cal-nav-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .cal-months-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .cal-month-name {
      font-weight: 600;
      font-size: .88rem;
      color: var(--dark);
      text-align: center;
      margin-bottom: 10px;
      font-family: 'Playfair Display', serif;
    }

    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 4px;
    }

    .cal-weekday {
      text-align: center;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--light);
      text-transform: uppercase;
      padding: 3px 0;
    }

    .cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .cal-day {
      aspect-ratio: 1;
      min-width: 32px;
      min-height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .78rem;
      border-radius: 6px;
      cursor: pointer;
      transition: all .12s;
      position: relative;
      font-weight: 500;
      color: var(--dark);
      user-select: none;
    }

    .cal-day:hover:not(.disabled):not(.occupied):not(.past) {
      background: rgba(139, 111, 71, .15);
      color: var(--accent);
    }

    .cal-day.past,
    .cal-day.disabled {
      color: var(--border);
      cursor: not-allowed;
    }

    .cal-day.occupied {
      background: var(--red-light);
      color: var(--red);
      cursor: not-allowed;
      font-size: .68rem;
    }

    .cal-day.start {
      background: var(--accent) !important;
      color: #fff !important;
      font-weight: 700;
      border-radius: 6px 0 0 6px;
    }

    .cal-day.end {
      background: var(--accent) !important;
      color: #fff !important;
      font-weight: 700;
      border-radius: 0 6px 6px 0;
    }

    .cal-day.start.end {
      border-radius: 6px;
    }

    .cal-day.in-range {
      background: rgba(139, 111, 71, .12);
      color: var(--accent);
      border-radius: 0;
    }

    .cal-day.hover-range {
      background: rgba(139, 111, 71, .07);
      border-radius: 0;
    }

    .cal-day.today::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--accent);
    }

    .cal-day.today.start::after,
    .cal-day.today.end::after {
      background: rgba(255, 255, 255, .6);
    }

    .cal-legend {
      display: flex;
      gap: 16px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }

    .cal-legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .72rem;
      color: var(--mid);
    }

    .cal-legend-dot {
      width: 12px;
      height: 12px;
      border-radius: 3px;
    }

    @media(max-width:640px) {
      .cal-months-grid {
        grid-template-columns: 1fr;
      }

      .cal-dropdown {
        width: 340px;
      }
    }

    /* QR MODAL */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 300;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
    }

    .overlay.open {
      display: flex;
    }

    .qr-modal {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 36px;
      width: 480px;
      max-width: 95vw;
      box-shadow: var(--shadow-lg);
      text-align: center;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--mid);
      padding: 6px;
      border-radius: 8px;
      display: flex;
      transition: background .2s;
    }

    .modal-close:hover {
      background: var(--cream);
    }

    .qr-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 24px;
    }

    .qr-step {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      font-weight: 700;
    }

    .qr-step.done {
      background: var(--green);
      color: #fff;
    }

    .qr-step.active {
      background: var(--accent);
      color: #fff;
    }

    .qr-step.pending {
      background: var(--border);
      color: var(--mid);
    }

    .qr-step-line {
      width: 36px;
      height: 2px;
      background: var(--border);
    }

    .qr-step-line.done {
      background: var(--green);
    }

    .qr-modal h3 {
      font-size: 1.4rem;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .qr-modal>p {
      color: var(--mid);
      font-size: .88rem;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .qr-summary {
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      margin-bottom: 20px;
      text-align: left;
      border: 1px solid var(--border);
    }

    .qr-sum-row {
      display: flex;
      justify-content: space-between;
      font-size: .83rem;
      color: var(--mid);
      margin-bottom: 5px;
    }

    .qr-sum-row:last-child {
      margin-bottom: 0;
    }

    .qr-sum-row.total {
      border-top: 1px solid var(--border);
      margin-top: 8px;
      padding-top: 8px;
      font-weight: 700;
      font-size: .95rem;
      color: var(--dark);
    }

    .qr-sum-row.total span:last-child {
      color: var(--accent);
    }

    .qr-code-box {
      width: 180px;
      height: 180px;
      background: #fff;
      border: 3px solid var(--accent);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      box-shadow: var(--shadow-md);
      margin: 0 auto 16px;
    }

    .qr-code-box canvas {
      width: 100% !important;
      height: 100% !important;
    }

    .qr-bank-info {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 14px;
      margin-bottom: 16px;
      text-align: left;
    }

    .qr-bank-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .82rem;
      color: var(--mid);
      margin-bottom: 5px;
    }

    .qr-bank-row:last-child {
      margin-bottom: 0;
    }

    .qr-bank-row strong {
      color: var(--dark);
    }

    .copy-btn {
      background: none;
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 2px 7px;
      font-size: .7rem;
      cursor: pointer;
      color: var(--accent);
      font-weight: 600;
      transition: all .2s;
    }

    .copy-btn:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    .qr-timer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #fff8e1;
      border: 1px solid #ffe082;
      border-radius: var(--radius-sm);
      padding: 9px 14px;
      font-size: .82rem;
      color: #795548;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .qr-timer svg {
      width: 15px;
      height: 15px;
      color: #f57c00;
    }

    .timer-val {
      font-weight: 700;
      color: #e65100;
      font-variant-numeric: tabular-nums;
    }

    .btn-confirm {
      width: 100%;
      padding: 13px;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: .92rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-confirm:hover {
      background: #3d6b4a;
      transform: translateY(-1px);
    }

    .qr-note {
      font-size: .72rem;
      color: var(--light);
      margin-top: 10px;
    }

    /* SUCCESS MODAL */
    .success-modal {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 48px 36px;
      width: 420px;
      max-width: 95vw;
      box-shadow: var(--shadow-lg);
      text-align: center;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      background: var(--green-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .success-icon svg {
      width: 36px;
      height: 36px;
      color: var(--green);
    }

    .success-modal h3 {
      font-size: 1.6rem;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .success-modal p {
      color: var(--mid);
      font-size: .9rem;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .btn-secondary {
      padding: 12px 28px;
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }

    .btn-secondary:hover {
      background: var(--accent);
      color: #fff;
    }

    /* SECTIONS */
    .section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--dark);
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--mid);
      max-width: 560px;
      line-height: 1.75;
    }

    @media(max-width:768px) {
      .section {
        padding: 70px 20px;
      }
    }

    /* TRUST BAR */
    .trust-bar {
      background: var(--accent);
      padding: 32px 40px;
    }

    .trust-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .trust-item svg {
      width: 26px;
      height: 26px;
      color: var(--accent-light);
      flex-shrink: 0;
    }

    .trust-item-text strong {
      display: block;
      font-size: .95rem;
      color: #fff;
      font-weight: 600;
    }

    .trust-item-text span {
      font-size: .78rem;
      color: rgba(255, 255, 255, .75);
    }

    @media(max-width:768px) {
      .trust-bar {
        padding: 24px 20px;
      }
    }

    /* PERKS */
    .perks-section {
      background: var(--warm-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .perks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    .perk-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid var(--border);
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .perk-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .perk-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .perk-card:hover::before {
      transform: scaleX(1);
    }

    .perk-icon {
      width: 52px;
      height: 52px;
      background: rgba(139, 111, 71, .1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--accent);
    }

    .perk-icon svg {
      width: 26px;
      height: 26px;
    }

    .perk-card h3 {
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .perk-card p {
      font-size: .87rem;
      color: var(--mid);
      line-height: 1.7;
    }

    @media(max-width:1024px) {
      .perks-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:640px) {
      .perks-grid {
        grid-template-columns: 1fr;
      }
    }

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 260px 260px;
      gap: 12px;
      margin-top: 60px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
    }

    .gallery-item:first-child {
      grid-row: 1/3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    @media(max-width:1024px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
      }

      .gallery-item:first-child {
        grid-row: 1;
      }
    }

    @media(max-width:640px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
      }
    }

    /* LOCATION */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }

    .location-map {
      background: #e8e2d9;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 380px;
      box-shadow: var(--shadow-md);
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: saturate(.8) contrast(1.05);
    }

    .location-points {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 28px;
    }

    .location-point {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: #fff;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      transition: all .2s;
    }

    .location-point:hover {
      border-color: var(--accent-light);
      box-shadow: var(--shadow-sm);
    }

    .lp-icon {
      width: 38px;
      height: 38px;
      background: rgba(139, 111, 71, .1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
    }

    .lp-icon svg {
      width: 18px;
      height: 18px;
    }

    .lp-text h4 {
      font-size: .87rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 2px;
      font-family: 'Inter', sans-serif;
    }

    .lp-text p {
      font-size: .78rem;
      color: var(--mid);
    }

    .lp-time {
      margin-left: auto;
      font-size: .78rem;
      font-weight: 700;
      color: var(--accent);
      white-space: nowrap;
    }

    @media(max-width:1024px) {
      .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* FOOTER */
    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, .7);
      padding: 60px 40px 32px;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: .85rem;
      line-height: 1.7;
      max-width: 300px;
      color: rgba(255, 255, 255, .5);
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
      font-size: .85rem;
    }

    .footer-col a {
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--accent-light);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: .78rem;
      color: rgba(255, 255, 255, .3);
    }

    @media(max-width:1024px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:640px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }
    }

    /* TOAST */
    .toast {
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: var(--dark);
      color: #fff;
      padding: 13px 18px;
      border-radius: var(--radius-sm);
      font-size: .86rem;
      box-shadow: var(--shadow-lg);
      z-index: 500;
      transform: translateY(80px);
      opacity: 0;
      transition: all .3s;
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 300px;
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    .toast.success {
      background: var(--green);
    }

    .toast.error {
      background: var(--red);
    }

    .toast svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* SCROLL TOP */
    .scroll-top {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 42px;
      height: 42px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-md);
      opacity: 0;
      transform: translateY(16px);
      transition: all .3s;
      z-index: 50;
    }

    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-top:hover {
      background: var(--accent-dark);
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .animate-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .animate-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-text>* {
      animation: fadeInUp .7s ease both;
    }

    .hero-text>*:nth-child(1) {
      animation-delay: .1s
    }

    .hero-text>*:nth-child(2) {
      animation-delay: .2s
    }

    .hero-text>*:nth-child(3) {
      animation-delay: .3s
    }

    .hero-text>*:nth-child(4) {
      animation-delay: .4s
    }

.terms-modal {
      background: var(--warm-white);
      border-radius: var(--radius-lg);
      max-width: 580px;
      width: 95vw;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0,0,0,.25);
      position: relative;
      animation: fadeInUp .35s ease;
    }
    .terms-close {
      position: absolute; top: 16px; right: 16px;
      background: var(--cream); border: 1px solid var(--border);
      border-radius: 50%; width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--mid); transition: all .2s; z-index: 2;
    }
    .terms-close:hover { background: var(--red-light); color: var(--red); border-color: var(--red); }
    .terms-header {
      padding: 32px 32px 20px; text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .terms-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 6px;
    }
    .terms-header p { font-size: .88rem; color: var(--light); }
    .terms-body { padding: 24px 32px 32px; }
    .terms-card {
      display: flex; gap: 14px; padding: 16px 18px;
      border-radius: var(--radius); margin-bottom: 12px;
      align-items: flex-start;
    }
    .terms-card.terms-green { background: var(--green-light); border: 1px solid rgba(74,124,89,.2); }
    .terms-card.terms-red { background: var(--red-light); border: 1px solid rgba(192,57,43,.15); }
    .terms-card-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    .terms-card strong { display: block; font-size: .92rem; color: var(--dark); margin-bottom: 4px; }
    .terms-card p { font-size: .82rem; color: var(--mid); margin: 0; line-height: 1.55; }
    .terms-divider { height: 1px; background: var(--border); margin: 20px 0; }
    .terms-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 10px;
    }
    .terms-body ul { padding-left: 18px; margin-bottom: 0; }
    .terms-body li {
      font-size: .84rem; color: var(--mid); margin-bottom: 8px; line-height: 1.6;
    }

    /* ── GDPR MODAL (Kimi design) ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      padding: 2rem 1rem;
      overflow-y: auto;
      animation: fadeIn .3s ease;
    }
    .modal-overlay.active {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }
    .modal-container {
      background: var(--cream);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      max-width: 680px;
      width: 100%;
      position: relative;
      margin: auto;
      animation: slideUp .3s ease;
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-close {
      position: absolute;
      top: 1.25rem; right: 1.25rem;
      background: none; border: none; cursor: pointer;
      padding: .5rem; color: var(--mid);
      border-radius: 8px; transition: all .2s; z-index: 10;
    }
    .modal-close:hover { background: rgba(0,0,0,.05); color: var(--dark); }
    .modal-header {
      padding: 2.5rem 2rem 1.5rem;
      text-align: center;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(to bottom, rgba(139,111,71,.04), transparent);
    }
    .modal-icon {
      width: 56px; height: 56px;
      background: var(--accent); color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin: 0 auto 1rem;
      box-shadow: 0 4px 12px rgba(139,111,71,.25);
    }
    .modal-header h2 { color: var(--accent-dark); font-size: 1.75rem; font-weight: 600; margin-bottom: .5rem; }
    .modal-subtitle { color: var(--mid); font-size: .95rem; line-height: 1.5; }
    .modal-body { padding: 2rem; }
    .info-section {
      margin-bottom: 2rem; padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }
    .info-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .info-section h3 {
      color: var(--dark); font-size: 1.05rem; font-weight: 600;
      margin-bottom: 1rem; font-family: 'Playfair Display', serif;
    }
    .data-item {
      margin-bottom: 1.25rem; padding: 1.25rem;
      background: #fff; border-radius: 8px;
      border-left: 3px solid var(--accent);
      box-shadow: var(--shadow-sm);
    }
    .data-item:last-child { margin-bottom: 0; }
    .data-badge {
      display: inline-block; padding: .25rem .75rem;
      background: rgba(139,111,71,.1); color: var(--accent-dark);
      font-size: .75rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: .5px; border-radius: 20px; margin-bottom: .5rem;
    }
    .data-badge.legal { background: rgba(139,111,71,.07); color: var(--accent); }
    .data-item p { color: var(--dark); font-size: .95rem; line-height: 1.6; margin: 0; }
    .info-section.highlight {
      background: rgba(139,111,71,.06);
      border-radius: var(--radius-sm);
      padding: 1.5rem;
      border: 1px solid rgba(139,111,71,.15);
      border-bottom: none;
    }
    .highlight-content { display: flex; gap: 1rem; align-items: flex-start; }
    .highlight-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .25rem; }
    .highlight h3 { margin-bottom: .5rem; }
    .highlight p { color: var(--dark); line-height: 1.6; font-size: .95rem; margin: 0; }
    .clean-list { list-style: none; padding: 0; margin: 0; }
    .clean-list li {
      padding: .75rem 0 .75rem 1.5rem;
      position: relative; color: var(--dark); font-size: .95rem;
      border-bottom: 1px solid rgba(0,0,0,.05);
    }
    .clean-list li:last-child { border-bottom: none; }
    .clean-list li::before { content: "•"; color: var(--accent); font-weight: bold; position: absolute; left: 0; }
    .rights-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1rem; }
    .right-item {
      background: #fff; padding: 1rem; border-radius: 8px;
      text-align: center; box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
    }
    .right-item span { font-size: 1.25rem; display: block; margin-bottom: .5rem; }
    .right-item strong { display: block; font-size: .9rem; color: var(--accent-dark); margin-bottom: .25rem; }
    .right-item p { font-size: .8rem; color: var(--mid); margin: 0; line-height: 1.4; }
    .modal-footer {
      padding: 1.5rem 2rem;
      background: rgba(0,0,0,.02);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .modal-footer p { margin: 0; font-size: .8rem; color: var(--light); }
    .modal-body a {
      color: var(--accent); text-decoration: none;
      border-bottom: 1px solid rgba(139,111,71,.3); transition: border-color .2s;
    }
    .modal-body a:hover { border-color: var(--accent); }
    .small-text { font-size: .85rem; color: var(--mid); }
    @media(max-width:640px) {
      .modal-overlay { padding: 0; }
      .modal-container { border-radius: 0; max-height: 100vh; }
      .rights-grid { grid-template-columns: 1fr; }
      .modal-header { padding: 2rem 1.5rem 1rem; }
      .modal-body { padding: 1.5rem; }
      .highlight-content { flex-direction: column; text-align: center; }
    }
