:root,
html[data-theme="1"] {
  --bg: #f6f3ee;
  --bg-tint: #efe8dc;
  --ink: #15171c;
  --ink-muted: #5c584f;
  --line: #ddd4c6;
  --surface: #fffcf7;
  --dark: #111318;
  --dark-2: #1a1d24;
  --dark-hover: #2a2e38;
  --cream: #f4f1ea;
  --accent: #e8a317;
  --accent-ink: #1a1408;
  --accent-hover: #f0b53a;
  --link-hover: #8a5a00;
  --header-bg: rgb(246 243 238 / 92%);
  --danger: #9b2c2c;
  --ok: #1f6b43;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Oswald", system-ui, sans-serif;
  --space: clamp(1rem, 3.4vw, 2rem);
  --max: 1120px;
  --narrow: 42rem;
  --radius: 12px;
  --shadow: 0 1px 2px rgb(17 19 24 / 5%), 0 12px 32px rgb(17 19 24 / 7%);
  color-scheme: light;
}

html[data-theme="2"] {
  --bg: #f3f1ef;
  --bg-tint: #e8e4df;
  --ink: #171412;
  --ink-muted: #5e5752;
  --line: #d8d1c9;
  --surface: #fffcfa;
  --dark: #1c1210;
  --dark-2: #2a1816;
  --dark-hover: #3a2220;
  --cream: #f6f1ec;
  --accent: #c0392b;
  --accent-ink: #fff8f6;
  --accent-hover: #d24637;
  --link-hover: #8e241c;
  --header-bg: rgb(243 241 239 / 92%);
  --shadow: 0 1px 2px rgb(28 18 16 / 6%), 0 12px 32px rgb(28 18 16 / 8%);
  color-scheme: light;
}

html[data-theme="3"] {
  --bg: #eef2f5;
  --bg-tint: #e1e9ef;
  --ink: #13202b;
  --ink-muted: #4d5c68;
  --line: #c8d4de;
  --surface: #f7fafc;
  --dark: #0e2233;
  --dark-2: #163044;
  --dark-hover: #1e3d55;
  --cream: #eef4f8;
  --accent: #2a7ab8;
  --accent-ink: #f4f9fd;
  --accent-hover: #3b8cc9;
  --link-hover: #185a8a;
  --header-bg: rgb(238 242 245 / 92%);
  --shadow: 0 1px 2px rgb(14 34 51 / 6%), 0 12px 32px rgb(14 34 51 / 8%);
  color-scheme: light;
}

