/* Tenerife — påske 2027.
   Visuelt sprog lånt fra sommerferie-sitet: lys kalkstens-baggrund, serif-display,
   billedtunge komponenter (hero-strip, photo-band, splitfig, gallery) med fotokreditter. */

:root {
  --color-bg: #f8f5ef;           /* Kanarisk kalksten */
  --color-text: #23201d;
  --color-muted: #6b625a;
  --color-card: #ffffff;
  --color-border: #e6dfd4;
  --color-accent: #145c6b;       /* Atlanterhavs-blå, dyb */
  --color-accent-soft: #1c8296;
  --color-highlight: #c4552f;    /* Lava / terrakotta */
  --color-highlight-soft: #e9a077;
  --color-sea: #12a0a8;          /* Lavvandet turkis */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1100px;
  --serif: "Iowan Old Style", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

/* overflow-x: clip (ikke hidden) — `hidden` gør html til en scroll-container
   og bryder position:sticky på .stickynav. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; margin: 0 0 0.6rem; }

a { color: var(--color-accent); }

/* ============== Hero ============== */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 3rem;
  background-size: cover;
  background-position: center;
  background-color: var(--color-accent);
  color: #fff;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(150deg, rgba(12, 48, 60, 0.7) 0%, rgba(20, 92, 107, 0.58) 45%, rgba(196, 85, 47, 0.5) 100%),
    radial-gradient(ellipse at 50% 42%, rgba(12, 48, 60, 0.42) 0%, rgba(12, 48, 60, 0) 62%);
}
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 860px; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.92;
  margin: 0 0 0.9rem;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.hero-meta { font-size: clamp(1.05rem, 3vw, 1.35rem); opacity: 0.96; margin: 0 0 0.5rem; font-weight: 600; }
.hero-tag { font-size: 1rem; opacity: 0.9; margin: 0 auto 2.2rem; max-width: 36rem; }

.hero-stats { display: flex; justify-content: center; gap: 2.6rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.hero-stats span {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  opacity: 0.88; margin-top: 0.35rem;
}

.hero-strip {
  display: flex; gap: 4px;
  margin-top: 2.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.hero-strip span { flex: 1 1 0; height: 86px; background-size: cover; background-position: center; }

/* ============== Sticky nav ============== */

.stickynav {
  position: sticky; top: 0; z-index: 40;
  display: flex; gap: 2px;
  overflow-x: auto;
  padding: 8px 14px;
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  scrollbar-width: none;
}
.stickynav::-webkit-scrollbar { display: none; }
.stickynav a {
  flex: 0 0 auto;
  font-size: 13px; font-weight: 700;
  color: var(--color-muted); text-decoration: none;
  padding: 6px 11px; border-radius: 999px; white-space: nowrap;
}
.stickynav a:hover, .stickynav a.on { color: #fff; background: var(--color-accent); }

/* ============== Layout ============== */

.container { max-width: var(--max-width); margin: 0 auto; padding: 3.6rem 1.5rem; }

section h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  display: flex; align-items: baseline; gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.num {
  font-family: -apple-system, sans-serif;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-highlight);
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  font-family: -apple-system, sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-muted); font-weight: 800;
  margin-bottom: 0.9rem !important;
}
.lead { font-size: 1.08rem; line-height: 1.7; color: var(--color-muted); max-width: 68ch; margin: 0 0 1.8rem; }

/* ============== Billedbånd ============== */

.photo-band {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-accent);
  display: flex; align-items: flex-end;
}
.photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 48, 60, 0.05) 0%, rgba(12, 48, 60, 0.78) 100%);
}
.photo-band figcaption {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  padding: 1.6rem 1.5rem; color: #fff;
}
.pb-kicker {
  display: block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--color-highlight-soft); margin-bottom: 0.3rem;
}
.pb-title { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 700; line-height: 1.15; }
.pb-sub { display: block; font-size: 0.95rem; opacity: 0.92; margin-top: 0.4rem; max-width: 46rem; }

