/* ==========================================================================
   Snooker & Pool — pool.is
   Design system from the Claude Design handoff (source/Site Desktop.dc.html).
   Dark tokens are the base; light is the default theme (body[data-theme]).
   Breakpoint: 900px.
   ========================================================================== */

:root,
body[data-theme="dark"] {
  --bg: #181E28;
  --surface: #202838;
  --raised: #283040;
  --line: #283040;
  --border: #384050;
  --edge: #384050;
  --footer: #141924;
  --navbg: rgba(32, 40, 56, 0.97);
  --text: #F4F6F8;
  --body: #C9CFD6;
  --muted: #9AA3AD;
  --faint: #6E7683;
  --tint: #FBD9C2;
  --accentText: #F07028;
  --success: #35C07A;
  --stripeA: #1C232F;
  --stripeB: #202838;
  --fadeRGB: 24, 30, 40;
  --surfaceRGB: 32, 40, 56;
  --heroText: #F4F6F8;
  --heroSub: #C9CFD6;
  --heroTint: #FBD9C2;
  --heroGhost: rgba(244, 246, 248, 0.4);
  --g12: 0.12;
  --g20: 0.2;
  --g35: 0.35;
  --g45: 0.45;
  --g55: 0.55;
  --g70: 0.7;
  --g75: 0.75;
  --g93: 0.93;
  --g95: 0.95;
  --g96: 0.96;
  --accent: #F07028;
  --on-accent: #181E28;
  --live: #E5484D;
}

body[data-theme="light"] {
  --bg: #EDEFF2;
  --surface: #F8F9FA;
  --raised: #E3E7ED;
  --line: #DDE1E7;
  --border: #CDD2DA;
  --edge: #D6DAE0;
  --footer: #E4E7EB;
  --navbg: rgba(246, 247, 249, 0.97);
  --text: #1B2230;
  --body: #3E4757;
  --muted: #5D6674;
  --faint: #6F7887;
  --tint: #A34E12;
  --accentText: #C4560D;
  --success: #1E9D5F;
  --stripeA: #E1E4E9;
  --stripeB: #EAEDF1;
  --fadeRGB: 237, 239, 242;
  --surfaceRGB: 248, 249, 250;
  --heroText: #1B2230;
  --heroSub: #3E4757;
  --heroTint: #A34E12;
  --heroGhost: rgba(27, 34, 48, 0.4);
  --g20: 0;
  --g35: 0.08;
  --g45: 0.12;
  --g55: 0.38;
  --g70: 0.5;
  --g75: 0.55;
  --g93: 0.72;
  --g95: 0.88;
  --g96: 0.94;
  --g12: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main > .footer-big { margin-top: auto; }

a { color: inherit; text-decoration: none; }
img { display: block; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
input, textarea { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.condensed { font-family: 'Barlow Condensed', sans-serif; }
.num { font-variant-numeric: tabular-nums; }
.js-hidden { display: none !important; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--navbg);
  border-bottom: 1px solid var(--line);
}

.logo { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.logo-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 2px;
  color: var(--text);
}
.logo-amp {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--on-accent);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links a { color: var(--body); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--accentText);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.header-actions { display: flex; align-items: center; gap: 18px; }

.open-badge { display: flex; align-items: center; gap: 7px; }
.open-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); }
.open-badge .label { font-size: 13px; font-weight: 600; color: var(--success); }
.open-badge.closed .dot { background: var(--faint); }
.open-badge.closed .label { color: var(--faint); }

.theme-toggle {
  transition: border-color 0.15s ease, color 0.15s ease;
  border: 1px solid var(--border);
  color: var(--body);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 999px;
}
.theme-toggle:hover { border-color: var(--faint); color: var(--text); }

