/* ================= TOKENS ================= */
    :root {
      --pine: #2b3a2f;
      --pine-deep: #1c261f;
      --paper: #f7f2e7;
      --paper-warm: #f1e9d8;
      --ink: #221f1a;
      --ink-soft: #55503f;
      --stone: #8a8371;
      --marigold: #d98a3d;
      --marigold-deep: #b96f2b;
      --brass: #9c7a45;
      --line: rgba(34, 31, 26, 0.12);
    }

    

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.6;
    }

   

    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

    :focus-visible {
      outline: 2px solid var(--marigold);
      outline-offset: 3px;
      border-radius: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
      html { scroll-behavior: auto; }
    }

    h1, h2, h3, h4 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0;
    }

    .kicker {
      font-family: "Fraunces", serif;
      font-style: italic;
      font-weight: 500;
      font-size: 17px;
      color: var(--marigold-deep);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(26px, 3.2vw, 38px);
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--pine-deep);
    }

    .section-sub {
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.7;
      max-width: 560px;
    }

    .section-head { max-width: 660px; margin: 0 0 44px; }
    .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-head.center .section-sub { margin-left: auto; margin-right: auto; }

    section { padding: 88px 0; }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: flex-end;
      background:
        linear-gradient(180deg, rgba(18, 15, 13, .78) 0%, rgba(18, 15, 13, .55) 50%, rgba(18, 15, 13, .8) 100%),
        url('../images/tent-facilities/banner-img1.webp') center/cover no-repeat;
      color: #fff;
    }

    .hero .wrap { max-width: 720px; }
    .hero .kicker { color: var(--marigold); }

    .hero h1 {
      font-size: clamp(30px, 3.8vw, 44px);
      line-height: 1.18;
      margin-bottom: 16px;
      text-wrap: balance;
    }

    .hero p {
      font-size: 15.5px;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      margin: 0;
      max-width: 560px;
    }

    /* ================= INTRO SPLIT ================= */
    .intro-split {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 60px;
      align-items: center;
      border-bottom: 1px solid var(--line);
      padding-bottom: 64px;
    }

    .intro-split p {
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.85;
      margin: 0 0 16px;
    }
    .intro-split p:last-child { margin-bottom: 0; }

    .intro-photo {
      border-radius: 6px;
      aspect-ratio: 4 / 5;
      background-image: url('../images/tent-facilities/banner-img1.webp');
      background-size: cover;
      background-position: center 65%;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(156, 122, 69, 0.22);
      box-shadow: 0 18px 40px rgba(28, 38, 31, 0.10);
    }

    .intro-photo .intro-tag {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(20, 28, 22, 0.85);
      color: var(--paper);
      padding: 9px 16px;
      border-radius: 3px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    /* ================= FEATURE GRID ================= */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--paper-warm);
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid rgba(156, 122, 69, 0.22);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 28px rgba(28, 38, 31, 0.12);
    }

    .feature-card .feature-img {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .feature-card .feature-body {
      padding: 26px 26px 30px;
    }

    .feature-card h4 {
      font-size: 19px;
      color: var(--pine-deep);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .feature-card p {
      color: var(--ink-soft);
      font-size: 14px;
      line-height: 1.7;
      margin: 0;
    }

    /* ---- feature image variants ---- */
    .feature-img--fashion {
      background-image: url('../images/tent-facilities/gallery-4.webp');
      background-position: center 25%;
    }
    .feature-img--interior {
      background-image: url('../images/tent-facilities/gallery-1.webp');
      background-position: center 50%;
    }
    .feature-img--catering {
      background-image: url('../images/tent-facilities/food.webp');
      background-position: center 75%;
    }

    /* ================= WHY US ================= */
    .why-band {
      background: var(--pine-deep);
      color: var(--paper);
      border-radius: 4px;
      padding: 64px 52px;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 56px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .why-band::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217,138,61,0.22) 0%, rgba(217,138,61,0) 70%);
    }

    .why-band .kicker { color: var(--marigold); position: relative; }
    .why-band h2 {
      font-size: clamp(24px, 3vw, 34px);
      color: #fff;
      margin-bottom: 14px;
      position: relative;
    }
    .why-band > div > p {
      color: rgba(247,242,231,0.65);
      font-size: 15px;
      line-height: 1.8;
      margin: 0;
      position: relative;
    }

    .why-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 16px;
      position: relative;
    }

    .why-list li {
      display: flex;
      gap: 14px;
      align-items: baseline;
      font-size: 15px;
      color: rgba(247,242,231,0.88);
      line-height: 1.7;
    }

    .why-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--marigold);
      flex-shrink: 0;
      transform: translateY(-2px);
    }

    /* ================= CATERING BAND ================= */
    .catering-band {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
      align-items: center;
    }

    .catering-band .section-head { margin: 0; }

    .catering-band p {
      color: var(--ink-soft);
      font-size: 15.5px;
      line-height: 1.85;
      margin: 0 0 16px;
    }
    .catering-band p:last-child { margin-bottom: 0; }

    .catering-photo {
      border-radius: 6px;
      aspect-ratio: 4 / 3;
      background-image: url('../images/tent-facilities/about.webp');
      background-size: cover;
      background-position: center 60%;
      border: 1px solid rgba(156, 122, 69, 0.25);
      box-shadow: 0 18px 40px rgba(28, 38, 31, 0.10);
    }

    /* ================= CTA ================= */
    .cta {
      background:
        linear-gradient(115deg, rgba(20, 28, 22, 0.92) 20%, rgba(20, 28, 22, 0.75) 100%),
        url('../images/tent-facilities/about.webp') center 70%/cover no-repeat;
      border-radius: 4px;
      padding: 64px 52px;
      color: #fff;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .cta h2 { font-size: clamp(24px, 3vw, 34px); color: #fff; margin-bottom: 10px; }
    .cta p { color: rgba(247,242,231,0.65); font-size: 15px; margin: 0; max-width: 400px; }

    .cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

    .btn-primary {
      background: var(--marigold);
      color: #1c1710;
      padding: 14px 30px;
      border-radius: 3px;
      font-weight: 600;
      font-size: 14.5px;
      transition: background 0.2s ease;
    }
    .btn-primary:hover { background: #e79a4f; }

    .btn-ghost {
      border: 1.5px solid rgba(247,242,231,0.35);
      color: #fff;
      padding: 14px 30px;
      border-radius: 3px;
      font-weight: 600;
      font-size: 14.5px;
      transition: all 0.2s ease;
    }
    .btn-ghost:hover { border-color: var(--marigold); color: var(--marigold); }

    /* ================= UTILITY ================= */
    .pt-0 { padding-top: 0; }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 992px) {
      .intro-split { grid-template-columns: 1fr; gap: 28px; }
      .intro-photo { aspect-ratio: 16 / 9; }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .why-band { grid-template-columns: 1fr; gap: 28px; padding: 48px 34px; }
      .catering-band { grid-template-columns: 1fr; gap: 28px; }
      .cta { grid-template-columns: 1fr; text-align: left; }
      .cta-buttons { justify-content: flex-start; }
    }

    @media (max-width: 768px) {
      .wrap { padding: 0 22px; }
      section { padding: 64px 0; }
      .hero { padding: 90px 0 70px; min-height: 400px; }
      .feature-grid { grid-template-columns: 1fr; }
      .why-band { padding: 36px 24px; }
      .cta { padding: 40px 24px; }
    }