/* ==========================================================================
   StaycationOz — Design tokens
   Palette: sun-bleached sand, deep eucalyptus, red-earth ochre, harbour sky
   Type: Fraunces (display serif) + Work Sans (body)
   ========================================================================== */

:root {
  --ink: #182420;
  --eucalyptus: #1F3D36;
  --eucalyptus-light: #2E5A50;
  --ochre: #A8431E;
  --ochre-dark: #832F12;
  --gold: #C98A2C;
  --sand: #EDE6D3;
  --sand-deep: #E2D8BE;
  --sky: #DCEEF0;
  --paper: #FBF9F3;
  --line: rgba(24, 36, 32, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.4em;
  color: var(--eucalyptus);
  font-weight: 600;
  line-height: 1.12;
}

p { margin: 0 0 1em; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ochre);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ochre-dark); }
.btn-outline {
  border-color: var(--eucalyptus);
  color: var(--eucalyptus);
  background: transparent;
}
.btn-outline:hover { background: var(--eucalyptus); color: var(--paper); }
.btn-dark {
  background: var(--ink);
  color: var(--sand);
}
.btn-dark:hover { background: #0d1512; }
.btn-ghost-light {
  border-color: rgba(237,230,211,0.5);
  color: var(--sand);
  background: transparent;
}
.btn-ghost-light:hover { background: rgba(237,230,211,0.12); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 220px;
}
.logo-img {
  display: block;
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--ochre-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--eucalyptus);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-search {
  display: flex;
  align-items: center;
  background: var(--sand);
  border-radius: 30px;
  padding: 6px 6px 6px 16px;
  gap: 6px;
}
.header-search--mobile { display: none; }
.header-search input {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  width: 160px;
  color: var(--ink);
}
.header-search input:focus { outline: none; }
.header-search input::placeholder { color: var(--eucalyptus-light); }
.header-search button {
  border: none;
  background: var(--eucalyptus);
  color: var(--paper);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.header-search button:hover { background: var(--ochre); }

/* ---------- Hero ---------- */
.hero {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-eyebrow {
  color: var(--ochre-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.6em;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  max-width: 11ch;
}
.hero p.lead {
  font-size: 1.1rem;
  max-width: 46ch;
  color: var(--eucalyptus-light);
}
.hero-actions { display: flex; gap: 14px; margin-top: 1.4rem; }

/* ---------- Homepage photo hero (crossfading background) ---------- */
.hero-photo {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-photo .wrap {
  display: block;
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
  width: 100%;
}
.hero-photo-content { max-width: 620px; }
.hero-photo .hero-eyebrow { color: var(--ochre); }
.hero-photo h1 { color: var(--ink); max-width: 12ch; }
.hero-photo p.lead { color: #3B4A45; }

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--sand) 0%, rgba(237,230,211,0.55) 30%, rgba(237,230,211,0.05) 55%, transparent 70%);
  z-index: 2;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-crossfade 16s infinite;
}
.hero-bg-layer-1 {
  background-image: url('/assets/img/hero-bg-1.jpg');
  animation-delay: 0s;
}
.hero-bg-layer-2 {
  background-image: url('/assets/img/hero-bg-2.jpg');
  animation-delay: -8s;
}
@keyframes hero-crossfade {
  0%   { opacity: 1; }
  47%  { opacity: 1; }
  53%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-layer { animation: none; }
  .hero-bg-layer-1 { opacity: 1; }
  .hero-bg-layer-2 { opacity: 0; }
}
@media (max-width: 880px) {
  .hero-photo { min-height: 460px; }
  .hero-photo .wrap { padding-top: 60px; padding-bottom: 60px; }
}

/* ---------- Search bar ---------- */
.search-bar {
  background: var(--eucalyptus);
  margin-top: -1px;
}
.search-bar .wrap {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.search-bar select,
.search-bar input {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.search-bar button {
  flex: 0 0 auto;
}

/* ---------- Section ---------- */
.section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.2rem;
  gap: 20px;
}
.section-head h2 { font-size: 2rem; margin: 0; }
.section-head .desc { color: var(--eucalyptus-light); max-width: 46ch; margin: 0.4em 0 0; }
.section-alt { background: var(--sky); }

/* ---------- Destination grid (asymmetric) ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  color: var(--paper);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  background: var(--eucalyptus) center / cover no-repeat;
}
.dest-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,36,32,0) 40%, rgba(24,36,32,0.82) 100%);
}
.dest-card .card-body {
  position: relative;
  padding: 20px;
}
.dest-card .region {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.dest-card h3 { color: var(--paper); margin: 0.15em 0 0.2em; font-size: 1.35rem; }
.dest-card .tagline { font-size: 0.9rem; opacity: 0.92; margin: 0; }

.dest-card.span-3 { grid-column: span 3; }
.dest-card.span-4 { grid-column: span 4; }
.dest-card.span-2 { grid-column: span 2; }
.dest-card.tall { min-height: 400px; }

/* ---------- Cards (tours/hotels/guides) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.card .thumb {
  height: 190px;
  background: var(--sand-deep) center / cover no-repeat;
}
.card .body { padding: 20px; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.card .meta {
  font-size: 0.85rem;
  color: var(--eucalyptus-light);
  margin-bottom: 0.6em;
}
.card .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ochre-dark);
  font-weight: 600;
}
.card .summary { font-size: 0.94rem; color: #3b4a45; }
.stars { color: var(--gold); letter-spacing: 1px; }

/* ---------- Breadcrumb / single page ---------- */
.breadcrumb {
  font-size: 0.88rem;
  color: var(--eucalyptus-light);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--eucalyptus-light); }
.breadcrumb a:hover { color: var(--ochre-dark); }

.single-hero {
  height: 360px;
  background: var(--sand-deep) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.single-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,36,32,0) 30%, rgba(24,36,32,0.75) 100%);
}
.single-hero .wrap { position: relative; padding-bottom: 34px; }
.single-hero h1 { color: var(--paper); margin: 0; }
.single-hero .region { color: var(--sky); font-size: 0.95rem; }

.single-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 56px 0;
}
.sidebar {
  background: var(--sand);
  border-radius: 5px;
  padding: 24px;
  align-self: start;
}
.sidebar h4 { font-size: 1rem; margin-bottom: 0.8em; }
.sidebar dl { margin: 0; }
.sidebar dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--eucalyptus-light); margin-top: 0.8em; }
.sidebar dd { margin: 0.15em 0 0; font-weight: 600; }

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--eucalyptus-light);
}