.header-phone { font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-accent:hover { background: #D8601E; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accentText); }
.btn-outline-accent:hover { background: rgba(240, 112, 40, 0.12); }
.btn-hero-ghost:hover { border-color: var(--heroText); }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-outline-accent { border: 1px solid var(--accent); color: var(--accentText); }
.btn-hero-ghost { border: 1px solid var(--heroGhost); color: var(--heroText); }

.btn-nav { font-size: 17px; padding: 10px 20px; }

.hamburger { display: none; }

/* Hide/show per breakpoint */
.desktop-only { display: flex; }
@media (min-width: 900px) {
  .mobile-only { display: none !important; }
}

/* --------------------------------------------------------------------------
   Sections & typography
   -------------------------------------------------------------------------- */

.section { padding: 56px 64px 8px; display: flex; flex-direction: column; gap: 22px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; }
.kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accentText);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.see-all { font-size: 16px; font-weight: 600; color: var(--accentText); padding-bottom: 6px; }
.see-all:hover { text-decoration: underline; }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--border); }

.pill {
  display: inline-block;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
}

.tag {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
}
.tag-tint { background: #FBD9C2; color: #181E28; }
.tag-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--live);
  color: #FFFFFF;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  animation: livePulse 1.6s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

/* Photo heroes keep a dark, photo-first treatment in BOTH themes:
   white text over a gentle dark scrim so the image shines through,
   instead of washing the photo out with the light theme's pale fade. */
.hero,
.page-hero {
  --heroText: #F4F6F8;
  --heroSub: #C9CFD6;
  --heroTint: #FBD9C2;
  --heroGhost: rgba(244, 246, 248, 0.4);
  --success: #35C07A;
  --fadeRGB: 24, 30, 40;
  --g12: 0;
  --g20: 0.15;
  --g35: 0.3;
  --g45: 0.35;
  --g55: 0.42;
  --g70: 0.55;
  --g75: 0.6;
  --g93: 0.8;
  --g95: 0.82;
  --g96: 0.85;
}

.hero { position: relative; height: 580px; overflow: hidden; }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-fade-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(var(--fadeRGB), var(--g93)) 0%,
    rgba(var(--fadeRGB), var(--g55)) 48%,
    rgba(var(--fadeRGB), var(--g12)) 100%);
}
.hero-fade-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(var(--fadeRGB), 0) 0%, rgba(var(--fadeRGB), 0.75) 100%);
}
.hero-content {
  position: absolute;
  left: 64px;
  bottom: 56px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--heroText);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-sub { font-size: 19px; line-height: 1.5; color: var(--heroSub); }
.hero-title,
.hero-sub,
.page-hero .page-title,
.page-hero-sub {
  text-shadow: 0 2px 14px rgba(10, 14, 20, 0.45);
}
.hero-ctas { display: flex; gap: 12px; margin-top: 4px; }
.hero-ctas .btn { padding: 16px 38px; border-radius: 12px; font-size: 21px; letter-spacing: 1px; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 64px;
  background: var(--footer);
  border-bottom: 1px solid var(--line);
}
.stat { display: flex; align-items: baseline; gap: 10px; }
.stat b {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--accentText);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat span { font-size: 15px; color: var(--muted); }

/* Page hero (Viðburðir / Hópar) */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(var(--fadeRGB), var(--g96)) 0%,
    rgba(var(--fadeRGB), var(--g75)) 50%,
    rgba(var(--fadeRGB), var(--g45)) 100%);
}
.page-hero-content {
  position: relative;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  color: var(--heroText);
}
.page-hero-sub { font-size: 18px; line-height: 1.5; color: var(--heroSub); }

/* --------------------------------------------------------------------------
   Event cards & rows
   -------------------------------------------------------------------------- */

.event-card { display: flex; flex-direction: column; }
.event-card .event-img { position: relative; height: 170px; }
.event-card .event-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-card .event-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.event-card .event-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card .event-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.event-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.event-when { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 2px; }
.event-desc { font-size: 13px; line-height: 1.5; color: var(--muted); }
.event-card .btn { margin-top: auto; padding: 11px 0; font-size: 16px; }

