/* ==========================================================================
   Hunter Horseboxes — Site Stylesheet
   Palette: deep navy/black + steel blue + teal accent
   ========================================================================== */

:root {
  --c-black:        #0a1420;
  --c-navy:         #0f2438;
  --c-navy-2:       #16324a;
  --c-blue:         #1c4e70;
  --c-teal:         #12a99e;
  --c-teal-bright:  #1fd7c4;
  --c-teal-dark:    #0c7d75;
  --c-white:        #f5f9fa;
  --c-off:          #dce6ea;
  --c-grey:         #8ba0ac;
  --c-line:         rgba(220, 230, 234, 0.12);

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--c-white);
  color: var(--c-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--c-black);
}
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-teal-dark);
  margin-bottom: 12px;
}
.on-dark .eyebrow { color: var(--c-teal-bright); }

.section {
  padding: 84px 0;
}
.section--tight { padding: 56px 0; }
.section--dark {
  background: linear-gradient(160deg, var(--c-black) 0%, var(--c-navy) 100%);
  color: var(--c-off);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--alt { background: #eef3f5; }

.section-head {
  max-width: 680px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--c-grey); font-size: 1.05rem; }
.section--alt .section-head p, .section .section-head p { color: #52626c; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--c-teal) 0%, var(--c-teal-bright) 100%);
  color: #04201d;
  box-shadow: 0 8px 22px rgba(18,169,158,.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(18,169,158,.5); }
.btn-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { border-color: var(--c-teal-bright); color: var(--c-teal-bright); }
.btn-outline-dark {
  border-color: var(--c-navy);
  color: var(--c-navy);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--c-teal-dark); color: var(--c-teal-dark); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 20, 32, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .logo-mark {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(18,169,158,.35));
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: .16em;
  color: var(--c-teal-bright);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  color: var(--c-off);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(31,215,196,.12); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--c-teal-bright);
  border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  white-space: nowrap;
}
.header-phone .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-teal-bright);
  box-shadow: 0 0 0 4px rgba(31,215,196,.18);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--c-black) 0%, var(--c-navy) 55%, var(--c-navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .38;
  mix-blend-mode: luminosity;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,20,32,.96) 20%, rgba(10,20,32,.55) 60%, rgba(18,169,158,.18) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 640px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--c-teal-bright); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--c-off);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--c-teal-bright);
}
.hero-stats .stat span { font-size: .82rem; color: var(--c-grey); text-transform: uppercase; letter-spacing: .06em; }

/* Page header (inner pages) */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  background: linear-gradient(150deg, var(--c-black) 0%, var(--c-navy) 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover; background-position: center;
  opacity: .25; mix-blend-mode: luminosity;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,20,32,.95) 30%, rgba(10,20,32,.65) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { color: var(--c-teal-bright); font-family: var(--font-head); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.page-hero p { color: var(--c-off); max-width: 620px; font-size: 1.05rem; }

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

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10,20,32,.08);
  border: 1px solid rgba(10,20,32,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(10,20,32,.14); }
.card-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-media .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,20,32,.75);
  color: var(--c-teal-bright);
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card-body p { color: #52626c; font-size: .95rem; flex: 1; }
.card-body .btn { margin-top: 14px; align-self: flex-start; }

/* Icon feature list */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: #fff;
  border: 1px solid rgba(10,20,32,.07);
  border-radius: var(--radius);
  padding: 28px;
}
.section--dark .feature {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.feature .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-bright) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #04201d;
  font-size: 1.3rem;
  font-weight: 700;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: .93rem; color: #57666f; margin: 0; }
.section--dark .feature p { color: var(--c-grey); }

/* Spec list */
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.spec-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--c-navy-2);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(10,20,32,.12);
}
.spec-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 5px;
  background: var(--c-teal);
  position: relative;
}
.spec-list li::after {
  content: "";
  position: absolute;
}
.section--dark .spec-list li {
  color: var(--c-off);
  border-bottom-color: rgba(255,255,255,.12);
}
.spec-list.is-collapsed li.spec-extra { display: none; }