/* ---------- Australia locator map ---------- */
.oz-map-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 40px;
}
.oz-map { width: 100%; height: auto; max-height: 520px; display: block; margin: 0 auto; }
.oz-landmass {
  fill: var(--sand);
  stroke: var(--eucalyptus-light);
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.oz-pin-link { cursor: pointer; }
.oz-pin-dot { fill: var(--ochre); stroke: var(--paper); stroke-width: 2; transition: r 0.15s ease; }
.oz-pin-pulse { fill: none; stroke: var(--ochre); stroke-width: 1.5; opacity: 0; }
.oz-pin-label {
  fill: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-anchor: middle;
  opacity: 0;
  transition: opacity 0.15s ease;
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: 3px;
}
.oz-pin-link:hover .oz-pin-dot { r: 10; }
.oz-pin-link:hover .oz-pin-label { opacity: 1; }
.oz-pin-link:hover .oz-pin-pulse {
  opacity: 1;
  animation: oz-pin-ping 1.2s ease-out infinite;
}
@keyframes oz-pin-ping {
  from { r: 9; opacity: 0.6; }
  to { r: 20; opacity: 0; }
}
.oz-map-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--eucalyptus-light);
  margin: 12px 0 0;
}
@media (max-width: 640px) {
  .oz-pin-label { opacity: 1; font-size: 9px; }
  .oz-pin-dot { r: 5; }
}

/* ---------- Filter pills (destinations listing) ---------- */
.filter-pills {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.filter-pills .wrap {
  display: flex;
  gap: 12px;
  padding: 22px 28px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--eucalyptus);
  background: var(--paper);
}
.pill span {
  background: var(--sand);
  color: var(--eucalyptus-light);
  border-radius: 30px;
  padding: 1px 8px;
  font-size: 0.78rem;
}
.pill.active,
.pill:hover {
  background: var(--eucalyptus);
  color: var(--paper);
  border-color: var(--eucalyptus);
}
.pill.active span,
.pill:hover span {
  background: rgba(251,249,243,0.2);
  color: var(--paper);
}