/* Big featured card on Viðburðir */
.event-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.event-feature .event-img { position: relative; min-height: 230px; }
.event-feature .event-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-feature .event-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.event-feature .event-body { padding: 22px 26px; display: flex; flex-direction: column; gap: 12px; }
.event-feature .event-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.event-feature .event-desc { font-size: 14px; line-height: 1.55; }
.event-feature .event-ctas { display: flex; gap: 10px; margin-top: auto; }
.event-feature .event-ctas .btn { padding: 12px 30px; font-size: 17px; }

.event-row {
  transition: border-color 0.15s ease;
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
}
.event-day {
  width: 64px;
  flex: none;
  text-align: center;
  background: var(--raised);
  border-radius: 12px;
  padding: 10px 0;
}
.event-day .d {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}
.event-day .t { font-size: 13px; color: var(--muted); margin-top: 3px; font-variant-numeric: tabular-nums; }
.event-day.live-day { background: rgba(229, 72, 77, 0.14); padding: 14px 0; }
.event-day.live-day .beint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--live);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
.event-row-main { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.event-row-title { font-size: 18px; font-weight: 600; }
.event-row-sub { font-size: 14px; color: var(--muted); }
.event-row .pill { flex: none; padding: 4px 12px; }
.event-row .chev { color: var(--faint); font-size: 22px; }
.event-row:hover { border-color: var(--border); }

.section-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Filter chips */
.filters {
  display: flex;
  gap: 10px;
  padding: 18px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.filter-chip {
  cursor: pointer;
  flex: none;
  border: 1px solid var(--border);
  color: var(--body);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
}
.filter-chip { transition: border-color 0.15s ease, color 0.15s ease; }
.filter-chip:not(.active):hover { border-color: var(--accent); color: var(--accentText); }
.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
}

.empty-state {
  padding: 28px 20px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  text-align: center;
}
.empty-state .empty-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.empty-state .empty-sub { font-size: 14px; color: var(--muted); line-height: 1.5; }
.empty-state .empty-ctas { display: flex; gap: 10px; margin-top: 4px; }
.empty-state .btn { padding: 11px 22px; font-size: 16px; letter-spacing: 0.6px; }

/* Sidebar cards (Viðburðir) */
.hh-card {
  background: rgba(240, 112, 40, 0.1);
  border: 1px solid rgba(240, 112, 40, 0.35);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hh-card .tag { align-self: flex-start; font-size: 13px; }
.hh-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}
.hh-sub { font-size: 14px; line-height: 1.5; color: var(--body); }

.list-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.list-card .list-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.list-card .list-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.list-card .list-row:last-child { border-bottom: 0; }
.list-card .list-row .k { font-weight: 600; }
.list-card .list-row .v { color: var(--muted); }

.promo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.promo-sub { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* --------------------------------------------------------------------------
   Menu (matseðill)
   -------------------------------------------------------------------------- */

.menu-cat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 27px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.menu-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}
.menu-item a.js-lightbox {
  flex: none;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}
.menu-item img { width: 108px; height: 108px; object-fit: cover; border-radius: 12px; flex: none; transition: transform 0.25s ease; }
.menu-item a.js-lightbox:hover img { transform: scale(1.06); }
.menu-item-main { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-item-title { font-size: 17px; font-weight: 600; }
.menu-item-top .pill { flex: none; padding: 3px 11px; font-variant-numeric: tabular-nums; }
.menu-item-desc { font-size: 14px; line-height: 1.5; color: var(--muted); }

.hh-banner { display: flex; align-items: center; gap: 10px; padding-bottom: 6px; }
.hh-banner .tag { font-size: 13px; padding: 3px 8px; }
.hh-banner span:last-child { font-size: 14px; font-weight: 600; color: var(--tint); }

/* Food teaser cards (home) */
.food-card .pill { align-self: flex-start; font-variant-numeric: tabular-nums; }
.food-card a.js-lightbox { display: block; overflow: hidden; cursor: zoom-in; }
.food-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.25s ease; }
.food-card a.js-lightbox:hover img { transform: scale(1.04); }
.food-card .food-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.food-title { font-size: 16px; font-weight: 600; }
.food-desc { font-size: 13px; line-height: 1.5; color: var(--muted); }

/* Price list cards (home) */
.price-card img { width: 100%; height: 210px; object-fit: cover; }
.price-card .price-body { padding: 16px 18px 18px; display: flex; align-items: center; justify-content: space-between; }
.price-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
}
.price-sub { font-size: 14px; color: var(--muted); }
.price-sub b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.price-card .btn { padding: 10px 18px; font-size: 16px; letter-spacing: 0.6px; }

