:root {
  --sand:      #F5EDD6;
  --sand-mid:  #E8D4A8;
  --terra:     #C44B2B;
  --terra-dk:  #A83D22;
  --deep:      #1A1207;
  --teal:      #0D6E68;
  --teal-lt:   #E6F4F3;
  --text:      #2C1F0A;
  --muted:     #6B5A40;
  --white:     #FEFCF7;
  --border:    rgba(44,31,10,.12);
  --green:     #A8D8A8;
  --font-d:    Georgia,'Times New Roman',serif;
  --font-b:    -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --r:         6px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-b);background:var(--white);color:var(--text);font-size:16px;line-height:1.75}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

/* ── NAV ──────────────────────────────────────────────── */
nav{position:sticky;top:0;z-index:100;background:rgba(254,252,247,.96);backdrop-filter:blur(8px);border-bottom:1px solid var(--border);padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:64px}
.nav-logo{font-family:var(--font-d);font-size:1.6rem;font-weight:600;color:var(--terra)}
.nav-logo span{color:var(--deep)}
.nav-links{display:flex;gap:.1rem;list-style:none;align-items:center}
.nav-links a{font-size:.82rem;font-weight:600;color:var(--muted);padding:.4rem .7rem;border-radius:var(--r);transition:color .2s,background .2s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{color:var(--terra);background:rgba(196,75,43,.07)}
.nav-cta{background:var(--terra)!important;color:var(--white)!important;padding:.4rem 1rem!important;border-radius:var(--r)!important}
.nav-cta:hover{background:var(--terra-dk)!important}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-p{background:var(--terra);color:var(--white);border:none;padding:.85rem 1.75rem;border-radius:var(--r);font-family:var(--font-b);font-size:.88rem;font-weight:700;cursor:pointer;display:inline-block;transition:background .2s,transform .15s}
.btn-p:hover{background:var(--terra-dk);transform:translateY(-1px)}
.btn-t{background:var(--teal);color:var(--white);border:none;padding:.75rem 1.5rem;border-radius:var(--r);font-family:var(--font-b);font-size:.86rem;font-weight:700;cursor:pointer;display:block;text-align:center;width:100%;transition:background .2s}
.btn-t:hover{background:#0a5a55}
.btn-s{background:var(--sand);color:var(--deep);border:none;padding:.85rem 2rem;border-radius:var(--r);font-family:var(--font-b);font-size:.9rem;font-weight:700;display:inline-block;transition:.2s}
.btn-s:hover{background:var(--sand-mid)}
.btn-o{background:transparent;color:var(--white);border:1.5px solid rgba(245,237,214,.5);padding:.85rem 1.75rem;border-radius:var(--r);font-family:var(--font-b);font-size:.88rem;font-weight:600;display:inline-block;transition:.2s}
.btn-o:hover{border-color:var(--sand-mid);background:rgba(245,237,214,.1)}

/* ── LAYOUT ───────────────────────────────────────────── */
.container{max-width:1100px;margin:0 auto}
section{padding:4.5rem 2rem}
.section-label{font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--terra);margin-bottom:.6rem}
.section-title{font-family:var(--font-d);font-size:clamp(1.9rem,4vw,2.8rem);font-weight:500;color:var(--deep);line-height:1.2;margin-bottom:.9rem;letter-spacing:-.02em}
.section-intro{font-size:1rem;color:var(--muted);max-width:560px;line-height:1.75;margin-bottom:2.5rem}

/* ── PAGE HERO (Bild-Hero) ────────────────────────────── */
.page-hero-img{position:relative;min-height:52vh;display:flex;align-items:flex-end;overflow:hidden}
.page-hero-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-hero-img .hero-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,18,7,.82) 0%,rgba(26,18,7,.3) 55%,transparent 100%)}
.page-hero-img .hero-content{position:relative;z-index:2;max-width:1100px;margin:0 auto;width:100%;padding:3rem 2rem}
.page-hero-img .hero-eyebrow{font-size:.75rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--sand-mid);margin-bottom:.6rem}
.page-hero-img h1{font-family:var(--font-d);font-size:clamp(2.2rem,5vw,3.8rem);font-weight:500;color:var(--white);line-height:1.1;letter-spacing:-.02em;margin-bottom:.75rem}
.page-hero-img .hero-desc{font-size:1rem;color:rgba(245,237,214,.82);max-width:500px;line-height:1.7}