/* ============== Splitfigur ============== */

.splitfig {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  margin: 2.2rem 0;
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
}
.splitfig-img { min-height: 300px; background-size: cover; background-position: center; background-color: #dceef1; }
.splitfig-body { padding: 1.9rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.splitfig-body h3 { color: var(--color-accent); font-size: 1.45rem; }
.sf-kicker {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-highlight); margin: 0 0 0.45rem;
}
.splitfig.sf-flip .splitfig-img { order: 2; }

/* ============== Galleri ============== */

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin: 1.6rem 0 0.6rem; }
.gallery figure { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: #dceef1; box-shadow: var(--shadow-sm); }
.gallery .g-img { display: block; height: 210px; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.gallery figure:hover .g-img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.8rem 0.8rem 0.6rem;
  font-size: 0.8rem; font-weight: 600; color: #fff; line-height: 1.3;
  background: linear-gradient(180deg, rgba(12, 48, 60, 0) 0%, rgba(12, 48, 60, 0.88) 62%);
}
.gallery .g-wide { grid-column: span 2; }

.credit { margin: 0.35rem 0 0; font-size: 0.68rem; font-style: italic; color: var(--color-muted); }

/* ============== Kort ============== */

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ============== Selskabet ============== */

.band-people { background: #fff; border-bottom: 1px solid var(--color-border); }
.band-people .container { padding: 1.8rem 1.5rem; }
.travellers { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trav {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: 999px; padding: 0.3rem 0.9rem 0.3rem 0.3rem;
}
.trav .av {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700;
  background: var(--color-accent); color: #fff;
}
.trav.kid .av { background: var(--color-highlight); }
.trav b { font-size: 0.88rem; }
.trav small { display: block; font-size: 0.68rem; color: var(--color-muted); }
.tag-corfu {
  display: inline-block; font-style: normal;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-highlight); background: rgba(196, 85, 47, 0.12);
  border-radius: 999px; padding: 0.05rem 0.45rem; margin-left: 0.35rem; vertical-align: 1px;
}

/* ============== Datoer ============== */

.pick {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-md);
}
.pick .tag {
  display: inline-block; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--color-accent);
  padding: 0.2rem 0.7rem; border-radius: 999px; margin-bottom: 0.7rem;
}
.pick h3 { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 0; }
.pick .facts { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1rem 0 1.1rem; }
.pick .facts div b { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--color-accent); line-height: 1; }
.pick .facts div span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); }
.pick ul { margin: 0; padding-left: 1.2rem; color: var(--color-muted); }
.pick ul li { margin-bottom: 0.5rem; }
.pick ul li::marker { color: var(--color-accent); }

.alts { display: grid; gap: 0.6rem; margin-bottom: 1.8rem; }
.alt-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 1rem;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
}
.alt-row b { font-size: 0.95rem; }
.alt-row p { margin: 0.25rem 0 0; font-size: 0.88rem; color: var(--color-muted); grid-column: 1 / -1; }
.pill {
  font-size: 0.68rem; font-weight: 800; white-space: nowrap;
  padding: 0.18rem 0.55rem; border-radius: 999px;
  background: rgba(20, 92, 107, 0.1); color: var(--color-accent);
}
.pill.warn { background: rgba(196, 85, 47, 0.12); color: var(--color-highlight); }