/* --------------------------------------------------------------------------
   Info blocks / hours / map / contact
   -------------------------------------------------------------------------- */

.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-row { display: flex; justify-content: space-between; font-size: 15px; }
.hours-row .k { color: var(--muted); }
.hours-row .v { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-row.hh .k, .hours-row.hh .v { color: var(--accentText); font-weight: 600; }
.hours-row.hh .v { font-weight: 700; }
.hours-sep { height: 1px; background: var(--raised); }

.map-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(45deg,
    var(--stripeA) 0px, var(--stripeA) 14px,
    var(--stripeB) 14px, var(--stripeB) 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 280px;
}
.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body[data-theme="dark"] .map-box iframe {
  filter: invert(0.88) hue-rotate(180deg) saturate(0.65) contrast(0.92);
}

.contact-card { align-self: start; }
.contact-card .list-row .v { color: var(--text); font-weight: 600; }
.contact-card .list-row .v.accent { color: var(--accentText); }
.contact-card .list-row .k { color: var(--muted); font-weight: 400; }

/* --------------------------------------------------------------------------
   Footers
   -------------------------------------------------------------------------- */

.footer-big {
  padding: 36px 64px 40px;
  background: var(--footer);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-word { font-size: 19px; }
.footer-brand .logo-amp { width: 23px; height: 23px; font-size: 14px; }
.footer-about { font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 320px; }
.footer-copy { font-size: 12px; color: var(--faint); }
.footer-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.footer-col a, .footer-col .soft { font-size: 14px; color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-hours { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-hours .hh { color: var(--accentText); font-weight: 600; }

.footer-slim {
  padding: 22px 64px;
  background: var(--footer);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-slim .left { font-size: 13px; color: var(--faint); }
.footer-slim .right { font-size: 13px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Hópar / Pílufélag specifics
   -------------------------------------------------------------------------- */

.package-card { padding: 24px 22px; display: flex; flex-direction: column; }
.package-no {
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accentText);
  background: rgba(240, 112, 40, 0.12);
  border: 1px solid rgba(240, 112, 40, 0.3);
  padding: 4px 11px;
  border-radius: 999px;
}
.package-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-top: 15px;
}
.package-list { display: flex; flex-direction: column; gap: 11px; list-style: none; margin-top: 18px; }
.package-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.package-price small { font-size: 12px; font-weight: 600; color: var(--muted); font-family: 'Barlow', sans-serif; }
.package-price-note {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--raised);
  border: 1px solid var(--border);
  padding: 4px 11px;
  border-radius: 999px;
}
.package-list li {
  display: flex;
  gap: 11px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--body);
}
.package-list li::before {
  content: "";
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(240, 112, 40, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F07028' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.dash-list { display: flex; flex-direction: column; gap: 6px; font-size: 14px; line-height: 1.5; color: var(--body); }
.dash-list > div { display: flex; gap: 8px; }
.dash-list .dash { color: var(--accentText); font-weight: 700; }
.note { font-size: 14px; color: var(--faint); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}
.form-row { display: flex; gap: 14px; }
.input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
body[data-theme="light"] .input { background: #FFFFFF; }
.input::placeholder { color: var(--muted); }
.input:hover { border-color: var(--faint); }
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 112, 40, 0.18);
}
textarea.input { min-height: 90px; resize: vertical; }
.form-card .btn { width: 100%; padding: 14px 0; border-radius: 12px; font-size: 19px; }
.form-foot { font-size: 13px; color: var(--faint); text-align: center; }
.form-success {
  background: rgba(53, 192, 122, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
}
.form-error { color: var(--live); font-size: 13px; }

/* Pílufélag membership card */
.membership-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.membership-top { display: flex; justify-content: space-between; align-items: baseline; }
.membership-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}
.membership-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--accentText);
  font-variant-numeric: tabular-nums;
}
.membership-card .dash-list { gap: 11px; font-size: 15px; line-height: 1.55; }
.membership-card .dash-list b { color: var(--text); font-weight: 600; }
.membership-card .btn { padding: 16px 0; border-radius: 12px; font-size: 20px; }
.membership-foot { font-size: 14px; color: var(--faint); text-align: center; }

.hh-inline {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(240, 112, 40, 0.1);
  border: 1px solid rgba(240, 112, 40, 0.35);
  border-radius: 14px;
  padding: 18px;
}
.hh-inline .chev { color: var(--accentText); font-size: 22px; }

/* Bóka tíma */
.steps { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-no {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accentText);
}
.step-text { font-size: 16px; line-height: 1.5; color: var(--body); padding-top: 3px; }

.booking-card { border: 1px solid var(--border); border-radius: 18px; }
.booking-img { position: relative; height: 200px; }
.booking-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.booking-img .fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--fadeRGB), 0.1) 0%, rgba(var(--surfaceRGB), 0.95) 100%);
}
.booking-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 14px; }
.booking-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.booking-body .hours-row { font-size: 14px; }
.booking-body .btn { padding: 16px 0; border-radius: 12px; font-size: 20px; }
.booking-foot { font-size: 13px; line-height: 1.5; color: var(--faint); text-align: center; }

