/* ==========================================================================
   Brovad Sands Lodge — Ssese Islands, Kalangala
   Rebuilt from the July 2026 archive of brovadsandslodge.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --teal:        #6ab1bf;   /* primary accent: buttons, links, rules */
  --teal-deep:   #158399;   /* map / sidebar panels */
  --teal-mid:    #76b1c4;   /* availability submit */
  --navy:        #003956;   /* headings */
  --slate:       #585f77;   /* secondary dark */
  --slate-warm:  #45606b;   /* MV Brovad panel */
  --ink:         #0a0a0a;   /* body copy */
  --muted:       #727475;   /* nav links, meta */
  --line:        #f1f1f1;   /* hairlines */
  --wash:        #f9f9f9;   /* input + section wash */
  --footer:      #1f232c;
  --footer-bar:  #445156;
  --white:       #fff;

  --font-head: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --gap: 30px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 .5em;
  font-weight: 400;
  line-height: 1.25;
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

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

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

iframe { max-width: 100%; border: 0; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 900px; }

.section { padding: 70px 0; }
.section--tight { padding: 45px 0; }
.section--wash { background: var(--wash); }

.center { text-align: center; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section heading cluster ------------------------------------------------- */
.section-head { text-align: center; margin-bottom: 45px; }
.section-head h1,
.section-head h2 { font-weight: 300; margin-bottom: 18px; }
.section-head .eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* Zigzag divider — the theme used a repeating SVG chevron rule ------------- */
.zigzag {
  height: 14px;
  margin-bottom: 40px;
  background: 0 repeat-x url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 18 15'%3E%3Cpolygon fill='%23ebebeb' points='8.98762301 0 0 9.12771969 0 14.519983 9 5.40479869 18 14.519983 18 9.12771969'/%3E%3C/svg%3E");
}

/* Five-star flourish used under the slider caption ------------------------ */
.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 18px;
}
.stars::before,
.stars::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.stars svg { width: 15px; height: 15px; fill: currentColor; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--teal); color: var(--white); }

.btn--solid { background: var(--teal); color: var(--white); }
.btn--solid:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn--dark { border-color: var(--ink); color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--white); }

.btn--ghost { border-color: var(--white); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--navy); }

.btn--pill {
  border-radius: 20px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 9px 16px;
}
.btn--pill:hover { background: var(--teal); color: var(--white); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  line-height: 1.6;
  padding: 10px 0;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 30px;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--teal); }

.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand img { width: 213px; }

.nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav li { margin: 0; }
.nav a {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
}
.nav a:hover,
.nav .is-current > a { color: var(--navy); }

/* Hamburger --------------------------------------------------------------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,45,45,.7) 0%, rgba(45,45,45,.2) 100%);
}

.hero__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero__caption h1 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 4px;
  color: var(--white);
  margin: 0;
}
.hero__kicker {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 2px;
  margin: 22px 0 0;
}

.hero__nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s ease;
}
.hero__dot.is-active,
.hero__dot:hover { background: var(--white); }

/* Slim page banner used on inner pages ------------------------------------ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,45,45,.7) 0%, rgba(45,45,45,.35) 100%);
}
.page-hero__inner { position: relative; z-index: 2; padding: 60px 20px; }
.page-hero h1 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 52px;
  letter-spacing: 3px;
  margin: 0;
}
.page-hero p {
  margin: 18px 0 0;
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

/* Breadcrumb -------------------------------------------------------------- */
.crumbs {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--teal); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* --------------------------------------------------------------------------
   7. Availability search bar
   -------------------------------------------------------------------------- */
.availability {
  display: flex;
  flex-wrap: wrap;
  margin-top: -70px;
  position: relative;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}
.availability__fields {
  flex: 1 1 68%;
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--line);
  border-right: 0;
}
.availability__field {
  flex: 1 1 33.333%;
  text-align: center;
  padding: 0 10px;
  border-right: 2px solid var(--line);
}
.availability__field:last-child { border-right: 0; }
.availability__field label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 14px;
}
.availability__field input,
.availability__field select {
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--navy);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 10px;
  -webkit-appearance: none;
  appearance: none;
}
.availability__submit {
  flex: 1 1 32%;
  border: 0;
  background: var(--teal-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
  cursor: pointer;
  transition: background .25s ease;
}
.availability__submit:hover { background: var(--navy); }

/* --------------------------------------------------------------------------
   8. Room cards
   -------------------------------------------------------------------------- */
.room-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}
.room-card__media { position: relative; }
.room-card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.room-card__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 100%);
}
.room-card__badge .stars { margin: 0; gap: 4px; }
.room-card__badge .stars::before,
.room-card__badge .stars::after { display: none; }

.room-card__body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { font-size: 26px; margin-bottom: 14px; }
.room-card__body p { flex: 1; }
.room-card__body .btn { align-self: flex-start; margin-top: 20px; }

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.room-card__amenities svg { width: 22px; height: 22px; fill: var(--muted); }
.room-card__more {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}
.room-card__more:hover { color: var(--teal); }

/* --------------------------------------------------------------------------
   9. Feature bands
   -------------------------------------------------------------------------- */
