*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --sand: #F5EDD8;
      --sand-deep: #E8D5A8;
      --ocean: #1A5F7A;
      --ocean-light: #2A7B9B;
      --ocean-dark: #0D3D52;
      --foam: #EAF6FA;
      --gold: #C8973A;
      --text-dark: #1C2B35;
      --text-mid: #4A6070;
      --text-light: #7A95A5;
      --white: #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--sand);
      color: var(--text-dark);
      font-weight: 300;
      line-height: 1.8;
    }

    /* ── HEADER ── */
    header {
      /* background: var(--ocean-dark); */
      padding: 18px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--sand);
      letter-spacing: 0.04em;
    }

    .logo span { color: var(--gold); }

    nav a {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sand);
      text-decoration: none;
      margin-left: 32px;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    nav a:hover { opacity: 1; color: var(--gold); }

    /* ── HERO ── */
    .hero {
      min-height: 92vh;
      background: linear-gradient(170deg, var(--ocean-dark) 0%, var(--ocean) 50%, #287590 80%, var(--sand-deep) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 24px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 95px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140'%3E%3Cpath fill='%23F5EDD8' fill-opacity='1' d='M0,96L48,85.3C96,75,192,53,288,58.7C384,64,480,96,576,106.7C672,117,768,107,864,90.7C960,75,1056,53,1152,53.3C1248,53,1344,75,1392,85.3L1440,96L1440,140L0,140Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(200, 151, 58, 0.18);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 20px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 7vw, 82px);
      font-weight: 600;
      color: var(--white);
      line-height: 1.1;
      max-width: 820px;
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--sand-deep);
    }

    .hero p {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.78);
      max-width: 560px;
      margin-bottom: 44px;
      line-height: 1.9;
    }

    .hero-cta {
      display: flex;
	  padding-bottom: 30px;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--ocean-dark);
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: #339796 !important; }

    .btn-outline {
      background: transparent;
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 13px 36px;
      border: 1px solid rgba(255,255,255,0.5);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    /* ── SECTIONS ── */
    section { padding: 90px 24px; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      display: block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 600;
      color: var(--ocean-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-body {
      font-size: 15.5px;
      color: var(--text-mid);
      line-height: 1.9;
      max-width: 680px;
    }

    /* ── INTRO ── */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .intro-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--sand-deep);
      padding: 24px 20px;
      text-align: center;
    }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      font-weight: 600;
      color: var(--ocean);
      display: block;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    .visual-block {
      background: var(--ocean);
      min-height: 440px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .visual-block::after {
      content: '〰〰〰〰〰〰〰〰〰〰〰〰';
      position: absolute;
      bottom: 20px;
      font-size: 24px;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.15);
    }

    .visual-inner {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      text-align: center;
    }

    .visual-inner .arabic {
      font-size: 52px;
      font-weight: 400;
      color: rgba(255,255,255,0.6);
      display: block;
      margin-bottom: 8px;
    }

    .visual-inner p {
      font-size: 20px;
      font-style: italic;
      font-weight: 400;
      opacity: 0.9;
      margin-bottom: 4px;
    }

    .visual-inner small {
      font-size: 13px;
      font-weight: 300;
      opacity: 0.55;
      letter-spacing: 0.1em;
    }

    /* ── HUTS SECTION ── */
    .huts-section { background: var(--foam); }

    .huts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 54px;
    }

    .hut-card {
      background: var(--white);
      border: 1px solid var(--sand-deep);
      overflow: hidden;
      transition: transform 0.3s;
    }
    .hut-card:hover { transform: translateY(-6px); }

    .hut-thumb {
      height: 180px;
      background: var(--ocean);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hut-thumb.deluxe { background: linear-gradient(135deg, var(--ocean-dark), var(--ocean)); }
    .hut-thumb.premium { background: linear-gradient(135deg, #1a6b52, var(--ocean)); }
    .hut-thumb.family  { background: linear-gradient(135deg, var(--ocean), #1a5060); }

    .hut-icon {
      font-size: 56px;
      opacity: 0.35;
    }

    .hut-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--gold);
      color: var(--ocean-dark);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
    }

    .hut-body { padding: 26px 24px 30px; }

    .hut-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--ocean-dark);
      margin-bottom: 10px;
    }

    .hut-desc {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 18px;
    }

    .hut-price {
      border-top: 1px solid var(--sand-deep);
      padding-top: 16px;
      display: flex;
      align-items: baseline;
      gap: 6px;
    }

    .price-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--ocean);
    }

    .price-note {
      font-size: 12px;
      color: var(--text-light);
    }

    .hut-features {
      list-style: none;
      font-size: 13px;
      color: var(--text-mid);
      margin-bottom: 18px;
    }

    .hut-features li {
      padding: 4px 0;
      padding-left: 16px;
      position: relative;
    }

    .hut-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--ocean);
      font-weight: 500;
    }

    /* ── WHY US ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 54px;
    }

    .why-card {
      border-top: 2px solid var(--ocean);
      padding-top: 22px;
    }

    .why-icon {
      font-size: 28px;
      margin-bottom: 14px;
      display: block;
    }

    .why-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--ocean-dark);
      margin-bottom: 8px;
    }

    .why-text {
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.75;
    }

    /* ── LOCATION ── */
    .location-section { background: var(--ocean-dark); color: var(--white); }

    .location-section .section-title { color: var(--sand); }
    .location-section .section-body  { color: rgba(255,255,255,0.65); }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      margin-top: 50px;
    }

    .location-detail {
      border: 1px solid rgba(255,255,255,0.12);
      padding: 24px;
      margin-bottom: 20px;
    }

    .location-detail strong {
      display: block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .location-detail p {
      font-size: 14.5px;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
    }

    .map-placeholder {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 32px;
      gap: 12px;
    }

    .map-placeholder .map-icon { font-size: 40px; opacity: 0.4; }

    .map-placeholder p {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      max-width: 280px;
      line-height: 1.7;
    }

    .map-placeholder a {
      color: var(--gold);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-decoration: none;
    }

    /* ── BOOKING ── */
    .booking-section { background: var(--sand); }

    .booking-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .booking-form-card {
      background: var(--white);
      border: 1px solid var(--sand-deep);
      padding: 36px;
    }

    .form-group { margin-bottom: 20px; }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 500;
      /* letter-spacing: 0.15em; */
      /* text-transform: uppercase; */
      color: var(--text-mid);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--sand);
      border: 1px solid var(--sand-deep);
      color: var(--text-dark);
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--ocean); }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .btn-book {
      width: 100%;
      background: var(--ocean);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 16px;
      border: none;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }
    .btn-book:hover { background: var(--ocean-dark); }

    /* ── FAQ ── */
    .faq-section { background: var(--foam); }

    .faq-list { margin-top: 48px; max-width: 780px; }

    .faq-item {
      border-bottom: 1px solid var(--sand-deep);
      padding: 22px 0;
    }

    .faq-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--ocean-dark);
      margin-bottom: 10px;
    }

    .faq-a {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.85;
    }

    /* ── FOOTER ── */
    footer {
     /* background: var(--ocean-dark); */
      color: rgba(255,255,255,0.55);
      text-align: center;
      padding: 48px 24px;
    }

    footer .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--sand);
      margin-bottom: 8px;
    }

    footer .foot-logo span { color: var(--gold); }

    footer p { font-size: 13px; line-height: 1.8; margin-bottom: 4px; }

    footer .foot-links {
      margin-top: 20px;
      font-size: 12px;
      letter-spacing: 0.1em;
    }

    footer .foot-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      margin: 0 12px;
    }

    footer .foot-links a:hover { color: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      header { padding: 16px 20px; }
      nav { display: none; }
      .intro-grid,
      .huts-grid,
      .why-grid,
      .location-grid,
      .booking-wrapper { grid-template-columns: 1fr; gap: 36px; }
      .huts-grid { grid-template-columns: 1fr; }
      section { padding: 60px 20px; }
    }