/* ---------- Card extras (destination listing) ---------- */
.thumb { position: relative; }
.thumb-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ochre);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.card-tags {
  display: flex;
  gap: 8px;
  margin-top: 0.8em;
  flex-wrap: wrap;
}
.card-tags span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--eucalyptus);
  background: var(--sand);
  padding: 4px 9px;
  border-radius: 3px;
}

/* ---------- Destination page hero (dest-hero) ---------- */
.dest-hero {
  height: 440px;
  background: var(--sand-deep) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.dest-hero-overlay {
  width: 100%;
  background: linear-gradient(180deg, rgba(24,36,32,0.15) 0%, rgba(24,36,32,0.85) 85%);
  padding: 60px 0 44px;
}
.dest-hero-overlay h1 {
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 0.25em;
}
.dest-hero-subtitle {
  color: var(--sky);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 1.4em;
}
.dest-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.dest-body .lead-text {
  font-size: 1.1rem;
  color: var(--eucalyptus-light);
}

/* ---------- Quick picks box ---------- */
.quick-picks {
  background: var(--sand);
  border-left: 4px solid var(--ochre);
  border-radius: 3px;
  padding: 20px 24px;
  margin: 1.6em 0;
}
.quick-picks h4 { margin-bottom: 0.6em; font-size: 1rem; }
.quick-picks dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 0; }
.quick-picks dt { color: var(--eucalyptus-light); font-size: 0.9rem; }
.quick-picks dd { margin: 0; font-weight: 600; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-heading { margin-top: 2em; }
.faq-list { display: flex; flex-direction: column; gap: 1.2em; }
.faq-item h4 { font-size: 1.02rem; margin-bottom: 0.25em; }
.faq-item p { color: #3b4a45; font-size: 0.95rem; margin: 0; }

/* ---------- Sidebar links list ---------- */
.sidebar-links { list-style: none; margin: 0 0 1.6em; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--line); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 10px 2px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--eucalyptus);
}
.sidebar-links a:hover { color: var(--ochre-dark); }
.sidebar-cta {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px;
}
.sidebar-cta h4 { font-size: 0.98rem; margin-bottom: 0.3em; }
.sidebar-cta p { font-size: 0.86rem; color: var(--eucalyptus-light); margin-bottom: 1em; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--eucalyptus);
  padding: 72px 0;
  text-align: center;
  margin-top: 20px;
}
.cta-banner h2 { color: var(--paper); font-size: 2rem; }
.cta-banner p { color: var(--sky); margin-bottom: 1.6em; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Tour/hotel content extras ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0.8em 0;
  display: grid;
  gap: 8px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--eucalyptus);
  font-weight: 700;
}
.amenity-grid {
  list-style: none;
  padding: 0;
  margin: 0.8em 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.amenity-grid li {
  background: var(--sand);
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--eucalyptus);
}
.itinerary-list {
  margin: 0.8em 0;
  padding-left: 22px;
}
.itinerary-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.includes-excludes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.4em 0;
}
.includes-excludes h4 { font-size: 0.95rem; margin-bottom: 0.5em; }
.includes-excludes ul { list-style: none; padding: 0; margin: 0; }
.includes-excludes li {
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}
.includes-excludes li:last-child { border-bottom: none; }
@media (max-width: 640px) {
  .includes-excludes { grid-template-columns: 1fr; }
}

/* ---------- Insider tip / reality check callouts ---------- */
.insider-tip {
  background: #FBF3E4;
  border-left: 4px solid var(--gold);
  border-radius: 3px;
  padding: 16px 20px;
  margin: 1.6em 0;
}
.insider-tip h4 { font-size: 0.92rem; margin-bottom: 0.4em; color: #8A5D0F; }
.insider-tip p { margin: 0; font-size: 0.94rem; }

.reality-check {
  background: var(--sky);
  border-left: 4px solid var(--eucalyptus);
  border-radius: 3px;
  padding: 16px 20px;
  margin: 1.6em 0;
}
.reality-check h4 { font-size: 0.92rem; margin-bottom: 0.4em; color: var(--eucalyptus); }
.reality-check p { margin: 0; font-size: 0.94rem; }

/* ---------- Last updated / trust line ---------- */
.last-updated {
  font-size: 0.82rem;
  color: var(--eucalyptus-light);
  margin: 0 0 1.2em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--line);
}