.cal { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cal-day { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 0.5rem 0.8rem; font-size: 0.82rem; }
.cal-day b { display: block; }
.cal-day span { color: var(--color-muted); font-size: 0.76rem; }
.cal-day.hi { border-color: var(--color-accent); background: rgba(20, 92, 107, 0.06); }

/* ============== Fly ============== */

.bagbox {
  background: rgba(196, 85, 47, 0.07);
  border: 1px solid rgba(196, 85, 47, 0.25);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.6rem;
}
.bagbox h3 { color: var(--color-highlight); font-size: 1.2rem; }
.bagbox ul { margin: 0 0 0.6rem; padding-left: 1.2rem; color: var(--color-muted); }
.bagbox p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

.flight {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.flight h3 { font-size: 1.3rem; margin-bottom: 0.1rem; }
.flight .sub { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 0.9rem; }
.est {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 0.9rem; padding: 0.7rem 0.9rem;
  background: var(--color-bg); border-radius: var(--radius-sm);
}
.est b { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--color-accent); font-variant-numeric: tabular-nums; }
.est span { font-size: 0.72rem; color: var(--color-muted); }
.flight dl { margin: 0 0 0.9rem; font-size: 0.86rem; }
.flight dl div { display: flex; gap: 0.7rem; padding: 0.35rem 0; border-top: 1px solid var(--color-border); }
.flight dl dt { flex: 0 0 6rem; color: var(--color-muted); font-weight: 600; }
.flight dl dd { margin: 0; }

.pc { display: grid; gap: 0.25rem; margin: 0 0 0.9rem; padding: 0; }
.pc li { list-style: none; font-size: 0.88rem; color: var(--color-muted); padding-left: 1.3rem; position: relative; }
.pc li::before { position: absolute; left: 0; font-weight: 800; }
.pc li.p::before { content: "+"; color: var(--color-sea); }
.pc li.c::before { content: "−"; color: var(--color-highlight); }

.verdict {
  margin-top: auto;
  font-size: 0.9rem;
  background: rgba(20, 92, 107, 0.06);
  border-left: 3px solid var(--color-accent);
  padding: 0.7rem 0.9rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.btn {
  display: inline-block; align-self: flex-start; margin-top: 0.9rem;
  font-size: 0.86rem; font-weight: 700; text-decoration: none;
  color: #fff; background: var(--color-accent);
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
}
.btn:hover { background: var(--color-accent-soft); }
.btn.ghost { background: transparent; color: var(--color-accent); border: 1px solid var(--color-accent); }
.btn.ghost:hover { background: rgba(20, 92, 107, 0.08); color: var(--color-accent); }

.advice { margin-top: 1.6rem; }
.advice li { color: var(--color-muted); margin-bottom: 0.45rem; }
.advice li::marker { color: var(--color-highlight); }

/* ============== Huse ============== */

.criteria { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.crit {
  font-size: 0.84rem; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 0.45rem 0.8rem; color: var(--color-muted);
}
.crit::before { content: "✓ "; color: var(--color-sea); font-weight: 800; }

.house {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 1.4rem; box-shadow: var(--shadow-md);
}
.house-img { height: 220px; background-size: cover; background-position: center; background-color: #dceef1; position: relative; }
.house-img .imgnote {
  position: absolute; right: 0.6rem; bottom: 0.6rem;
  font-size: 0.64rem; color: #fff; background: rgba(12, 48, 60, 0.68);
  padding: 0.2rem 0.55rem; border-radius: 999px;
}
.house-body { padding: 1.5rem 1.6rem 1.6rem; }
.house-top { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.house h3 { font-size: clamp(1.4rem, 4vw, 1.9rem); margin-bottom: 0.1rem; }
.house .area { font-size: 0.85rem; color: var(--color-muted); }
.house .price { text-align: right; }
.house .price b { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 4.5vw, 1.9rem); font-weight: 700; color: var(--color-highlight); line-height: 1.1; }
.house .price span { font-size: 0.72rem; color: var(--color-muted); }

.badge {
  display: inline-block; font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.5rem; color: #fff;
}
.badge.value { background: var(--color-sea); }
.badge.balance { background: var(--color-accent); }
.badge.target { background: var(--color-highlight); }
.badge.premium { background: #8a5a2b; }

.specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.spec {
  font-size: 0.76rem; font-weight: 600;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 0.3rem 0.6rem; color: var(--color-muted);
}
.spec b { color: var(--color-text); }

.hdetails { display: grid; gap: 0.6rem; margin-bottom: 1rem; font-size: 0.9rem; }
.hdetails div { display: flex; gap: 0.7rem; }
.hdetails dt { flex: 0 0 6.2rem; color: var(--color-muted); font-weight: 700; }
.hdetails dd { margin: 0; }

.rooms {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem; margin-bottom: 1rem;
}
.rooms h4 { font-family: -apple-system, sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.5rem; }
.rooms ul { margin: 0; padding-left: 1.1rem; font-size: 0.88rem; color: var(--color-muted); }
.rooms li { margin-bottom: 0.25rem; }

details.also { margin-top: 0.5rem; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 0.9rem 1.2rem; }
details.also summary { cursor: pointer; font-weight: 700; color: var(--color-accent); }
details.also p { font-size: 0.88rem; color: var(--color-muted); }
details.also b { color: var(--color-text); }

/* ============== Bil ============== */

.vehicle {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center;
  background: #fff; border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-highlight);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem; box-shadow: var(--shadow-sm);
}
.vehicle .van { font-size: 2.6rem; line-height: 1; }
.vehicle h3 { font-size: 1.3rem; margin-bottom: 0.15rem; }
.vehicle p { margin: 0; font-size: 0.88rem; color: var(--color-muted); }
.vehicle .cost { margin-left: auto; text-align: right; }
.vehicle .cost b { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--color-highlight); }
.vehicle .cost span { font-size: 0.72rem; color: var(--color-muted); }

.tip h4 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--color-accent); }
.tip p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

/* ============== Snorkling ============== */

.spot { padding: 0; overflow: hidden; }
.spot-img { height: 170px; background-size: cover; background-position: center; background-color: #dceef1; }
.spot-body { padding: 1.2rem 1.4rem 1.4rem; }
.spot .what { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-sea); margin-bottom: 0.2rem; }
.spot h3 { font-size: 1.25rem; margin-bottom: 0.1rem; }
.spot .drive { font-size: 0.76rem; color: var(--color-muted); margin-bottom: 0.7rem; }
.spot p.body { margin: 0 0 0.8rem; font-size: 0.9rem; color: var(--color-muted); }
.spot ul { margin: 0; padding-left: 1.1rem; font-size: 0.84rem; color: var(--color-muted); }
.spot li { margin-bottom: 0.3rem; }
.spot li::marker { color: var(--color-sea); }

.guided { margin-top: 1.4rem; }
.guided h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.guided .from { font-size: 0.76rem; color: var(--color-muted); }
.guided .price { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--color-highlight); margin: 0.3rem 0; }
.guided p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

/* ============== Dag for dag ============== */

.day {
  display: grid; grid-template-columns: 8rem 1fr;
  gap: 1.4rem; padding: 1.6rem 0;
  border-top: 1px solid var(--color-border);
}
.day:first-of-type { border-top: none; }
.day .when b { display: block; font-size: 0.88rem; font-weight: 700; }
.day .when .type {
  display: inline-block; margin-top: 0.4rem;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.18rem 0.5rem; border-radius: 999px; color: #fff;
}
.type.rejse { background: var(--color-muted); }
.type.hjemme { background: var(--color-sea); }
.type.udflugt { background: var(--color-accent); }
.type.valg { background: var(--color-highlight); }
.day h3 { font-size: 1.4rem; }
.day-img { height: 190px; border-radius: var(--radius-sm); background-size: cover; background-position: center; background-color: #dceef1; margin-bottom: 0.9rem; }
.day ul { margin: 0 0 0.8rem; padding-left: 1.2rem; color: var(--color-muted); font-size: 0.95rem; }
.day li { margin-bottom: 0.35rem; }
.day .dinner {
  font-size: 0.88rem;
  background: rgba(18, 160, 168, 0.08);
  border-left: 3px solid var(--color-sea);
  padding: 0.6rem 0.9rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-muted);
}
.day .dinner b { color: var(--color-accent); }
.day .warning {
  margin-top: 0.6rem; font-size: 0.88rem;
  background: rgba(196, 85, 47, 0.08);
  border-left: 3px solid var(--color-highlight);
  padding: 0.6rem 0.9rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-muted);
}