html[data-theme="4"] {
  --bg: #101614;
  --bg-tint: #17201b;
  --ink: #e8eee9;
  --ink-muted: #93a399;
  --line: #2a3832;
  --surface: #18211d;
  --dark: #0a100c;
  --dark-2: #141c18;
  --dark-hover: #1e2c24;
  --cream: #e8eee9;
  --accent: #3dba6e;
  --accent-ink: #07140c;
  --accent-hover: #52c97f;
  --link-hover: #8fd4a8;
  --header-bg: rgb(16 22 20 / 92%);
  --shadow: 0 1px 2px rgb(0 0 0 / 25%), 0 16px 36px rgb(0 0 0 / 28%);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

main {
  flex: 1 1 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
.logo__name,
.site-footer__brand,
.card__n,
.steps__n {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 0.6em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  margin: 0 0 0.55em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

a:hover {
  color: var(--link-hover);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--max), 100% - 2 * var(--space));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(var(--narrow), 100% - 2 * var(--space));
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead {
  font-size: 1.2rem;
  max-width: 40rem;
  color: var(--ink-muted);
}

.muted {
  color: var(--ink-muted);
}

.footnote {
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding-bottom: 2rem;
}

.topbar {
  background: var(--dark);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.9rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.45rem;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--cream);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar__hours,
.topbar__contact {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.logo:hover {
  color: var(--ink);
}

.logo__mark {
  width: 44px;
  height: 44px;
  flex: none;
}

.logo__bg {
  fill: var(--dark);
}

.logo__bar,
.logo__accent {
  fill: var(--accent);
}

.logo__letter {
  fill: var(--cream);
}

.logo__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo__name {
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo__place {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  margin-left: auto;
}

.lang-switch {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.lang-switch a {
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: var(--ink-muted);
  text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
  color: var(--accent-ink);
  background: var(--accent);
}

.nav__toggle {
  display: none;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.nav__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--link-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

.btn--ghost {
  background: transparent;
  border-color: rgb(244 241 234 / 45%);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  color: var(--ink);
  border-color: var(--ink);
}

.btn--dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--header {
  background: var(--dark);
  color: var(--cream);
  padding: 0.65rem 1.05rem;
  flex: none;
}

.btn--header:hover {
  background: var(--dark-hover);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: min(78vh, 44rem);
  display: grid;
  align-items: end;
  color: var(--cream);
  background: var(--dark);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.35s ease;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(17 19 24 / 28%) 0%, rgb(17 19 24 / 78%) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 28px,
    var(--dark) 28px 40px
  );
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: clamp(4rem, 12vh, 8rem) 0 4.6rem;
  max-width: 46rem;
}

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.hero__dot {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hero__dot::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 999px;
  background: rgb(244 241 234 / 42%);
}

.hero__dot.is-active::after,
.hero__dot:hover::after {
  background: var(--accent);
}

.hero .eyebrow {
  color: var(--accent);
}

.hero__lead {
  font-size: 1.15rem;
  color: rgb(244 241 234 / 88%);
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hero {
  background: var(--dark);
  color: var(--cream);
  padding: 3.2rem 0 2.6rem;
  border-bottom: 8px solid var(--accent);
}

.page-hero .lead {
  color: rgb(244 241 234 / 78%);
}

.strip {
  background: var(--accent);
  color: var(--accent-ink);
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.1rem;
}

.strip p {
  margin: 0;
  font-weight: 600;
}

.strip strong {
  font-family: var(--display);
  font-size: 1.35rem;
  display: block;
  text-transform: uppercase;
}

.section {
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.section--dark p,
.section--dark .steps p {
  color: rgb(244 241 234 / 78%);
}

.section--tint {
  background: var(--bg-tint);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section__cta {
  margin: 2rem 0 0;
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.section--tint .card {
  background: var(--surface);
}

.card__n {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.split--media {
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgb(244 241 234 / 12%);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps h3,
.steps p {
  margin: 0;
}

.steps p {
  margin-top: 0.25rem;
}

.steps__n {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 1rem;
}

.quotes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.quote footer {
  display: flex;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.cta-band {
  background: var(--dark-2);
  color: var(--cream);
  padding: 2.4rem 0;
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band p {
  margin-top: 0.4rem;
  color: rgb(244 241 234 / 78%);
}

.service-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.service-list p {
  margin: 0;
  color: var(--ink-muted);
}

.brands {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
  padding: 0;
}

.brands li {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.35rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.form p {
  margin: 0 0 1rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.optional {
  font-weight: 400;
  color: var(--ink-muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.form textarea {
  resize: vertical;
  min-height: 8rem;
}

.hp {
  position: absolute;
  left: -9999px;
}

.aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}

.aside h2,
.aside h3 {
  margin-top: 0;
}

.aside h3 {
  margin-top: 1.2rem;
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.hours li:last-child {
  border-bottom: 0;
}

.map {
  height: 22rem;
  background: var(--dark);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}

.alert p,
.alert ul {
  margin: 0;
}

.alert ul {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
}

.alert--ok {
  background: #e8f6ee;
  border: 1px solid #b7e0c7;
  color: var(--ok);
}

.alert--err {
  background: #fdecec;
  border: 1px solid #f3c1c1;
  color: var(--danger);
}

.prose h2 {
  margin-top: 1.6rem;
}

.site-footer {
  background: var(--dark);
  color: rgb(244 241 234 / 82%);
  padding: 2.8rem 0 1.4rem;
  margin-top: auto;
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 1.6rem;
}

.site-footer__brand {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--cream);
}

.site-footer__title {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.site-footer .hours li {
  border-bottom-color: rgb(244 241 234 / 12%);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(244 241 234 / 12%);
  font-size: 0.9rem;
}

.site-footer__bottom p {
  margin: 0;
}

.theme-switch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.theme-switch a {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 2px solid rgb(244 241 234 / 35%);
  text-decoration: none;
}

.theme-switch a:hover,
.theme-switch a[aria-current="true"] {
  border-color: var(--accent);
  color: inherit;
}

.theme-switch a[data-theme="1"] {
  background: #e8a317;
}

.theme-switch a[data-theme="2"] {
  background: #c0392b;
}

.theme-switch a[data-theme="3"] {
  background: #2a7ab8;
}

.theme-switch a[data-theme="4"] {
  background: #3dba6e;
  box-shadow: inset 0 0 0 3px #101614;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stock-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stock-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--dark);
  color: inherit;
}

.stock-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 10rem;
  color: var(--cream);
  background: var(--dark-2);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.stock-card__placeholder--large {
  min-height: 18rem;
  border-radius: var(--radius);
}

.stock-card__badge {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.stock-card__body {
  padding: 1rem 1.05rem 1.15rem;
}

.stock-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.stock-card__body h3 a {
  text-decoration: none;
}

.stock-card__price {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.stock-card__meta {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.stock-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.stock-filters a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.stock-filters a[aria-current="page"] {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.stock-detail {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.stock-detail__price {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
}

.stock-gallery__main {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
}

.stock-gallery__main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stock-gallery__thumbs {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}

.stock-gallery__thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}

.stock-gallery__thumbs button.is-active,
.stock-gallery__thumbs button:hover {
  border-color: var(--accent);
}

.stock-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.stock-specs {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.stock-specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.stock-specs li:last-child {
  border-bottom: 0;
}

.stock-specs span {
  color: var(--ink-muted);
}

@media (max-width: 960px) {
  .strip__grid,
  .cards,
  .cards--4,
  .quotes,
  .split,
  .split--media,
  .service-list,
  .site-footer__grid,
  .stock-grid,
  .stock-detail {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .btn--header {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    position: static;
  }

}

@media (max-width: 640px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .strip__grid,
  .cards,
  .cards--4,
  .quotes,
  .split,
  .split--media,
  .service-list,
  .site-footer__grid,
  .stock-grid,
  .stock-detail {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__slide {
    transition: none;
  }
}
