/* Biaxi — Portugal product site · fully local */
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/barlow-condensed-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-ext-600-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #152028;
  --slate: #243440;
  --mist: #e8eef1;
  --paper: #f5f7f8;
  --line: #c9d4db;
  --muted: #5c6b75;
  --teal: #0f6e6a;
  --teal-deep: #0a4f4c;
  --teal-soft: #d4ebe9;
  --sand: #d9c4a5;
  --white: #ffffff;
  --danger: #8b3a2f;
  --max: 1120px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Avenir Next", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.25rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(15, 110, 106, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(217, 196, 165, 0.18), transparent 50%),
    linear-gradient(180deg, #eef2f4 0%, var(--paper) 28%, var(--paper) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-deep);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn:focus-visible,
.gallery-thumb:focus-visible,
.size-option:focus-within {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: #fff;
  padding: 0.65rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

ul {
  list-style: none;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Compliance */
.compliance-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
  text-align: center;
  line-height: 1.45;
}

.compliance-bar a {
  color: #fff;
  text-decoration: underline;
}

.topbar {
  background: var(--teal-deep);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.45rem;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.logo-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  align-self: center;
}

.nav-main {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.nav-main a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-main a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.mobile-nav .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: var(--mist);
  color: var(--ink);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0c1218;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3.25rem);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.02);
  animation: heroIn 1.2s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(15, 22, 28, 0.96) 0%,
      rgba(15, 22, 28, 0.9) 32%,
      rgba(15, 22, 28, 0.55) 58%,
      rgba(15, 22, 28, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(15, 22, 28, 0.75) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  max-width: 36rem;
  background: rgba(12, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: rise 0.8s ease-out 0.15s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 10vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 0.85rem;
  color: #fff;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.25rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
}

.badge-warn {
  border-color: var(--sand);
  color: #f3e6d0;
}

/* Sections */
.section {
  padding: var(--section) 0;
}

.section-alt {
  background: var(--mist);
}

.section-ink {
  background: var(--ink);
  color: #fff;
}

.section-header {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.section-ink .eyebrow {
  color: var(--sand);
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-ink .lede {
  color: rgba(255, 255, 255, 0.75);
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 0.25rem 0;
}

.feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Product buy block */
.buy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.gallery-main-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.gallery-thumb {
  border: 2px solid var(--line);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  border-color: var(--teal);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.buy-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1rem 0 0.35rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.field-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}

.size-grid {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.size-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border: 1.5px solid var(--line);
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.size-option:has(input:checked),
.size-option.is-selected {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.size-option input {
  accent-color: var(--teal);
}

.size-option strong {
  display: block;
  font-size: 0.98rem;
}

.size-option small {
  color: var(--muted);
  font-size: 0.85rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.qty-control {
  display: inline-flex;
  border: 1.5px solid var(--line);
}

.qty-control button {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--mist);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}

.qty-control input {
  width: 3rem;
  border: 0;
  text-align: center;
  font: inherit;
  font-weight: 600;
  background: #fff;
}

.shipping-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.specs-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.specs-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--slate);
  font-size: 0.98rem;
}

.specs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--teal);
  border-radius: 1px;
}

/* How to measure */
.measure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.measure-steps {
  display: grid;
  gap: 1rem;
}

.measure-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.measure-step span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.size-table th,
.size-table td {
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  text-align: left;
}

.size-table th {
  background: var(--slate);
  color: #fff;
  font-weight: 600;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.faq-item {
  border: 1.5px solid #c9d4db;
  background: #ffffff;
  color: #152028;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: #152028 !important;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid #c9d4db;
  color: #0a4f4c !important;
}

.faq-item p {
  padding: 1rem 1.15rem 1.15rem;
  color: #5c6b75 !important;
}

/* Disclaimer */
.disclaimer {
  background: rgba(217, 196, 165, 0.22);
  border: 1px solid rgba(217, 196, 165, 0.65);
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
  color: var(--slate);
  margin-top: 2rem;
}

.disclaimer strong {
  color: var(--ink);
}

.cta-band.section-ink .btn-primary {
  background: var(--teal);
  color: #fff;
}

.cta-band.section-ink .lede {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band {
  text-align: center;
  padding: var(--section) 0;
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band .lede {
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  color: #fff;
  margin-bottom: 0.75rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  display: grid;
  gap: 0.5rem;
}

.footer-ad {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Page hero (inner) */
.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prose {
  max-width: 42rem;
  padding: 2.5rem 0 4rem;
}

.prose h2 {
  font-size: 1.55rem;
  margin: 1.75rem 0 0.65rem;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--teal);
}

/* Buy bar mobile */
.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(21, 32, 40, 0.96);
  color: #fff;
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.buy-bar.is-shown {
  transform: translateY(0);
}

.buy-bar strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* Reveal — visible by default (fail-open). Hide only when JS opted in. */
.reveal {
  opacity: 1;
  transform: none;
}

html.js-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroIn {
  from {
    transform: scale(1.08);
    opacity: 0.7;
  }
  to {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-main {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .buy-grid,
  .measure-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .buy-bar {
    display: flex;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 560px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js-reveal .reveal:not(.is-visible),
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