/* Simple dark hero (no image) */
.page-hero{background:linear-gradient(135deg,var(--deep) 0%,#3A2510 100%);padding:3.5rem 2rem;text-align:center}
.page-hero h1{font-family:var(--font-d);font-size:clamp(2rem,5vw,3.2rem);font-weight:500;color:var(--white);letter-spacing:-.02em;margin-bottom:.6rem}
.page-hero p{font-size:1rem;color:rgba(245,237,214,.72);max-width:500px;margin:0 auto;line-height:1.7}

/* ── CTA BANNER ───────────────────────────────────────── */
.cta-banner{background:var(--terra);padding:3.5rem 2rem;text-align:center}
.cta-banner h2{font-family:var(--font-d);font-size:clamp(1.7rem,4vw,2.5rem);font-weight:500;color:var(--white);margin-bottom:.65rem;letter-spacing:-.02em}
.cta-banner p{font-size:.97rem;color:rgba(245,237,214,.82);margin-bottom:1.75rem;max-width:460px;margin-left:auto;margin-right:auto}

/* ── DESTINATION CARDS ────────────────────────────────── */
.dest-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.dest-grid .dc:first-child{grid-column:span 2}
.dc{position:relative;border-radius:10px;overflow:hidden;cursor:pointer;aspect-ratio:4/3}
.dc:first-child{aspect-ratio:16/9}
.dc img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.dc:hover img{transform:scale(1.04)}
.dc-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,18,7,.72) 0%,transparent 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:1.1rem}
.dc-tag{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--sand-mid);margin-bottom:.25rem}
.dc-name{font-family:var(--font-d);font-size:1.4rem;font-weight:600;color:var(--white);line-height:1.2}
.dc:first-child .dc-name{font-size:1.9rem}
.dc-desc{font-size:.8rem;color:rgba(245,237,214,.78);line-height:1.5;margin-top:.2rem}

/* ── FEATURE CARDS ────────────────────────────────────── */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem}
.feat-card{padding:1.6rem;border:1px solid var(--border);border-radius:10px;background:var(--white);transition:border-color .2s,box-shadow .2s}
.feat-card:hover{border-color:rgba(196,75,43,.28);box-shadow:0 4px 22px rgba(196,75,43,.07)}
.feat-icon{width:42px;height:42px;background:rgba(196,75,43,.1);border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:.9rem;color:var(--terra);font-size:1.1rem}
.feat-title{font-family:var(--font-d);font-size:1.18rem;font-weight:600;color:var(--deep);margin-bottom:.45rem}
.feat-text{font-size:.88rem;color:var(--muted);line-height:1.72}

/* ── BLOG CARDS ───────────────────────────────────────── */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.blog-card{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:var(--white);transition:border-color .2s,box-shadow .2s}
.blog-card:hover{border-color:rgba(196,75,43,.22);box-shadow:0 6px 28px rgba(26,18,7,.07)}
.blog-img{width:100%;aspect-ratio:16/10;object-fit:cover}
.blog-body{padding:1.2rem}
.blog-cat{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--terra);margin-bottom:.45rem}
.blog-title{font-family:var(--font-d);font-size:1.12rem;font-weight:600;color:var(--deep);line-height:1.32;margin-bottom:.55rem}
.blog-excerpt{font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:.9rem}
.blog-meta{display:flex;align-items:center;gap:.45rem;font-size:.76rem;color:var(--muted)}