.spec-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--c-teal-dark);
  cursor: pointer;
}
.section--dark .spec-toggle { color: var(--c-teal-bright); }
.spec-toggle:hover { text-decoration: underline; }
.spec-toggle .chevron {
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.spec-toggle[aria-expanded="true"] .chevron { transform: rotate(-135deg); }

/* Two column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img, .split .media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-block {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--c-teal-dark) 0%, var(--c-teal) 55%, #0f7f77 100%);
  color: #04201d;
  padding: 56px 0;
}
.cta-band .cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { color: #04201d; margin-bottom: 6px; font-size: 1.7rem; }
.cta-band p { color: rgba(4,32,29,.75); margin: 0; }
.cta-band .btn-primary { background: #04201d; color: #fff; box-shadow: none; }
.cta-band .btn-primary:hover { background: #06322c; }

/* Model tabs / badges */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.badge {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(18,169,158,.1);
  color: var(--c-teal-dark);
  border: 1px solid rgba(18,169,158,.25);
}

/* Table (finance) */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: 0 4px 18px rgba(10,20,32,.08); }
table { width: 100%; border-collapse: collapse; background: #fff; }
table th, table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid rgba(10,20,32,.08); font-size: .95rem; }
table th { background: var(--c-navy); color: #fff; font-family: var(--font-head); font-weight: 600; }
table tr:last-child td { border-bottom: none; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.contact-info-card {
  background: linear-gradient(160deg, var(--c-black) 0%, var(--c-navy) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card ul { margin-top: 18px; }
.contact-info-card li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-info-card li:last-child { border-bottom: none; }
.contact-info-card .ico {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 9px;
  background: rgba(31,215,196,.14);
  color: var(--c-teal-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-info-card .ico-whatsapp {
  background: rgba(37,211,102,.16);
  color: #25d366;
}
.contact-info-card .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--c-grey); }
.contact-info-card .value { font-family: var(--font-head); font-weight: 600; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  transition: background .15s;
}
.social-row a:hover { background: var(--c-teal); }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 18px rgba(10,20,32,.08);
  border: 1px solid rgba(10,20,32,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--c-navy);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #d7e0e3;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fbfdfd;
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-teal);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: #7a8a92; margin-top: 4px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 8px; font-size: .92rem; display: none; }
.form-status.success { display: block; background: rgba(18,169,158,.1); color: var(--c-teal-dark); border: 1px solid rgba(18,169,158,.3); }
.form-status.error { display: block; background: rgba(220,50,50,.08); color: #b02a2a; border: 1px solid rgba(220,50,50,.25); }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 28px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

.w3w-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(10,20,32,.08);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(10,20,32,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.w3w-block:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,20,32,.12); }
.w3w-ico {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: #e11f26; /* what3words red, per their brand mark */
  letter-spacing: -1px;
}
.w3w-block .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: #7a8a92; }
.w3w-block .value { font-family: var(--font-head); font-weight: 700; color: var(--c-navy); font-size: 1rem; }

/* Footer */
.site-footer {
  background: var(--c-black);
  color: var(--c-grey);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-line);
}
.footer-grid h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid p { font-size: .9rem; color: var(--c-grey); }
.footer-grid ul li { margin-bottom: 10px; font-size: .92rem; }
.footer-grid ul li a:hover { color: var(--c-teal-bright); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: .82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--c-teal-bright); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .g-item {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-navy);
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}
.gallery .g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,20,32,0);
  transition: background .18s ease;
}
.gallery .g-item:hover::after { background: rgba(10,20,32,.28); }
.gallery .g-item .g-zoom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.7);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,20,32,.55);
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.gallery .g-item:hover .g-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,12,20,.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 70px 24px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
  max-width: 100%; max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  display: block;
  margin: 0 auto;
  user-select: none;
}
.lightbox-btn {
  position: fixed;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
  z-index: 1001;
}
.lightbox-btn:hover { background: var(--c-teal); border-color: var(--c-teal); }
.lightbox-close { top: 22px; right: 24px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--c-off);
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .04em;
  z-index: 1001;
}
@media (max-width: 640px) {
  .lightbox-overlay { padding: 90px 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-btn { width: 40px; height: 40px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1180px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .header-phone { display: none; }
  .site-header.open .main-nav {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-navy);
    padding: 10px 0;
    border-top: 1px solid var(--c-line);
  }
  .site-header.open .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0 24px; }
  .site-header.open .main-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--c-line); border-radius: 0; }
}
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 150px 0 60px; }
  .hero-stats { gap: 24px; }
  .cta-band .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .spec-list { grid-template-columns: 1fr; }
}
