  /* ================= WildX — light edition ================= */
  :root {
    --bg:        #FFFFFF;   /* pure white ground */
    --bg-2:      #F7F6F4;   /* faint warm grey for alternating bands */
    --bg-3:      #F1EFEB;   /* card tint */
    --dark:      #1B1A17;   /* near-black, faintly warm */
    --dark-2:    #26241F;
    --ink:       #1B1A17;
    --muted:     #6E6A62;   /* secondary text on white */
    --muted-d:   #A8A399;   /* secondary text on dark */
    --line:      #E4E1DB;   /* hairlines */
    --line-d:    #37342D;   /* hairlines on dark */
    --gold:      #A07C33;   /* accent, darkened to hold contrast on white */
    --gold-soft: #C9A45C;   /* accent on dark grounds */
    --sans:  "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --serif: var(--sans);   /* single interface family; hierarchy comes from weight and scale */
    --max: 1200px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--sans); font-weight: 300;
    font-size: 17px; line-height: 1.8; letter-spacing: .012em;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(22px, 5vw, 56px); }

  /* ---------- Buttons ---------- */
  .btn-gold, .btn-outline, .btn-green {
    display: inline-block; text-decoration: none; cursor: pointer;
    font-family: var(--sans); font-weight: 300; font-size: 11.5px;
    letter-spacing: .26em; text-transform: uppercase;
    padding: 17px 38px; border: 1px solid transparent;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
  }
  .btn-gold { background: var(--dark); color: #fff; }
  .btn-gold:hover { background: var(--gold); }
  .btn-outline { border-color: rgba(27,26,23,.3); color: var(--ink); }
  .btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
  .btn-green { background: var(--dark); color: #fff; border: none; }
  .btn-green:hover { background: var(--gold); }

  /* ---------- Nav ---------- */
  nav {
    position: fixed; inset: 0 0 auto 0; z-index: 30;
    background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px clamp(22px, 5vw, 56px);
    border-bottom: 1px solid var(--line);
  }
  .brand {
    font-size: 21px; font-weight: 300; letter-spacing: .13em;
    color: var(--ink); text-decoration: none; text-transform: uppercase;
  }
  .brand em { font-style: normal; font-weight: 500; color: var(--gold); }
  .nav-links { display: flex; gap: 38px; align-items: center; }
  .nav-links a {
    color: var(--muted); font-size: 11.5px; font-weight: 300;
    letter-spacing: .24em; text-transform: uppercase; text-decoration: none;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links .btn-gold { padding: 12px 26px; color: #fff; }
  @media (max-width: 880px) { .nav-links a:not(.btn-gold) { display: none; } }

  /* ---------- Hero: pale sky photograph, dark type ---------- */
  header {
    position: relative; min-height: 94svh;
    display: flex; align-items: center;              /* sit on the sky, clear of the land */
    padding: 150px 0 150px;
    background: #E7ECEF url("https://images.unsplash.com/photo-1685301258848-686f457e6151?w=2400&q=76") center 62% / cover no-repeat;
  }
  header::after {
    /* Left-weighted veil: the column the type occupies stays pale and legible,
       while the right of the frame keeps the photograph fully visible. */
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(100deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.88) 32%,
                              rgba(255,255,255,.45) 56%, rgba(255,255,255,.05) 78%,
                              rgba(255,255,255,0) 92%),
      linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,.1) 40%, rgba(255,255,255,0) 70%);
  }
  @media (max-width: 760px) {
    header::after { background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 55%, rgba(255,255,255,.4) 100%); }
  }
  .hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--max);
    margin: 0 auto; padding: 0 clamp(22px, 5vw, 56px); }
  .hero-eyebrow {
    display: inline-block; padding: 0 0 20px;
    font-size: 11px; font-weight: 300; letter-spacing: .42em;
    text-transform: uppercase; color: var(--gold);
  }
  h1 {
    font-family: var(--serif); font-weight: 200;
    font-size: clamp(42px, 6.6vw, 92px);
    line-height: 1.04; letter-spacing: -.028em;
    margin: 0 0 28px; max-width: 16ch; text-wrap: balance; color: var(--ink);
  }
  h1 .gold { color: var(--gold); font-weight: 300; font-style: normal; }
  .hero-sub {
    max-width: 54ch; margin: 0 0 40px; font-size: clamp(15.5px, 1.3vw, 18px);
    color: var(--muted);
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .discover {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
    font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase;
    color: rgba(255,255,255,.85);                    /* over the dark land band */
  }
  .discover::before { content: ""; display: block; width: 1px; height: 30px;
    background: rgba(255,255,255,.6); margin: 0 auto 10px; }

  /* ---------- Trust bar ---------- */
  .trust { background: var(--bg); border-bottom: 1px solid var(--line); }
  .trust .wrap {
    display: flex; flex-wrap: wrap; justify-content: center;
    padding-top: 26px; padding-bottom: 26px;
  }
  .trust span { display: flex; align-items: center; gap: 11px;
    font-size: 14px; color: var(--muted); padding: 8px 26px; }
  .trust span + span { border-left: 1px solid var(--line); }
  @media (max-width: 900px) { .trust span + span { border-left: none; } }

  /* ---------- Section scaffolding ---------- */
  section { padding: clamp(84px, 12vh, 150px) 0; }
  .eyebrow {
    font-size: 11px; font-weight: 300; letter-spacing: .4em; text-transform: uppercase;
    color: var(--gold); margin: 0 0 24px;
  }
  h2 {
    font-family: var(--sans); font-weight: 200;
    font-size: clamp(31px, 4vw, 54px); line-height: 1.12;
    letter-spacing: -.024em; margin: 0 0 28px; text-wrap: balance;
  }
  h2 .it { font-style: normal; color: var(--gold); font-weight: 300; }
  .lede { color: var(--muted); max-width: 62ch; }

  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

  /* ---------- Why us ---------- */
  .why .grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
  @media (max-width: 960px) { .why .grid { grid-template-columns: 1fr; } }
  .why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
  @media (max-width: 560px) { .why-cards { grid-template-columns: 1fr; } }
  .wcard { background: var(--bg); padding: 30px 28px; }
  .wcard .ico { display: block; margin-bottom: 14px; }
  .wcard h3 { font-weight: 500; font-size: 15.5px; letter-spacing: -.005em; margin: 0 0 10px; }
  .wcard p { margin: 0; font-size: 14.5px; color: var(--muted); }

  /* the lion portrait lives here */
  .collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
  .collage .ph1 { grid-column: 1 / -1; width: 100%; height: 520px; object-fit: cover; background: var(--bg-3); }
  .collage .ph2 { width: 100%; height: 100%; min-height: 180px; object-fit: cover; background: var(--bg-3); }
  .collage .stat {
    background: var(--dark); color: #fff; text-align: center; padding: 30px 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  }
  .collage .stat .n { font-size: 44px; font-weight: 200; letter-spacing: -.03em; color: var(--gold-soft); display: block; line-height: 1.05; }
  .collage .stat .l { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-d); }
  @media (max-width: 960px) { .collage .ph1 { height: 360px; } }
  @media (max-width: 560px) { .collage { grid-template-columns: 1fr; } }

  /* ---------- Guarantee band ---------- */
  .guarantee { background: var(--bg-2); border-block: 1px solid var(--line); text-align: center; }
  .guarantee .eyebrow { color: var(--gold); }
  .guarantee h2 { color: var(--ink); }
  .guarantee blockquote {
    font-weight: 200; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.4;
    max-width: 30ch; margin: 0 auto 32px; color: var(--ink); letter-spacing: -.02em;
  }
  .guarantee .body { max-width: 60ch; margin: 0 auto; color: var(--muted); }

  /* ---------- Services ---------- */
  .services-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 80px);
    align-items: end; margin-bottom: 56px; }
  @media (max-width: 880px) { .services-head { grid-template-columns: 1fr; } }
  .services-head .note { color: var(--muted); font-size: 16px; }
  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); }
  @media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc { background: var(--bg); padding: 40px 34px 44px; }
  .svc .no { font-size: 11px; font-weight: 400; letter-spacing: .26em;
    color: var(--gold); display: block; margin-bottom: 20px; }
  .svc h3 { font-weight: 500; font-size: 16px; letter-spacing: -.005em; margin: 0 0 12px; }
  .svc p { margin: 0; font-size: 14.5px; color: var(--muted); }

  /* ---------- Lodges (now light) ---------- */
  .lodges { background: var(--bg-2); border-block: 1px solid var(--line); }
  .lodges .eyebrow { color: var(--gold); }
  .lodges h2 { color: var(--ink); }
  .lodges .lede { color: var(--muted); }
  .filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0 50px; }
  .filters button {
    font-family: var(--sans); font-weight: 400; font-size: 11.5px; letter-spacing: .2em;
    text-transform: uppercase; background: none; border: 1px solid var(--line);
    color: var(--muted); padding: 12px 24px; cursor: pointer; transition: all .25s ease;
  }
  .filters button:hover { border-color: var(--ink); color: var(--ink); }
  .filters button.on { background: var(--dark); border-color: var(--dark); color: #fff; }
  .lodge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  @media (max-width: 1000px) { .lodge-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .lodge-grid { grid-template-columns: 1fr; } }
  .lodge { background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; }
  .lodge.hide { display: none; }
  .lodge .ph { position: relative; }
  .lodge .ph img { width: 100%; height: 230px; object-fit: cover; }
  .lodge .badge {
    position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.93); color: var(--ink);
    font-size: 10px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; padding: 7px 13px;
  }
  .lodge .body { padding: 26px 26px 30px; }
  .lodge .co { font-size: 11px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold); margin: 0 0 9px; }
  .lodge h3 { font-weight: 400; font-size: 19px; line-height: 1.28;
    margin: 0 0 12px; letter-spacing: -.014em; color: var(--ink); }
  .lodge p { margin: 0 0 18px; font-size: 14.5px; color: var(--muted); }
  .lodge .tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .lodge .tags span { font-size: 11.5px; color: var(--muted); border: 1px solid var(--line); padding: 5px 11px; }

  /* ---------- Card links ---------- */
  a.lodge { text-decoration: none; color: inherit; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
  a.lodge:hover { transform: translateY(-4px); border-color: #CFCAC1; box-shadow: 0 12px 34px -20px rgba(0,0,0,.35); }
  .lodge .more { font-size: 11.5px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-top: 18px; display: inline-block; }

  /* ---------- Expertise (lioness portrait) ---------- */
  .expertise .grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
  @media (max-width: 960px) { .expertise .grid { grid-template-columns: 1fr; } }
  .exp-photo img { width: 100%; height: 620px; object-fit: cover; object-position: center 30%;
    background: var(--bg-3); display: block; }
  .exp-photo .quote {
    width: 100%; background: var(--bg-3); color: var(--ink); padding: 34px 36px;
    font-weight: 300; font-size: 17px; line-height: 1.6;
    letter-spacing: -.008em; border-left: 1px solid var(--gold);
  }
  @media (max-width: 960px) { .exp-photo img { height: 430px; } }
  .know { list-style: none; margin: 44px 0 0; padding: 0; display: grid; gap: 34px; }
  .know li { display: grid; grid-template-columns: 44px 1fr; gap: 20px; }
  .know .n { width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--gold);
    font-size: 12px; font-weight: 400; }
  .know h3 { font-size: 15.5px; font-weight: 500; margin: 0 0 7px; }
  .know p { margin: 0; font-size: 14.5px; color: var(--muted); }

  /* ---------- Testimonials ---------- */
  .stories { background: var(--dark); color: #fff; text-align: center; }
  .stories .eyebrow { color: var(--gold-soft); }
  .stories h2 { color: #fff; }
  .stories .lede { margin: 0 auto; color: var(--muted-d); }
  .story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; text-align: left; }
  @media (max-width: 960px) { .story-grid { grid-template-columns: 1fr; } }
  .story { background: var(--dark-2); border: 1px solid var(--line-d); padding: 34px 30px; }
  .story .stars { color: var(--gold-soft); letter-spacing: .2em; margin-bottom: 18px; }
  .story blockquote { font-weight: 300; font-size: 16px; line-height: 1.65; letter-spacing: -.008em; margin: 0 0 24px; color: #E8E5DF; }
  .story .who { display: flex; align-items: center; gap: 14px; }
  .story .mono { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold-soft);
    color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 14px; }
  .story .who b { display: block; font-weight: 400; font-size: 14.5px; color: #fff; }
  .story .who small { color: var(--muted-d); font-size: 12.5px; }

  /* ---------- Price band ---------- */
  .price { background: var(--bg-2); border-block: 1px solid var(--line); }
  .price .grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
  @media (max-width: 820px) { .price .grid { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
  .seal { width: 210px; height: 210px; border: 1px solid var(--gold); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    color: var(--gold); font-size: 13px; font-weight: 300; text-transform: uppercase;
    text-align: center; line-height: 1.5; margin: 0 auto; letter-spacing: .18em; }
  .price h2 { color: var(--ink); }
  .price .body { color: var(--muted); max-width: 68ch; }
  .price .body b { color: var(--ink); font-weight: 400; }

  /* ---------- Enquire ---------- */
  .enquire .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
  @media (max-width: 960px) { .enquire .grid { grid-template-columns: 1fr; } }
  .contact-rows { margin-top: 44px; display: grid; gap: 20px; }
  .contact-rows div { display: flex; align-items: center; gap: 16px; font-size: 15.5px; color: var(--muted); }
  .contact-rows .ico { width: 42px; height: 42px; border-radius: 50%; background: var(--bg);
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: none; }
  form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field.full { grid-column: 1 / -1; }
  .field label { font-size: 10.5px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
  .field input, .field select, .field textarea {
    font-family: var(--sans); font-weight: 300; font-size: 15.5px; color: var(--ink);
    background: var(--bg); border: 1px solid var(--line); padding: 14px 15px; width: 100%;
  }
  .field textarea { min-height: 130px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; }
  .honey { position: absolute; left: -9999px; }
  form .btn-green { grid-column: 1 / -1; justify-self: start; }
  @media (max-width: 560px) { form { grid-template-columns: 1fr; } }

  /* ---------- Footer ---------- */
  footer { background: var(--dark); color: var(--muted-d); padding: 80px 0 40px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(30px, 4vw, 60px); }
  @media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
  footer .brand { font-size: 20px; color: #fff; }
  footer .brand em { color: var(--gold-soft); }
  .foot-blurb { margin-top: 18px; font-size: 14.5px; max-width: 34ch; }
  .foot-blurb .sw { color: var(--gold-soft); }
  footer h4 { font-size: 11px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold-soft); margin: 6px 0 20px; }
  footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
  footer ul a { text-decoration: none; font-size: 14.5px; }
  footer ul a:hover { color: #fff; }
  .foot-bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line-d);
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; }
  .socials { display: flex; gap: 12px; }
  .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-d);
    display: flex; align-items: center; justify-content: center; font-size: 11.5px; text-decoration: none; }
  .socials a:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

  /* ---------- Subpage hero ---------- */
  .page-hero {
    position: relative; display: flex; align-items: flex-end;
    min-height: 56vh; color: #fff; padding: 170px 0 56px;
    background-color: var(--dark); background-size: cover; background-position: center;
  }
  .page-hero::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,18,15,.34) 0%, rgba(20,18,15,.72) 100%); }
  .page-hero .wrap { width: 100%; position: relative; z-index: 2; }
  .page-hero .badge { display: inline-block; background: rgba(255,255,255,.94); color: var(--ink);
    font-size: 10px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; padding: 7px 13px; margin-bottom: 20px; }
  .page-hero .co { font-size: 11.5px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold-soft); margin: 0 0 12px; }
  .page-hero h1 { font-size: clamp(32px, 4.6vw, 62px); margin-bottom: 14px; color: #fff; max-width: 20ch; }
  .page-hero .strap { font-size: clamp(16px, 1.7vw, 21px); font-weight: 200; letter-spacing: -.014em; color: #DCD8D0; margin: 0; }
  .crumb { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px; color: #CFCAC1; }
  .crumb a { color: #CFCAC1; text-decoration: none; }
  .crumb a:hover { color: #fff; }

  /* ---------- Lodge detail ---------- */
  .detail { padding: clamp(70px, 9vh, 110px) 0; }
  .detail .grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
  @media (max-width: 900px) { .detail .grid { grid-template-columns: 1fr; } }
  .prose h2 { font-size: clamp(23px, 2.3vw, 32px); margin-top: 56px; }
  .prose h2:first-child { margin-top: 0; }
  .prose p { color: var(--muted); margin: 0 0 20px; }
  .insight { background: var(--bg-2); border-left: 2px solid var(--gold); padding: 26px 28px; margin-top: 10px; }
  .insight .k { font-size: 10.5px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 10px; }
  .insight p { margin: 0; color: var(--ink); }
  .side { position: sticky; top: 108px; display: grid; gap: 24px; }
  .glance { background: var(--dark); color: #fff; padding: 34px 30px; }
  .glance h3 { font-weight: 500; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 20px; color: #fff; }
  .glance dl { margin: 0; display: grid; gap: 16px; }
  .glance dt { font-size: 10.5px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }
  .glance dd { margin: 4px 0 0; font-size: 14.5px; color: var(--muted-d); }
  .side .cta-card { background: var(--bg-2); border: 1px solid var(--line); padding: 30px; text-align: center; }
  .side .cta-card p { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; }
  .lodge-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
  .lodge-tags span { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 6px 13px; }

  /* ---------- CTA band ---------- */
  .cta-band { background: var(--bg-2); border-block: 1px solid var(--line); text-align: center; }
  .cta-band h2 { color: var(--ink); }
  .cta-band p { color: var(--muted); max-width: 58ch; margin: 0 auto 36px; }

  /* ---------- Values ---------- */
  .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); margin-top: 54px; }
  @media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
  .value { background: var(--bg); padding: 34px 30px; }
  .value .ico { display: block; margin-bottom: 14px; }
  .value h3 { font-weight: 500; font-size: 15.5px; margin: 0 0 10px; }
  .value p { margin: 0; font-size: 14.5px; color: var(--muted); }

  /* ---------- Camps list ---------- */
  .camps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: 10px; }
  .camp { background: var(--bg); padding: 22px 24px; }
  .camp h3 { font-weight: 500; font-size: 15px; margin: 0 0 7px; }
  .camp p { margin: 0; font-size: 14.5px; color: var(--muted); }

  /* ---------- Line icons ---------- */
  .ico svg, i.ico svg {
    display: block; fill: none; stroke: var(--gold); stroke-width: 1.1;
    stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke;
  }
  .ico svg { width: 30px; height: 30px; }
  i.ico { display: inline-flex; flex: none; }
  i.ico svg { width: 18px; height: 18px; }
  .contact-rows .ico svg { width: 19px; height: 19px; }
  .seal .ico svg { width: 32px; height: 32px; }
  .wcard .ico svg, .value .ico svg { width: 21px; height: 21px; }

  /* ---------- Full-bleed photographic breaks ---------- */
  .moment {
    position: relative; min-height: 78vh; padding: 0;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background-color: var(--dark); background-size: cover; background-position: center;
    background-attachment: fixed;
  }
  @media (hover: none), (max-width: 900px) { .moment { background-attachment: scroll; min-height: 62vh; } }
  .moment::after { content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 50% 50%, rgba(12,10,9,.62) 0%, rgba(12,10,9,.22) 70%, rgba(12,10,9,.1) 100%),
      linear-gradient(180deg, rgba(12,10,9,.34) 0%, rgba(12,10,9,.5) 100%); }
  .moment .inner { position: relative; z-index: 2; max-width: 780px; padding: 0 28px; }
  .moment .k {
    display: block; font-size: 11px; font-weight: 300; letter-spacing: .42em;
    text-transform: uppercase; color: #E8CE93; margin-bottom: 22px;
    text-shadow: 0 1px 14px rgba(0,0,0,.6);
  }
  .moment .line {
    text-shadow: 0 2px 26px rgba(0,0,0,.5);
    font-weight: 200; font-size: clamp(26px, 3.6vw, 48px); line-height: 1.22;
    color: #fff; margin: 0; letter-spacing: -.022em; text-wrap: balance;
  }
  .moment .by { margin: 24px 0 0; font-size: 13.5px; color: rgba(255,255,255,.86);
    letter-spacing: .06em; text-shadow: 0 1px 14px rgba(0,0,0,.6); }

  /* ---------- Gallery strip ---------- */
  .gallery { padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
  @media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
  .gallery figure { margin: 0; position: relative; overflow: hidden; }
  .gallery img { width: 100%; height: 300px; object-fit: cover; transition: transform .9s ease; }
  .gallery figure:hover img { transform: scale(1.05); }
  .gallery figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
    background: linear-gradient(0deg, rgba(16,14,12,.72), rgba(16,14,12,0));
    color: #fff; font-size: 11px; font-weight: 300; letter-spacing: .26em; text-transform: uppercase;
  }