/* ── OFFER CARDS ──────────────────────────────────────── */
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.offer-card{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:var(--white);transition:box-shadow .2s}
.offer-card:hover{box-shadow:0 8px 36px rgba(26,18,7,.09)}
.offer-img{width:100%;aspect-ratio:16/9;object-fit:cover}
.offer-body{padding:1.2rem}
.offer-loc{font-size:.75rem;color:var(--muted);font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.35rem}
.offer-name{font-family:var(--font-d);font-size:1.18rem;font-weight:600;color:var(--deep);margin-bottom:.7rem;line-height:1.28}
.offer-price-row{display:flex;align-items:baseline;gap:.45rem;margin-bottom:.9rem}
.offer-from{font-size:.78rem;color:var(--muted)}
.offer-price{font-family:var(--font-d);font-size:1.75rem;font-weight:600;color:var(--terra)}
.offer-pp{font-size:.78rem;color:var(--muted)}

/* ── TWO COL ──────────────────────────────────────────── */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start}
.info-img{border-radius:10px;width:100%;aspect-ratio:4/5;object-fit:cover}
.info-content h2{font-family:var(--font-d);font-size:clamp(1.7rem,3vw,2.4rem);font-weight:500;color:var(--deep);margin-bottom:.9rem;letter-spacing:-.02em;line-height:1.2}
.info-content p{font-size:.95rem;color:var(--muted);line-height:1.82;margin-bottom:.9rem}
.checklist{list-style:none;margin:1.1rem 0 1.6rem;display:flex;flex-direction:column;gap:.55rem}
.checklist li{font-size:.9rem;color:var(--text);display:flex;align-items:flex-start;gap:.55rem;line-height:1.52}
.checklist li::before{content:'✓';color:var(--teal);font-weight:700;margin-top:1px}

/* ── ARTICLE LAYOUT ───────────────────────────────────── */
.art-grid{display:grid;grid-template-columns:1fr 300px;gap:2.5rem;align-items:start}
.art-body h2{font-family:var(--font-d);font-size:1.65rem;font-weight:500;color:var(--deep);letter-spacing:-.02em;margin:2.2rem 0 .65rem;line-height:1.22}
.art-body h3{font-family:var(--font-d);font-size:1.15rem;font-weight:600;color:var(--teal);margin:1.6rem 0 .45rem}
.art-body p{font-size:.95rem;color:var(--text);line-height:1.85;margin-bottom:.9rem}
.art-body .lead{font-size:1.05rem;color:var(--muted);line-height:1.82;margin-bottom:1.4rem;font-weight:300}
.art-img{width:100%;border-radius:10px;aspect-ratio:16/9;object-fit:cover;margin:1.6rem 0 .4rem}
.art-caption{font-size:.76rem;color:var(--muted);text-align:center;margin-bottom:1.6rem}
.highlight{background:var(--teal-lt);border-left:4px solid var(--teal);border-radius:0 8px 8px 0;padding:1.1rem 1.4rem;margin:1.6rem 0}
.highlight p{font-size:.91rem;color:var(--text);line-height:1.75;margin:0}
.highlight strong{color:var(--teal)}

/* ── SIDEBAR ──────────────────────────────────────────── */
.sidebar{position:sticky;top:80px}
.qf{background:var(--sand);border-radius:10px;padding:1.2rem;margin-bottom:1.1rem}
.qf h4{font-family:var(--font-d);font-size:1rem;font-weight:600;color:var(--deep);margin-bottom:.7rem}
.qf-list{display:flex;flex-direction:column;gap:.45rem}
.qf-row{display:flex;gap:.55rem;font-size:.82rem;color:var(--text);line-height:1.5}
.qf-label{font-weight:700;color:var(--teal);min-width:86px;flex-shrink:0}
.aff-box{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:var(--white);margin-bottom:1rem}
.aff-head{padding:.82rem 1.1rem;display:flex;align-items:center;gap:.55rem;background:var(--teal)}
.aff-head.terra{background:var(--terra)}
.aff-head.muted{background:var(--muted)}
.aff-head h4{font-size:.85rem;font-weight:700;color:var(--white)}
.aff-body{padding:1.1rem}
.aff-body p{font-size:.83rem;color:var(--muted);line-height:1.62;margin-bottom:.9rem}
.aff-link{display:flex;align-items:center;justify-content:space-between;padding:.65rem .9rem;border:1px solid var(--border);border-radius:var(--r);margin-bottom:.55rem;transition:border-color .2s,background .2s;background:var(--white)}
.aff-link:hover{border-color:var(--teal);background:var(--teal-lt)}
.aff-link-l{display:flex;flex-direction:column;gap:.12rem}
.aff-link-name{font-size:.83rem;font-weight:700;color:var(--deep)}
.aff-link-desc{font-size:.73rem;color:var(--muted)}
.aff-link-arr{color:var(--teal);font-weight:700}
.aff-disc{font-size:.68rem;color:var(--muted);line-height:1.5;margin-top:.65rem;padding-top:.65rem;border-top:1px solid var(--border)}