/* ---------- Photo strip + lightbox ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin: 1.6em 0;
}
.photo-strip-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
}
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24,36,32,0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 4px; }

/* ---------- Social share buttons ---------- */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.8em 0;
}
.share-label { font-size: 0.85rem; font-weight: 600; color: var(--eucalyptus); margin-right: 4px; }
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--eucalyptus);
  border: none;
  cursor: pointer;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.share-btn:hover { background: var(--eucalyptus); color: var(--paper); }
.share-copy {
  width: auto;
  border-radius: 30px;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
}

/* ---------- Australia travel basics box ---------- */
.basics-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px;
  margin-top: 18px;
}
.basics-box h4 { font-size: 0.98rem; margin-bottom: 0.7em; }
.basics-box dl { display: grid; grid-template-columns: auto 1fr; gap: 5px 14px; margin: 0; }
.basics-box dt { font-size: 0.8rem; color: var(--eucalyptus-light); }
.basics-box dd { margin: 0; font-size: 0.85rem; font-weight: 600; text-align: right; }

/* ---------- Car hire cross-sell box ---------- */
.car-hire-box {
  background: var(--sand);
  border-radius: 4px;
  padding: 18px;
  margin-top: 18px;
}
.car-hire-box h4 { font-size: 0.98rem; margin-bottom: 0.4em; }
.car-hire-box p { font-size: 0.85rem; color: var(--eucalyptus-light); margin-bottom: 1em; }

/* ---------- Forms (enquiry / contact) ---------- */
.admin-form { background: var(--paper); border: 1px solid var(--line); border-radius: 5px; padding: 28px; max-width: 640px; }
.admin-form .field { margin-bottom: 18px; }
.admin-form label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--eucalyptus); margin-bottom: 6px; }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  background: var(--paper);
}
.admin-form textarea { min-height: 110px; resize: vertical; }
.admin-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.admin-alert.success { background: #E4F0DE; color: #2C4A1E; }
.admin-alert.error { background: #F6DCD3; color: var(--ochre-dark); }

/* ---------- Footer ---------- */
.newsletter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(237,230,211,0.15);
  flex-wrap: wrap;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.newsletter-form input {
  padding: 11px 14px;
  border: 1px solid rgba(237,230,211,0.25);
  background: rgba(237,230,211,0.06);
  border-radius: 3px;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 220px;
}
.newsletter-form input::placeholder { color: rgba(237,230,211,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  padding: 11px 20px;
  border: none;
  border-radius: 3px;
  background: var(--ochre);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--ochre-dark); }
.newsletter-form button:disabled { opacity: 0.6; cursor: default; }
.newsletter-status {
  font-size: 0.85rem;
  margin: -14px 0 20px;
  min-height: 1.2em;
}
.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(237,230,211,0.15);
}
.footer-grid h4 {
  color: var(--sand);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6em; }
.footer-grid a { color: rgba(237,230,211,0.75); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(237,230,211,0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.affiliate-disclosure {
  font-size: 0.76rem;
  color: rgba(237,230,211,0.45);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(237,230,211,0.1);
  line-height: 1.6;
}
.affiliate-disclosure a { color: rgba(237,230,211,0.65); text-decoration: underline; }
.affiliate-disclosure a:hover { color: var(--gold); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  border-top: 1px solid rgba(237,230,211,0.15);
  z-index: 90;
  padding: 16px 0;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  font-size: 0.85rem;
  color: rgba(237,230,211,0.85);
  margin: 0;
  max-width: 60ch;
}
.cookie-banner-inner a { color: var(--gold); }
.cookie-banner-inner button {
  flex-shrink: 0;
  background: var(--ochre);
  color: var(--paper);
  border: none;
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.cookie-banner-inner button:hover { background: var(--ochre-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding: 20px 28px 40px;
    z-index: 49;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav ul li a {
    display: block;
    padding: 16px 4px;
    font-size: 1.05rem;
  }
  .main-nav ul li a::after { display: none; }
  .header-search--desktop { display: none; }
  .header-search--mobile {
    display: flex;
    margin-top: 20px;
  }
  .header-search--mobile input { flex: 1; min-width: 0; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .newsletter-row { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; min-width: 0; }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 40px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.span-3, .dest-card.span-4, .dest-card.span-2 { grid-column: span 2; }
  .card-grid { grid-template-columns: 1fr; }
  .single-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