.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 640px; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-card .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
}
.mini-card .sub { font-size: 14px; color: var(--muted); }
.mini-card .sub b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }

.callout {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  max-width: 640px;
}
.callout-main { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.callout-title { font-size: 16px; font-weight: 600; }
.callout-sub { font-size: 14px; color: var(--muted); }
.callout .btn { padding: 11px 22px; font-size: 16px; letter-spacing: 0.6px; flex: none; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid a {
  display: block;
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }

/* Lightbox */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 20, 0.93);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  color: #C9CFD6;
  font-size: 14px;
  font-weight: 600;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F4F6F8;
  border: 1px solid rgba(244, 246, 248, 0.35);
  background: rgba(24, 30, 40, 0.55);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { border-color: #F07028; color: #F07028; }
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 18px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  padding-bottom: 3px;
}
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* Prose */
.prose { font-size: 17px; line-height: 1.65; color: var(--body); }
.prose .accent { color: var(--accentText); font-weight: 600; }

/* --------------------------------------------------------------------------
   Mobile bottom bar, hamburger menu
   -------------------------------------------------------------------------- */

.bottombar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
  padding: 10px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  background: var(--navbg);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.bottombar-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 0 7px;
  color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, transform 0.08s ease;
}
.bottombar-item:active { transform: scale(0.95); }
.bottombar-icon {
  width: 21px;
  height: 21px;
  transition: transform 0.15s ease;
}
.bottombar-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
}
.bottombar-item.active {
  color: var(--accentText);
  border-color: var(--accent);
  background: rgba(240, 112, 40, 0.08);
}
.bottombar-item.active::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.bottombar-item.active .bottombar-icon { transform: translateY(-1px); }

.bottombar-item.primary {
  border: 0;
  color: var(--on-accent);
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(240, 112, 40, 0.4);
  animation: bottombarPulse 2.8s ease-in-out infinite;
}
.bottombar-item.primary .bottombar-label {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
}
.bottombar-item.primary.active::before { display: none; }