/* ── NATUR HERO ───────────────────────────────────────── */
.natur-hero{min-height:72vh;position:relative;display:flex;align-items:flex-end;overflow:hidden}
.natur-hero-bg{position:absolute;inset:0;background:#0a2010 url('../images/natur-hero.jpg') center/cover no-repeat}
.natur-hero-ov{position:absolute;inset:0;background:linear-gradient(to right,rgba(10,40,20,.88) 0%,rgba(10,40,20,.55) 60%,rgba(10,40,20,.4) 100%)}
.natur-hero-inner{position:relative;z-index:2;max-width:1100px;margin:0 auto;width:100%;padding:4rem 2rem;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:flex-end}
.natur-eyebrow{font-size:.76rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--green);margin-bottom:.7rem}
.natur-hero h1{font-family:var(--font-d);font-size:clamp(2.4rem,5vw,4.2rem);font-weight:500;color:var(--white);line-height:1.1;letter-spacing:-.02em;margin-bottom:.9rem}
.natur-hero h1 em{font-style:italic;color:var(--green)}
.natur-hero-desc{font-size:.97rem;color:rgba(245,237,214,.82);line-height:1.72;max-width:420px}
.natur-stats{display:flex;flex-direction:column;gap:.7rem}
.natur-stat{background:rgba(255,255,255,.1);backdrop-filter:blur(5px);border:1px solid rgba(255,255,255,.14);border-radius:9px;padding:.7rem 1rem;display:flex;align-items:center;gap:.9rem}
.natur-stat-num{font-family:var(--font-d);font-size:1.7rem;font-weight:600;color:var(--green);line-height:1;min-width:3.5rem}
.natur-stat-label{font-size:.82rem;color:rgba(245,237,214,.78);line-height:1.45}

/* ── NATUR SUBNAV ─────────────────────────────────────── */
.natur-subnav{background:var(--deep);display:flex;justify-content:center;overflow-x:auto;border-bottom:1px solid rgba(255,255,255,.07);-webkit-overflow-scrolling:touch}
.natur-subnav a{font-size:.8rem;font-weight:600;color:rgba(232,212,168,.58);padding:.85rem 1rem;white-space:nowrap;border-bottom:2px solid transparent;transition:color .2s,border-color .2s;display:block}
.natur-subnav a:hover,.natur-subnav a.active{color:var(--green);border-bottom-color:var(--green)}

/* ── SUB-HERO (Natur Unterseiten) ─────────────────────── */
.sub-hero{height:56vh;min-height:360px;position:relative;display:flex;align-items:flex-end}
.sub-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.sub-hero-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,40,20,.88) 0%,rgba(10,40,20,.22) 68%,transparent 100%)}
.sub-hero-content{position:relative;z-index:2;padding:2.5rem 2rem;max-width:1100px;margin:0 auto;width:100%}
.sub-eyebrow{font-size:.76rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--green);margin-bottom:.6rem}
.sub-hero h1{font-family:var(--font-d);font-size:clamp(2rem,5vw,3.5rem);font-weight:500;color:var(--white);letter-spacing:-.02em;line-height:1.1;margin-bottom:.65rem}
.sub-meta{display:flex;gap:1.4rem;flex-wrap:wrap}
.sub-badge{font-size:.8rem;color:rgba(245,237,214,.78);font-weight:600}