/* Two-column split: facilities (dotted divider) + activities */
.split { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.split__left { border-right: 1px dotted #108fa8; padding-right: 40px; }
.split ul { padding-left: 18px; }

/* Parallax enquiry band */
.band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 70px 0 90px;
  color: var(--white);
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 60, .55);
}
.band .wrap { position: relative; z-index: 2; }
.band h2, .band h3 { color: var(--white); }
.band__grid { display: grid; grid-template-columns: 3fr 7fr 2fr; gap: 30px; align-items: center; }
.band__grid h2 { font-weight: 300; font-size: 50px; line-height: 1.05; }
.band__aside h3 { font-size: 18px; line-height: 1.45; letter-spacing: 1px; font-weight: 300; }

/* MV Brovad split band */
.feature-split { display: grid; grid-template-columns: 2fr 1fr; min-height: 520px; }
.feature-split__media { background-size: cover; background-position: center; min-height: 320px; }
.feature-split__panel {
  background: var(--slate-warm);
  color: var(--white);
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-split__panel h2 { color: var(--teal); font-size: 40px; font-weight: 300; }
.feature-split__panel .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--white);
}
.feature-split__panel p { margin-bottom: 24px; }

/* Map + how to find us */
.map-band { display: grid; grid-template-columns: 2fr 1fr; background: var(--teal-deep); }
.map-band__map iframe { width: 100%; height: 100%; min-height: 460px; display: block; }
.map-band__side { color: var(--white); padding: 30px; }
.map-band__side h3 { color: var(--white); }
.map-band__side img { margin-top: 18px; }

/* --------------------------------------------------------------------------
   10. Gallery
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery a { display: block; overflow: hidden; }
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.gallery a:hover img { transform: scale(1.06); filter: brightness(1.05); }

/* Simple photo grid used for "why book with us" */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* Lightbox ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.9);
  padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; object-fit: contain; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   11. Blog teasers
   -------------------------------------------------------------------------- */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-bottom: 30px;
}
.teaser__media { position: relative; min-height: 260px; }
.teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.teaser__body { padding: 50px; }
.teaser__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
.teaser__body h3 { font-size: 28px; }
.teaser__date {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--line); }
.form-card__head {
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  text-align: center;
}
.form-card__head .tag {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
}
.form-card__body { padding: 25px; }

.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 15px; }

label { display: block; font-size: 13px; color: var(--ink); margin-bottom: 6px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="number"], select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 10px 15px;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }

button[type="submit"], input[type="submit"] {
  font-family: var(--font-head);
  background: var(--teal);
  color: var(--white);
  border: 0;
  border-radius: 3px;
  padding: 12px 26px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .25s ease;
}
button[type="submit"]:hover, input[type="submit"]:hover { background: var(--navy); }

.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* Contact detail list ----------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list svg { width: 18px; height: 18px; fill: var(--teal); flex: none; margin-top: 4px; }
.contact-list strong { display: block; color: var(--navy); font-weight: 400; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--footer);
  color: rgba(255,255,255,.85);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer .wrap { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; }
.footer h3 { color: var(--white); font-size: 20px; margin-bottom: 18px; }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--teal); }
.footer img { max-width: 300px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 4px; }

.footer-bar { background: var(--footer-bar); color: var(--white); padding: 18px 0; font-size: 14px; }
.footer-bar .wrap { display: flex; flex-wrap: wrap; gap: 10px 30px; align-items: center; justify-content: space-between; }

/* Back to top ------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top svg { width: 16px; height: 16px; margin: 0 auto; fill: var(--navy); }

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .band__grid { grid-template-columns: 1fr; text-align: center; }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
  .gallery, .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__left { border-right: 0; border-bottom: 1px dotted #108fa8; padding-right: 0; padding-bottom: 30px; }
  .feature-split, .map-band { grid-template-columns: 1fr; }
  .teaser { grid-template-columns: 1fr; }
  .teaser__body { padding: 30px; }

  /* Mobile nav drawer */
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 20px; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav li:last-child { border-bottom: 0; }
  .nav a { display: block; padding: 14px 0; font-size: 17px; }

  .hero { height: 460px; }
  .hero__caption h1 { font-size: 46px; letter-spacing: 2px; }
  .hero__kicker { font-size: 14px; }
  .stars::before, .stars::after { width: 40px; }

  .availability { margin-top: 30px; }
  .availability__fields { flex: 1 1 100%; border-right: 1px solid var(--line); }
  .availability__field { flex: 1 1 100%; border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .availability__field:last-child { border-bottom: 0; }
  .availability__submit { flex: 1 1 100%; padding: 20px; }

  .page-hero h1 { font-size: 34px; }
  .band { background-attachment: scroll; }
}

@media (max-width: 640px) {
  h1 { font-size: 30px; }
  h2 { font-size: 25px; }
  .section { padding: 45px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery, .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer .wrap { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .brand img { width: 170px; }
}

/* --------------------------------------------------------------------------
   15. Motion / print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero__slide { transition: none; }
}

@media print {
  .topbar, .nav, .nav-toggle, .to-top, .hero__nav, .lightbox { display: none !important; }
  body { color: #000; }
}
