:root {
  --ink: #111111;
  --sun: #ffc800;
  --paper: #ffffff;
  --cream: #faf6ee;
  --muted: #555555;
  --line: #e8e2d6;
  --radius: 12px;
  --maxw: 1080px;
}
* { box-sizing: border-box; }
/* `overflow-x: clip` (NOT `hidden`: clip never creates a scroll container,
   so `position: sticky` inside main keeps working) guards against the
   `.full-bleed-band`s' `100vw` width — on OSes with non-overlay scrollbars,
   100vw includes the vertical scrollbar's width, which would otherwise add
   ~15px of horizontal scroll to every page with a band. */
html { overflow-x: clip; }
body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 0.5rem; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h1, h2 { text-wrap: balance; }
a { color: inherit; transition: filter 200ms ease, background-color 200ms ease, color 200ms ease; }
/* Removes the legacy 300ms double-tap-to-zoom delay on touch devices
   without disabling pinch zoom (which `user-scalable=no` would). */
a, button, select, summary { touch-action: manipulation; }
img { max-width: 100%; display: block; }

/* Screen-reader-only text: content that must be announced (e.g. the offer
   table's visually blank action-column header) without rendering visibly. */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* Visible keyboard-focus ring — matches the brand's sun accent so it reads
   as intentional rather than a browser default, and only shows for
   keyboard/AT focus (not every mouse click) via :focus-visible. The
   `.hero-search select` ring is defined separately, below, with a NEGATIVE
   offset (see that rule's own comment) — `.hero-search` clips overflow to
   keep its pill shape, so a positive offset like every other focusable
   element here would get cut off. */
a:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sun); outline-offset: 2px;
}

/* Visually hidden until keyboard-focused: the first focusable element in
   the document, letting keyboard/screen-reader users jump straight past
   the header nav to the main content. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--sun); color: var(--ink); font-weight: 700;
  padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: var(--paper);
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
}
.brand { font-weight: 800; text-decoration: none; letter-spacing: 0.02em; }
.brand-dot { color: var(--sun); }
/* `padding: 0.6rem 0` grows each link's tap target toward the 44px
   guideline without changing the header's visual height (the header's own
   padding still sets that). */
.site-nav a { display: inline-block; color: var(--paper); text-decoration: none; margin-left: 1.25rem; padding: 0.6rem 0; font-size: 0.95rem; }

main { max-width: var(--maxw); margin: 0 auto; padding: 0 1rem 3rem; }
.band { padding: 2.2rem 0 0.5rem; }
.band:nth-of-type(even) { background: transparent; }

.breadcrumbs { font-size: 0.85rem; color: var(--muted); padding: 1.1rem 0 0.4rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.crumb-sep { margin: 0 0.45rem; }
.crumb-current { color: var(--ink); font-weight: 600; }

.card-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin: 1.1rem 0;
}
.photo-card {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); color: var(--paper); text-decoration: none; min-height: 200px;
}
.photo-card img, .photo-card-placeholder { width: 100%; height: 200px; object-fit: cover; opacity: 0.85; }
.photo-card img {
  transition: filter 200ms ease, background-color 200ms ease, color 200ms ease, opacity 200ms ease;
}
.photo-card:hover img { opacity: 1; }
.photo-card-placeholder { background: linear-gradient(160deg, #2a2a2a, #4b4b4b); }
.photo-card-text { position: absolute; inset: auto 0 0 0; padding: 0.9rem 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.75)); }
.photo-card h3 { font-size: 1.15rem; margin: 0; }
.photo-card p { margin: 0.15rem 0 0; font-size: 0.8rem; opacity: 0.9; }

.btn {
  display: inline-block; background: var(--sun); color: var(--ink);
  font-weight: 700; padding: 0.7rem 1.3rem; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 200ms ease, background-color 200ms ease, color 200ms ease;
}
.btn:hover { filter: brightness(0.95); }

.offer-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem; }
.offer-table th, .offer-table td { text-align: left; padding: 0.65rem 0.6rem; border-bottom: 1px solid var(--line); }
.offer-table th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.offer-price { font-weight: 800; white-space: nowrap; }
.offer-fresh { color: var(--muted); font-size: 0.8rem; }

.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.7rem; margin: 1rem 0; }
.fact { background: var(--cream); border-radius: var(--radius); padding: 0.8rem 1rem; }
.fact b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }

.good-to-know { background: var(--cream); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin: 1rem 0; }
.quick-answers details { border-bottom: 1px solid var(--line); padding: 0.55rem 0; }
.quick-answers summary { cursor: pointer; font-weight: 600; }

.sticky-offer {
  position: sticky; bottom: 0.8rem; display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; background: var(--paper); border: 2px solid var(--sun);
  border-radius: var(--radius); padding: 0.7rem 1rem; margin-top: 2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
/* price + freshness are the first two flex children (left, in document
   order); pushing the .btn's own left margin to auto shoves it — and only
   it — to the right edge, rather than spreading all three children evenly. */
.sticky-offer .btn { margin-left: auto; }

.trust-strip { background: var(--cream); border-top: 1px solid var(--line); padding: 1.6rem 1rem; text-align: center; }
.trust-line { font-weight: 700; margin: 0 0 0.4rem; }
.trust-points { list-style: none; display: flex; gap: 1.4rem; justify-content: center; padding: 0; margin: 0.3rem 0; flex-wrap: wrap; color: var(--muted); font-size: 0.9rem; }
.affiliate-note { color: var(--muted); font-size: 0.82rem; max-width: 640px; margin: 0.6rem auto 0; }

.site-footer { background: var(--ink); color: var(--paper); padding: 2rem clamp(1rem, 4vw, 2.5rem) 2.6rem; }
.footer-brand { font-weight: 800; margin-bottom: 0.4rem; }
.site-footer p { color: #bbb; font-size: 0.9rem; max-width: 420px; }
.site-footer nav { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.8rem; }
.site-footer a { color: #ddd; font-size: 0.9rem; text-decoration: none; }

.hero { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: clamp(1.6rem, 5vw, 3.2rem); margin-top: 1.2rem; }
.hero p { max-width: 560px; color: #ddd; }

/* Task 26: "Not sure? Surprise me." band, above the trust strip. Same
   dark-band treatment as `.hero` (solid ink by default, optional photo +
   scrim via `.band-surprise-photo` — when a decorative band asset is
   uploaded, the inline `background-image` style carries the scrim + image
   (see `templates::homepage::photo_band_style`); this class only supplies
   the layout properties that inline style can't (size/position/repeat), so
   the scrim/url stay entirely server-side). The base `background: var(
   --ink)` above still applies underneath as a plain-color fallback if the
   image never loads. */
.band-surprise { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: clamp(1.6rem, 5vw, 3rem); margin: 1.6rem 0 0; }
.band-surprise p { max-width: 560px; color: #ddd; }
.band-surprise-photo { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* Task 27: full-bleed homepage hero — sits OUTSIDE `main`'s max-width
   column entirely (see `templates::page_full_hero`), so it's full viewport
   width for free just by not being constrained by anything. `background:
   var(--ink)` is the solid fallback when no `hero-home.webp` site asset is
   uploaded yet; when one is, `render` supplies a `background-image` inline
   style (scrim + photo url — same split as `.band-surprise` above) that
   wins over this rule's `background-image: none` (part of the `background`
   shorthand) purely on inline-style specificity, while the `background-
   color` stays this rule's ink as the underlying fallback if the photo
   itself fails to load. `min-height` prefers 88vh but is clamped between a
   480px floor (short mobile-landscape viewports) and a 900px ceiling (very
   tall/wide desktop viewports) so the hero never balloons or collapses.
   `position: relative` is what lets `.site-header--overlay` absolutely
   position itself against this section instead of the page. */
.hero-full {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 88vh, 900px);
  /* dvh (where supported) tracks the mobile URL bar collapsing/expanding,
     so the hero never jumps or overflows as the browser chrome animates;
     the vh line above stays as the older-browser fallback. */
  min-height: clamp(480px, 88dvh, 900px);
  background: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--paper);
}
/* The homepage-only transparent header variant: same `.site-header` markup
   (brand + nav), absolutely positioned over `.hero-full` instead of
   sitting in normal flow above `main` — `.site-header`'s own `color: var(
   --paper)` already makes the brand/nav text white, so this only needs to
   strip the solid ink background and take the header out of flow. */
.site-header--overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  background: transparent;
}
/* The hero's own content column — same max-width/horizontal padding as
   `main`, so the headline/search/quick-links line up with every other
   page's content once you scroll past the hero. `padding-top` clears the
   absolutely-positioned overlay header so short viewports never let it sit
   on top of the headline. */
.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4.5rem 1rem 0;
}
.hero-inner h1 { color: var(--paper); max-width: 720px; font-size: clamp(2.2rem, 6vw, 4.5rem); }
.hero-inner > p { color: rgba(255,255,255,0.85); max-width: 520px; font-size: clamp(1rem, 2vw, 1.15rem); margin: 0 0 1.5rem; }

/* Task 30: ONE pill-shaped glass search bar (booking.com pattern) — the
   `<form>` itself IS the pill (no separate wrapper div needed): a flex row
   of labeled Country/Region/City segments plus a docked yellow submit
   `.btn`, replacing Task 29's three separately-pilled selects. `overflow:
   hidden` is what keeps the segments' square corners from poking out past
   the form's own `border-radius: 999px` — see the `select:focus-visible`
   rule further down for how a focused select's ring survives that clip.

   `backdrop-filter` is layered on top of a solid fallback rather than
   guarded by `@supports not (...)`: the base rule below is the "no
   backdrop-filter" look (solid `rgba(17,17,17,.7)`), and the `@supports`
   block only overrides `background`/adds the blur where the browser can
   actually render it — one direction of drift to worry about, not two. */
.hero-search {
  display: flex;
  align-items: stretch;
  max-width: 760px;
  margin: 0 0 1.5rem;
  background: rgba(17,17,17,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  overflow: hidden;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .hero-search {
    background: rgba(17,17,17,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

/* Htmx (Task 30 Amendment) swaps the Region + City segments as ONE unit
   whenever Country changes (`hx-target="#region-city-wrap"`, see
   `templates::search_options`'s own doc comment for why one combined
   fragment beats two independent ones) — `display: contents` makes this
   wrapper invisible to `.hero-search`'s flex layout, so its two children
   still lay out as direct flex items exactly as if the wrapper weren't
   there, in BOTH the row (desktop) and column (mobile) arrangements below. */
.hero-search-group { display: contents; }

.hero-search-segment {
  display: flex; flex-direction: column; justify-content: center; gap: 0.15rem;
  flex: 1 1 160px; min-width: 0; padding: 0.5rem 1.1rem;
  transition: background-color 200ms ease;
}
.hero-search-segment:hover { background: rgba(255,255,255,0.06); }
/* Applied explicitly to the Region/City segments (never Country, the
   visual first segment) rather than derived from `:first-child`/adjacent-
   sibling selectors — the `#region-city-wrap` grouping wrapper above means
   Region is `:first-child` of ITS OWN parent even though it's visually the
   SECOND segment in the bar, so a structural selector would put the
   divider in the wrong place. Baking the class into the server-rendered
   markup instead is also what keeps every htmx fragment response (which
   re-renders a segment in isolation, no siblings in scope at all) showing
   the correct divider without any CSS having to guess. */
.hero-search-segment--divider { border-left: 1px solid rgba(255,255,255,0.18); }

.hero-search-label {
  /* 0.75rem = 12px, the minimum readable size for even auxiliary text. */
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* `appearance: none` strips the native select chrome (including its own
   built-in arrow) so the inline SVG chevron below can replace it — the
   OPEN dropdown panel itself is still OS-rendered and out of CSS's reach,
   which is what `color-scheme: dark` targets (browsers that respect it
   paint that popup dark-on-light-text instead of defaulting to a light
   popup that would clash with this dark glass bar). */
.hero-search-segment select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  display: block; width: 100%; min-width: 0;
  background: transparent; border: none; color: var(--paper);
  font: inherit; font-size: 1rem; padding: 0.1rem 1.5rem 0.1rem 0;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 8 10 13 15 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center; background-size: 14px;
}
.hero-search-segment select option, .hero-search-segment select optgroup {
  color: var(--ink); background: var(--paper);
}
/* Negative offset draws the ring INWARD instead of past the element's own
   box — `.hero-search`'s `overflow: hidden` (needed for the pill shape)
   would otherwise clip a normal positive-offset ring, especially on the
   first/last segment where the ring would extend past the bar's own
   rounded corners. */
.hero-search-segment select:focus-visible {
  outline: 3px solid var(--sun); outline-offset: -2px;
}

.hero-search .btn { margin: 6px; white-space: nowrap; flex: 0 0 auto; }

@media (max-width: 700px) {
  .hero-search { flex-direction: column; max-width: 420px; border-radius: 16px; }
  .hero-search-segment--divider { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); }
  .hero-search .btn { width: calc(100% - 12px); text-align: center; }
}

.hero-quick-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 1rem; font-size: 0.9rem; }
.hero-quick-links .quick-links-label {
  color: rgba(255,255,255,0.75); font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.05em;
}
.hero-quick-links a { color: rgba(255,255,255,0.85); text-decoration: none; }
.hero-quick-links a:hover { color: var(--sun); }

.activity-hero { margin: 1rem 0 0; }
/* `aspect-ratio` reserves the figure's height before the photo arrives, so
   the facts/offers below never shift down mid-load (CLS); `max-height`
   still caps very wide viewports at the same 420px as before. */
.activity-hero img { width: 100%; aspect-ratio: 21 / 9; max-height: 420px; object-fit: cover; border-radius: var(--radius); display: block; }
.activity-hero figcaption { text-align: right; font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }
.activity-hero figcaption a { color: var(--muted); }
.dir-columns { columns: 3 220px; column-gap: 2rem; font-size: 0.95rem; }
/* 0.35rem vertical padding ≈ 34px line height per link — a usable touch
   target for dense directory lists without doubling their length. */
.dir-columns a { display: block; color: var(--muted); text-decoration: none; padding: 0.35rem 0; }
.dir-country { break-inside: avoid; margin-bottom: 0.8rem; }
.dir-country > a:first-child { color: var(--ink); font-weight: 700; }
.dir-country a:not(:first-child) { padding-left: 0.8rem; font-size: 0.9rem; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.1rem 0; }
.pill {
  display: inline-block; background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.55rem 1.2rem; text-decoration: none;
  font-weight: 600; font-size: 0.9rem; color: var(--ink);
}
.pill:hover { background: var(--sun); border-color: var(--sun); }

.attribution-list { list-style: none; padding: 0; margin: 1rem 0; }
.attribution-list li { border-bottom: 1px solid var(--line); padding: 0.9rem 0; }
.attribution-list li p { margin: 0.2rem 0; }

/* `/destinations/` index: one row per destination, same ruled-list
   treatment as `.attribution-list` so the two long-list pages read as one
   family. */
.dest-index-list { list-style: none; padding: 0; margin: 0.4rem 0 1.6rem; color: var(--muted); font-size: 0.95rem; }
.dest-index-list li { border-bottom: 1px solid var(--line); padding: 0.5rem 0; }
.dest-index-list a { color: var(--ink); font-weight: 600; text-decoration: none; }
.dest-index-list a:hover { text-decoration: underline; }

/* Task 34 "Closest things to do" fallback: one group per nearby
   destination — a small heading over the shared card grid, with the
   "See everything in {name} →" link as a quiet text link (the section's
   single yellow CTA stays the surrounding page's own). */
.closest-group { margin: 1.2rem 0 2rem; }
.closest-group h3 { font-size: 1.05rem; margin: 0; }
.closest-see-all { display: inline-block; color: var(--ink); font-weight: 700; padding: 0.35rem 0; }


/* Task 32: homepage section restructure ------------------------------- */

.section-subtitle { color: var(--muted); margin: -0.3rem 0 1rem; }

/* "What sounds fun?" mood tiles: same `.card-grid` base, fixed to 3 columns
   (2 rows for 6 moods) with a taller tile than the default card-grid's
   200px photo — the mock's "LARGE photo tiles" call-out. Falls back to the
   default card-grid's auto-fill behavior below the 3-column breakpoint so
   it still reads fine on narrow viewports. */
.mood-grid { grid-template-columns: repeat(3, 1fr); }
.mood-grid .photo-card, .mood-grid .photo-card img, .mood-grid .photo-card-placeholder { min-height: 260px; }
.mood-grid .photo-card img { height: 260px; }
@media (max-width: 720px) {
  .mood-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* Full-bleed color bands (the mock's gray/cream-yellow/ink sections): break
   out of `main`'s max-width column to span the full viewport width, while
   `.band-inner` re-applies that same max-width/centering so the section's
   own content still lines up with every other section above/below it. No
   ancestor may set `overflow-x: hidden` (a scroll container would break
   `position: sticky`); the scrollbar-width excess 100vw carries on desktop
   is clipped by `html`'s `overflow-x: clip` at the top of this file. */
.full-bleed-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 1.6rem;
  padding: 2.4rem clamp(1rem, 4vw, 2.5rem);
}
.full-bleed-band .band-inner { max-width: var(--maxw); margin: 0 auto; }
.band-gray { background: #f5f4f1; }
.band-cream-yellow { background: #fbf3dc; }
.band-ink { background: var(--ink); color: var(--paper); }
.band-ink h2 { color: var(--paper); }

/* Image-top "listing" cards (`templates::listing_card`/
   `experience_listing_card`) — distinct from `.photo-card`'s text-over-
   gradient treatment: a plain photo on top, a white body below with the
   arrow pinned bottom-right. */
.listing-card {
  display: flex; flex-direction: column; border-radius: var(--radius);
  overflow: hidden; background: var(--paper); color: var(--ink);
  text-decoration: none; border: 1px solid var(--line);
}
.listing-card-media { background: var(--ink); }
.listing-card-media img, .listing-card-media .photo-card-placeholder { width: 100%; height: 170px; object-fit: cover; display: block; }
.listing-card-body { position: relative; padding: 1rem 1.1rem 1.3rem; flex: 1; }
.listing-card-body h3 { font-size: 1.05rem; margin: 0 0 0.2rem; }
.listing-card-subtitle, .listing-card-location { margin: 0; color: var(--muted); font-size: 0.85rem; }
.listing-card-meta { display: flex; align-items: center; gap: 0.4rem; margin: 0.4rem 0 0; font-size: 0.82rem; color: var(--muted); }
.listing-card-meta .meta-item { display: inline-flex; align-items: center; gap: 0.3rem; }
.listing-card-meta .meta-sep { opacity: 0.6; }
.listing-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.7rem; }
.listing-card-price { font-weight: 800; }
.listing-card-arrow {
  position: absolute; right: 1rem; bottom: 1rem; display: inline-flex;
  align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 999px; background: var(--sun); color: var(--ink);
}
.experience-listing-card .listing-card-arrow, .experience-listing-card .listing-card-footer { position: static; }
.experience-listing-card .listing-card-footer .listing-card-arrow {
  position: static; margin: 0;
}
.listing-card:hover .listing-card-arrow { filter: brightness(0.95); }

/* "Not sure what to do?" prompt chips */
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 0.4rem; }
@media (max-width: 720px) { .chip-grid { grid-template-columns: 1fr; } }
.chip {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.9rem 1.1rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.06);
  color: var(--paper); text-decoration: none; font-weight: 600;
}
.chip:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.chip .icon-arrow { flex: 0 0 auto; color: var(--sun); }

/* "There's fun everywhere.": countries only (the site aims to cover ALL
   countries) — CSS multi-columns flow the list into as many 160px columns
   as fit, so it stays scannable at 2 countries and at 200. */
.explore-countries { columns: 4 160px; column-gap: 2rem; margin: 1rem 0; }
.explore-countries a {
  display: block; break-inside: avoid; color: var(--ink);
  text-decoration: none; padding: 0.35rem 0;
}
.explore-countries a:hover { text-decoration: underline; }
.explore-all-link { display: inline-block; margin-top: 1rem; color: var(--ink); background: var(--sun); font-weight: 700; text-decoration: none; padding: 0.6rem 1.1rem; border-radius: 999px; }
.explore-all-link:hover { filter: brightness(0.95); }

/* Trust strip icons */
.trust-points { align-items: center; }
.trust-points li { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-points .icon { color: var(--ink); flex: 0 0 auto; }

/* Footer: four columns, wrapping responsively */
.footer-grid { display: flex; flex-wrap: wrap; gap: 2.2rem 3rem; }
.footer-col { flex: 1 1 180px; min-width: 160px; }
.footer-brand-col { flex-basis: 260px; }
.footer-col h3 { color: var(--paper); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.7rem; }
/* Padding instead of pure margin between footer links: same visual rhythm,
   but the gap is part of each link's tap target. */
.footer-col a, .footer-grid nav a { display: block; margin: 0; padding: 0.3rem 0; }
.footer-copyright { margin-top: 1rem !important; font-size: 0.8rem; }

.icon { flex: 0 0 auto; }