/* ── NATUR OVERVIEW ───────────────────────────────────── */
.nov-feature{display:grid;grid-template-columns:1fr 1fr;border-bottom:1px solid var(--border)}
.nov-img{position:relative;overflow:hidden;aspect-ratio:4/3}
.nov-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.nov-img:hover img{transform:scale(1.03)}
.nov-info{padding:2.5rem 2.25rem;display:flex;flex-direction:column;justify-content:center}
.nov-info-label{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal);margin-bottom:.55rem}
.nov-info h2{font-family:var(--font-d);font-size:clamp(1.5rem,2.5vw,2rem);font-weight:500;color:var(--deep);line-height:1.2;letter-spacing:-.02em;margin-bottom:.75rem}
.nov-info p{font-size:.93rem;color:var(--muted);line-height:1.78;margin-bottom:1.25rem}
.nov-badges{display:flex;gap:.45rem;flex-wrap:wrap;margin-bottom:1.4rem}
.nov-badge{font-size:.76rem;background:var(--sand);color:var(--deep);padding:.25rem .65rem;border-radius:4px;font-weight:600}
.nov-strip{display:grid;grid-template-columns:repeat(7,1fr)}
.nov-strip-item{position:relative;overflow:hidden;aspect-ratio:1/1;cursor:pointer;border-right:1px solid rgba(255,255,255,.15)}
.nov-strip-item:last-child{border-right:none}
.nov-strip-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s;filter:brightness(.75)}
.nov-strip-item:hover img{transform:scale(1.08);filter:brightness(.9)}
.nov-strip-ov{position:absolute;inset:0;display:flex;align-items:flex-end;justify-content:center;padding:.6rem .4rem;background:linear-gradient(to top,rgba(10,30,10,.7) 0%,transparent 55%)}
.nov-strip-name{font-family:var(--font-d);font-size:.82rem;font-weight:600;color:#fff;text-align:center;line-height:1.2}

/* ── ACCORDION ────────────────────────────────────────── */
.acc-item{border-bottom:1px solid var(--border)}
.acc-btn{width:100%;padding:1.15rem 0;display:flex;justify-content:space-between;align-items:center;background:transparent;border:none;cursor:pointer;font-family:var(--font-d);font-size:1.08rem;font-weight:600;color:var(--deep);text-align:left}
.acc-icon{transition:transform .3s;font-size:1.15rem;color:var(--terra)}
.acc-item.open .acc-icon{transform:rotate(45deg)}
.acc-body{display:none;padding:0 0 1.15rem;font-size:.91rem;color:var(--muted);line-height:1.82}
.acc-item.open .acc-body{display:block}

/* ── KLIMA TABLE ──────────────────────────────────────── */
.klima-wrap{overflow-x:auto;border-radius:8px;border:1px solid var(--border)}
.klima-table{width:100%;border-collapse:collapse;font-size:.86rem}
.klima-table th{background:var(--deep);color:var(--sand-mid);padding:.7rem .45rem;text-align:center;font-size:.75rem;font-weight:700;letter-spacing:.04em}
.klima-table td{padding:.7rem .45rem;text-align:center;border-bottom:1px solid var(--border);color:var(--text)}
.klima-table tr:hover td{background:rgba(245,237,214,.45)}
.t-hot{color:var(--terra);font-weight:700}
.t-warm{color:#B07020;font-weight:600}
.t-mild{color:var(--teal)}

/* ── PLANNER GRID ─────────────────────────────────────── */
.planner-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem;margin-bottom:1.8rem}
.planner-card{background:var(--teal-lt);border-radius:10px;padding:1.6rem;display:flex;gap:.9rem;align-items:flex-start}
.planner-num{font-family:var(--font-d);font-size:2.3rem;font-weight:600;color:var(--teal);line-height:1;min-width:1.8rem}
.planner-card h3{font-family:var(--font-d);font-size:1.12rem;font-weight:600;color:var(--deep);margin-bottom:.35rem}
.planner-card p{font-size:.86rem;color:var(--muted);line-height:1.65}

/* ── BREADCRUMB ───────────────────────────────────────── */
.breadcrumb{display:flex;align-items:center;gap:.45rem;font-size:.78rem;color:var(--muted);margin-bottom:1.75rem;flex-wrap:wrap}
.breadcrumb a{color:var(--teal)}
.breadcrumb a:hover{text-decoration:underline}

/* ── LEGAL PAGES ──────────────────────────────────────── */
.legal{max-width:820px;margin:0 auto}
.legal h2{font-family:var(--font-d);font-size:1.45rem;font-weight:500;color:var(--deep);margin:1.75rem 0 .6rem}
.legal h3{font-family:var(--font-d);font-size:1.1rem;font-weight:600;color:var(--teal);margin:1.2rem 0 .4rem}
.legal p{font-size:.95rem;color:var(--text);line-height:1.85;margin-bottom:.75rem}
.legal a{color:var(--teal);text-decoration:underline}
.legal ul{margin:.4rem 0 .8rem 1.4rem}
.legal li{font-size:.95rem;color:var(--text);line-height:1.75;margin-bottom:.3rem}
.matomo-wrap{background:var(--sand);border-radius:10px;padding:1.4rem 1.75rem;margin:.5rem 0 1.25rem;border:1px solid var(--border)}
#matomo-opt-out{font-size:.9rem;color:var(--text);line-height:1.75}
#matomo-opt-out a{color:var(--teal)!important;text-decoration:underline!important}
#matomo-opt-out input[type="checkbox"]{accent-color:var(--teal);width:16px;height:16px;cursor:pointer;vertical-align:middle;margin-right:6px}

/* ── FOOTER ───────────────────────────────────────────── */
footer{background:var(--deep);padding:3.5rem 2rem 1.75rem;color:var(--sand-mid)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;max-width:1100px;margin:0 auto 2.5rem}
.footer-brand{font-family:var(--font-d);font-size:1.75rem;font-weight:600;color:var(--sand);margin-bottom:.65rem;letter-spacing:-.02em}
.footer-desc{font-size:.85rem;line-height:1.7;color:rgba(232,212,168,.55);max-width:270px}
.footer-col h4{font-size:.76rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--sand-mid);margin-bottom:.9rem}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.45rem}
.footer-links a{font-size:.85rem;color:rgba(232,212,168,.55);transition:color .2s}
.footer-links a:hover{color:var(--sand)}
.footer-bottom{max-width:1100px;margin:0 auto;padding-top:1.4rem;border-top:1px solid rgba(255,255,255,.07);display:flex;justify-content:space-between;align-items:center;font-size:.77rem;color:rgba(232,212,168,.35);flex-wrap:wrap;gap:.45rem}
.footer-disclaimer{max-width:1100px;margin:.9rem auto 0;font-size:.72rem;color:rgba(232,212,168,.28);line-height:1.6}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media(max-width:960px){
  .dest-grid,.feat-grid,.blog-grid,.offer-grid{grid-template-columns:1fr 1fr}
  .dest-grid .dc:first-child{grid-column:span 2}
  .two-col{grid-template-columns:1fr;gap:2rem}
  .art-grid{grid-template-columns:1fr}
  .sidebar{position:static}
  .planner-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .natur-hero-inner{grid-template-columns:1fr}
  .nov-feature{grid-template-columns:1fr}
  .nov-strip{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:640px){
  nav{padding:0 1rem}
  .nav-links li:not(:last-child):not(:nth-last-child(2)){display:none}
  .dest-grid,.feat-grid,.blog-grid,.offer-grid{grid-template-columns:1fr}
  .dest-grid .dc:first-child{grid-column:span 1}
  .footer-grid{grid-template-columns:1fr;gap:1.75rem}
  .nov-strip{grid-template-columns:repeat(2,1fr)}
}