/* ============== Mad ============== */

.shoplist { display: grid; gap: 0.6rem; margin-bottom: 1.6rem; }
.shop { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 0.8rem 1rem; }
.shop b { font-size: 0.95rem; }
.shop p { margin: 0.2rem 0 0; font-size: 0.88rem; color: var(--color-muted); }
.buylist { margin: 0 0 1.6rem; padding-left: 1.2rem; color: var(--color-muted); }
.buylist li { margin-bottom: 0.4rem; }
.buylist li::marker { color: var(--color-highlight); }

/* ============== Taxfree ============== */

.tfleg { margin-bottom: 1.8rem; }
.tfleg h3 { font-size: 1.4rem; margin-bottom: 0.15rem; }
.tfsub { margin: 0 0 1rem; font-size: 0.88rem; color: var(--color-muted); }
.tflist { display: grid; gap: 0.6rem; }
.tfitem {
  background: #fff; border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-highlight);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.8rem 1rem;
}
.tfitem.home { border-left-color: var(--color-sea); }
.tfhead { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.tfitem b { font-size: 0.98rem; }
.tfitem p { margin: 0.25rem 0 0; font-size: 0.88rem; color: var(--color-muted); }
.where { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 999px; color: #fff; }
.where.tf { background: var(--color-highlight); }
.where.sm { background: var(--color-muted); }

/* ============== Budget ============== */

.budget-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.budget-table th {
  text-align: left; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-muted); font-weight: 800; padding: 0 0 0.6rem;
  border-bottom: 2px solid var(--color-border);
}
.budget-table th.r, .budget-table td.r { text-align: right; font-variant-numeric: tabular-nums; }
.budget-table td { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.budget-table td small { display: block; font-size: 0.76rem; color: var(--color-muted); margin-top: 0.15rem; }
.budget-table tr.total td {
  border-bottom: none; border-top: 2px solid var(--color-accent);
  padding-top: 0.9rem; font-weight: 800; font-size: 1.05rem;
  font-family: var(--serif);
}
.budget-table tr.pp td { border-bottom: none; padding-top: 0.2rem; color: var(--color-muted); font-size: 0.88rem; }

/* ============== Footer ============== */

footer { background: #fff; border-top: 1px solid var(--color-border); }
footer .container { padding: 2.4rem 1.5rem 3.4rem; }
footer p { margin: 0 0 0.4rem; font-size: 0.9rem; }
.muted { color: var(--color-muted); font-size: 0.82rem !important; max-width: 68ch; }
.photo-credits { margin-top: 1.2rem; font-size: 0.72rem; color: var(--color-muted); line-height: 1.6; }
.photo-credits b { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }

/* ============== Mobil ============== */

@media (max-width: 820px) {
  .splitfig { grid-template-columns: 1fr; }
  .splitfig-img { min-height: 210px; order: 0 !important; }
  .splitfig-body { padding: 1.3rem 1.4rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 2.6rem 1.2rem; }
  .hero { min-height: 64vh; padding: 4rem 1.2rem 2.4rem; }
  .hero-stats { gap: 1.6rem; }
  .hero-stats strong { font-size: 1.9rem; }
  .hero-strip span { height: 56px; }
  .hero-strip span:nth-child(n + 5) { display: none; }
  .photo-band { height: 250px; }
  .day { grid-template-columns: 1fr; gap: 0.6rem; }
  .day .when { display: flex; align-items: center; gap: 0.6rem; }
  .day .when .type { margin-top: 0; }
  .house-top { flex-direction: column; }
  .house .price { text-align: left; }
  .house-img { height: 170px; }
  .vehicle .cost { margin-left: 0; text-align: left; width: 100%; }
  .hdetails div { flex-direction: column; gap: 0.1rem; }
  .hdetails dt { flex: none; }
  .flight dl div { flex-direction: column; gap: 0.05rem; }
  .flight dl dt { flex: none; }
  .gallery .g-wide { grid-column: span 1; }
  .gallery .g-img { height: 180px; }
  .budget-table { font-size: 0.86rem; }
}