@keyframes bottombarPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(240, 112, 40, 0.35); }
  50% { box-shadow: 0 4px 22px rgba(240, 112, 40, 0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .bottombar-item.primary { animation: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  flex-direction: column;
  padding: 12px 20px 30px;
  overflow: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 0 10px; }
.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.mobile-menu-links { display: flex; flex-direction: column; }
.mobile-menu-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-links a span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.mobile-menu-links a span:last-child { color: var(--faint); font-size: 24px; }
.mobile-menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 26px; }
.mobile-menu-foot .btn { padding: 14px 0; border-radius: 12px; font-size: 18px; }
.mobile-menu-foot .addr { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Mobile (≤899px)
   ========================================================================== */

@media (max-width: 899px) {
  body { padding-bottom: 66px; }
  body.menu-open { overflow: hidden; }

  .desktop-only { display: none !important; }
  .bottombar { display: grid; }

  .site-header { padding: 10px 16px; }
  .logo { gap: 6px; }
  .logo-word { font-size: 17px; letter-spacing: 1.5px; }
  .logo-amp { width: 22px; height: 22px; font-size: 14px; }
  .header-actions { gap: 14px; }
  .header-actions .btn-nav { order: -1; }
  .btn-nav { font-size: 16px; letter-spacing: 0.6px; padding: 9px 14px; }

  .hamburger { display: flex; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px 0; }
  .hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

  /* Hero */
  .hero { height: 480px; }
  .hero-fade-x {
    background: linear-gradient(180deg,
      rgba(var(--fadeRGB), var(--g20)) 0%,
      rgba(var(--fadeRGB), var(--g35)) 45%,
      rgba(var(--fadeRGB), 0.97) 100%);
  }
  .hero-fade-bottom { display: none; }
  .hero-content { left: 0; right: 0; bottom: 0; padding: 0 20px 22px; gap: 12px; }
  .hero-title { font-size: 42px; line-height: 0.98; letter-spacing: 0.4px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { gap: 10px; margin-top: 2px; }
  .hero-ctas .btn { flex: 1; padding: 14px 0; font-size: 19px; letter-spacing: 0.8px; }
  .hero-ctas .btn:first-child { flex: 1.2; }

  .stats-bar { display: none; }

  .hh-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(240, 112, 40, 0.12);
    border-bottom: 1px solid var(--line);
  }

  .section { padding: 28px 20px 4px; gap: 14px; }
  .kicker { font-size: 13px; letter-spacing: 2.5px; }
  .section-title { font-size: 27px; line-height: 1.05; }
  .page-title { font-size: 38px; }
  .see-all { font-size: 14px; padding-bottom: 3px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 12px; }
  .menu-grid { grid-template-columns: 1fr; gap: 10px; }

  .page-hero-content { padding: 26px 20px 14px; gap: 6px; }
  .page-hero-sub { font-size: 15px; }

  .filters {
    padding: 6px 20px 16px;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-chip { font-size: 15px; padding: 8px 14px; }

  .event-feature { grid-template-columns: 1fr; border-radius: 16px; }
  .event-feature .event-img { min-height: 160px; height: 160px; }
  .event-feature .event-body { padding: 14px 16px 16px; gap: 10px; }
  .event-feature .event-title { font-size: 25px; }
  .event-feature .event-ctas .btn { flex: 1; padding: 12px 0; }
  .event-feature .event-ctas .btn:first-child { flex: 1.3; }

  .event-card .event-img { height: 150px; }
  .event-row { gap: 12px; border-radius: 14px; padding: 12px 14px; }
  .event-day { width: 54px; border-radius: 10px; padding: 8px 0; }
  .event-day .d { font-size: 17px; }
  .event-day .t { font-size: 12px; margin-top: 2px; }
  .event-row-title { font-size: 16px; }
  .event-row-sub { font-size: 13px; }
  .event-row .chev { font-size: 20px; }

  .menu-cat-title { font-size: 23px; }
  .menu-item { gap: 12px; border-radius: 14px; padding: 10px; }
  .menu-item img { width: 92px; height: 92px; border-radius: 10px; }
  .menu-item-title { font-size: 16px; }
  .menu-item-desc { font-size: 13px; line-height: 1.45; }

  .price-card { display: flex; gap: 14px; align-items: center; border-radius: 14px; padding: 10px; }
  .price-card img { width: 86px; height: 86px; border-radius: 10px; flex: none; }
  .price-card .price-body { padding: 0; flex: 1; }
  .price-name { font-size: 21px; letter-spacing: 0.4px; }
  .price-card .btn { padding: 9px 14px; font-size: 15px; }

  .food-card img { height: 124px; }
  .food-card .food-body { padding: 10px 12px 12px; gap: 6px; }
  .food-title { font-size: 15px; }
  .food-desc { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 118px; gap: 10px; }
  .gallery-grid a { height: 100%; border-radius: 12px; }
  .gallery-grid a:first-child { grid-row: span 2; }

  .lightbox { padding: 12px; }
  .lightbox img { max-width: 96vw; max-height: 74vh; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }

  .hours-card { border-radius: 14px; padding: 16px; gap: 10px; }
  .hours-row { font-size: 14px; }
  .map-box { min-height: 150px; border-radius: 14px; }

  .mini-cards { grid-template-columns: 1fr; gap: 10px; }
  .mini-card { flex-direction: row; justify-content: space-between; align-items: center; padding: 13px 16px; border-radius: 12px; }
  .mini-card .name { font-size: 19px; }

  .steps { gap: 12px; }
  .step { gap: 12px; }
  .step-no { width: 26px; height: 26px; font-size: 13px; }
  .step-text { font-size: 14px; }

  .callout { flex-direction: column; align-items: stretch; padding: 16px; border-radius: 14px; }
  .callout .btn { padding: 12px 0; }

  .section-sub { font-size: 20px; }

  .package-card { padding: 18px 16px; }
  .package-title { font-size: 23px; margin-top: 12px; }
  .package-list { gap: 9px; margin-top: 14px; }
  .package-list li { font-size: 13px; line-height: 1.4; }
  .package-foot { padding-top: 14px; }
  .dash-list { font-size: 13px; line-height: 1.45; gap: 5px; }

  .membership-card { padding: 18px; gap: 12px; }
  .membership-title { font-size: 24px; }
  .membership-price { font-size: 28px; }
  .membership-card .dash-list { font-size: 14px; gap: 8px; }
  .membership-card .btn { padding: 14px 0; font-size: 18px; }

  .form-card { padding: 18px; gap: 14px; }
  .form-fields { gap: 14px; }
  .form-title { font-size: 23px; }
  .form-row { flex-direction: row; gap: 10px; }
  .form-card .btn { font-size: 18px; }

  .prose { font-size: 15px; line-height: 1.6; }

  .pilufelag-cards { flex-direction: column; }
  .pilufelag-cards .mini-card { flex-direction: column; align-items: stretch; }
  .pilufelag-cards img { height: 200px !important; }
  .about-img { height: 200px !important; border-radius: 14px !important; }

  .footer-big { padding: 24px 20px 28px; display: flex; flex-direction: column; gap: 10px; }
  .footer-big .footer-col { display: none; }
  .footer-big .footer-brand { gap: 10px; }
  .footer-slim {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 20px 28px;
  }
  .footer-slim .left { line-height: 1.6; }

  .two-col { display: flex; flex-direction: column; gap: 24px !important; padding: 26px 20px 34px !important; }
}

/* Split layouts: single column on mobile, content + sidebar on desktop */
.split { display: flex; flex-direction: column; gap: 24px; padding: 22px 20px 34px; }

@media (min-width: 900px) {
  .split { display: grid; gap: 40px; padding: 44px 64px 64px; align-items: start; }
  .split-events { grid-template-columns: 1fr 380px; }
  .split-booking { grid-template-columns: 1fr 480px; gap: 56px; padding-top: 56px; }
  .split-pilufelag { grid-template-columns: 1fr 560px; gap: 56px; padding-top: 56px; }
  .split-about { grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 64px 24px; }
  .split-map { grid-template-columns: 1fr 1.2fr; gap: 32px; }
  .split-hopar { grid-template-columns: 1fr 1fr; padding-top: 40px; }
  .packages-grid { grid-auto-rows: 1fr; }
  .hh-strip { display: none; }
}
