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

    :root {
      --bg: #f4efe8;
      --sand: #e9ddd0;
      --cream: #fbf8f3;
      --white: #ffffff;
      --text: #1f1a17;
      --muted: #6d6258;
      --line: rgba(31, 26, 23, 0.08);
      --gold: #b88b5a;
      --gold-dark: #9b7247;
      --dark: #171310;
      --shadow: 0 20px 60px rgba(23, 19, 16, 0.10);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: 1240px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    a { text-decoration: none; color: inherit; }

    .container {
      width: min(92%, var(--container));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--gold-dark);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 46px;
      height: 1px;
      background: var(--gold);
      display: inline-block;
    }

    h1, h2, h3, .display {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      line-height: 0.98;
    }

    p.lead {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.8;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 26px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: 0.3s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--dark);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover { transform: translateY(-2px); background: #000; }

    .btn-gold {
      background: linear-gradient(135deg, #c79a69, #a47646);
      color: var(--white);
      box-shadow: 0 15px 35px rgba(184, 139, 90, 0.30);
    }

    .btn-gold:hover { transform: translateY(-2px); }

    .btn-outline {
      border-color: var(--line);
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(10px);
    }

    .btn-outline:hover { background: var(--white); transform: translateY(-2px); }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(251, 248, 243, 0.82);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .logo h1 {
      font-size: 26px;
      letter-spacing: 0.16em;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
    }

    .logo span {
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 26px;
      flex-wrap: wrap;
    }

    nav a:not(.btn) {
      font-size: 14px;
      font-weight: 600;
      color: #342e29;
      position: relative;
    }

    nav a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: 0.25s;
    }

    nav a:not(.btn):hover::after { width: 100%; }

    .hero {
      padding: 44px 0 88px;
      background:
        radial-gradient(circle at top left, rgba(184,139,90,0.14), transparent 32%),
        radial-gradient(circle at right center, rgba(184,139,90,0.12), transparent 28%),
        linear-gradient(180deg, #fbf8f3 0%, #f4efe8 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 38px 0 18px;
    }

    .hero-copy h2 {
      font-size: clamp(54px, 7vw, 96px);
      margin-bottom: 22px;
      max-width: 760px;
    }

    .hero-copy p {
      max-width: 650px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 10px;
    }

    .stat {
      background: rgba(255,255,255,0.68);
      border: 1px solid rgba(255,255,255,0.7);
      backdrop-filter: blur(12px);
      padding: 22px;
      border-radius: 22px;
      box-shadow: var(--shadow);
    }

    .stat strong {
      display: block;
      font-size: 34px;
      font-family: 'Cormorant Garamond', serif;
      margin-bottom: 4px;
    }

    .stat span {
      font-size: 13px;
      color: var(--muted);
    }

    .hero-visual {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      min-height: 680px;
    }

    .visual-column {
      display: grid;
      gap: 18px;
    }

    .image-card,
    .info-card,
    .floating-card,
    .promo-card,
    .gallery-card,
    .testimonial,
    .service-card,
    .contact-card,
    .booking-panel,
    .feature-card {
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--white);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.7);
    }

    .image-card img,
    .gallery-card img {
      width: 100%;
      height: 100%;
      min-height: 100%;
    }

    .img-tall { min-height: 100%; height: 100%; }
    .img-medium { min-height: 290px; }
    .img-small { min-height: 200px; }

    .info-card {
      padding: 28px;
      background: linear-gradient(145deg, #1d1713, #342821);
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 250px;
    }

    .info-card h3 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .info-card p { color: rgba(255,255,255,0.78); }

    .schedule {
      display: grid;
      gap: 10px;
      margin-top: 18px;
      font-size: 14px;
    }

    .schedule div {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 8px;
    }

    .section {
      padding: 96px 0;
    }

    .section-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 42px;
    }

    .section-header h2 {
      font-size: clamp(42px, 5vw, 66px);
      margin-top: 8px;
      margin-bottom: 10px;
    }

    .section-header p {
      max-width: 640px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .service-card {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: end;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.05) 10%, rgba(0,0,0,0.72) 100%);
      z-index: 1;
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .service-content {
      position: relative;
      z-index: 2;
      padding: 28px;
      color: var(--white);
    }

    .service-content h3 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .service-content p {
      font-size: 14px;
      color: rgba(255,255,255,0.84);
      margin-bottom: 16px;
    }

    .price {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.16);
      backdrop-filter: blur(8px);
      font-size: 13px;
      font-weight: 700;
    }

    .about {
      background: linear-gradient(180deg, var(--cream) 0%, #f3ece4 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .about-copy {
      padding-right: 20px;
    }

    .about-copy h2 {
      font-size: clamp(42px, 5vw, 64px);
      margin-bottom: 18px;
    }

    .about-copy p {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 18px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 26px;
    }

    .feature-card {
      padding: 26px;
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(10px);
    }

    .feature-card h3 {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .about-visual {
      display: grid;
      grid-template-columns: 1fr 0.82fr;
      gap: 18px;
      min-height: 620px;
    }

    .floating-card {
      padding: 22px;
      background: linear-gradient(135deg, #f7ebde, #fff8f1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .floating-card h3 {
      font-size: 32px;
    }

    .floating-card p { color: var(--muted); }

    .gallery {
      padding-top: 20px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 0.9fr;
      grid-template-rows: 320px 220px;
      gap: 18px;
    }

    .gallery-card:nth-child(1) { grid-row: span 2; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .testimonial {
      padding: 30px;
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(10px);
    }

    .stars {
      color: var(--gold);
      letter-spacing: 0.15em;
      margin-bottom: 16px;
      font-size: 18px;
    }

    .testimonial p {
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.85;
      font-size: 15px;
    }

    .testimonial strong {
      font-size: 15px;
    }

    .booking {
      background: linear-gradient(135deg, #16120f 0%, #251c17 45%, #3a2b22 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .booking::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(184,139,90,0.22), transparent 26%);
      pointer-events: none;
    }

    .booking-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .booking-copy h2 {
      font-size: clamp(44px, 5vw, 70px);
      margin-bottom: 18px;
    }

    .booking-copy p {
      color: rgba(255,255,255,0.78);
      line-height: 1.9;
      max-width: 620px;
      font-size: 17px;
      margin-bottom: 28px;
    }

    .booking-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .booking-panel {
      padding: 34px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(14px);
    }

    .booking-panel h3 {
      font-size: 34px;
      margin-bottom: 14px;
    }

    .booking-list {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .booking-item {
      display: flex;
      gap: 14px;
      align-items: start;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .booking-item span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #f7d9b6;
      flex-shrink: 0;
    }

    .booking-item p {
      color: rgba(255,255,255,0.80);
      font-size: 15px;
    }

    .contact {
      background: var(--cream);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: stretch;
    }

    .contact-card {
      padding: 34px;
    }

    .contact-card.dark {
      background: linear-gradient(145deg, #1d1713, #342821);
      color: var(--white);
    }

    .contact-card.dark p,
    .contact-card.dark li {
      color: rgba(255,255,255,0.78);
    }

    .contact-card h2,
    .contact-card h3 {
      font-size: 46px;
      margin-bottom: 16px;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 18px;
      margin: 28px 0;
    }

    .contact-list li strong {
      display: block;
      margin-bottom: 4px;
      color: inherit;
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    form {
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    input, textarea, select {
      width: 100%;
      border: 1px solid var(--line);
      background: #f9f4ee;
      border-radius: 18px;
      padding: 16px 18px;
      font: inherit;
      color: var(--text);
      outline: none;
      transition: 0.25s;
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--gold);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(184,139,90,0.10);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    footer {
      padding: 26px 0;
      background: var(--dark);
      color: rgba(255,255,255,0.72);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 1160px) {
      .hero-grid,
      .about-grid,
      .booking-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual,
      .about-visual {
        min-height: auto;
      }

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

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

      .gallery-grid { grid-template-rows: 260px 220px; }
    }

    @media (max-width: 840px) {
      .header-inner {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      nav {
        gap: 16px;
      }

      .hero { padding-top: 28px; }

      .hero-copy h2 { font-size: 56px; }

      .hero-stats,
      .services-grid,
      .gallery-grid,
      .testimonials-grid,
      .feature-grid,
      .form-row,
      .hero-visual,
      .about-visual {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-rows: auto;
      }

      .gallery-card:nth-child(1) { grid-row: span 1; }

      .section,
      .hero { padding-bottom: 72px; }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 560px) {
      .hero-copy h2,
      .section-header h2,
      .about-copy h2,
      .booking-copy h2,
      .contact-card h2,
      .contact-card h3 {
        font-size: 42px;
      }

      .logo h1 {
        font-size: 21px;
      }

      .btn {
        width: 100%;
      }

      .hero-actions,
      .booking-actions {
        flex-direction: column;
      }
    }