﻿/*
Theme Name: Jabaluna Bricks Child
Theme URI: https://jabaluna.com/
Description: Child theme for the Jabaluna Glass Bricks build.
Author: OpenAI Codex
Template: bricks
Version: 1.0.0
Text Domain: jabaluna-bricks-child
*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  --bg: #f3f6fa;
  --bg-soft: #eef3f8;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #5f6f82;
  --line: rgba(17, 24, 39, 0.1);
  --bronze: #c68b4a;
  --bronze-deep: #98612a;
  --olive: #697a8d;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(198, 139, 74, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
span,
a,
small {
  font-size: 15px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-family: "Outfit", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(48px, 7vw, 82px);
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.section-shell,
.site-header__inner,
.announcement-bar__inner,
.site-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.announcement-bar {
  padding: 14px 0;
  color: var(--muted);
}

.announcement-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-bottom: 10px;
  backdrop-filter: blur(16px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: #fff;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 19px;
}

.brand-copy small {
  color: var(--muted);
  max-width: 260px;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(158, 106, 57, 0.1);
  color: var(--ink);
}

.button,
.button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button--ghost,
.button--ghost:visited {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-section,
.page-hero {
  padding: 28px 0 14px;
}

.hero-slider {
  position: relative;
  padding: 12px 0 0;
}

.hero-slide {
  display: none;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.78)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-slide.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy p,
.page-hero p,
.panel p,
.category-card p,
.service-card p,
.feature-card p,
.contact-card p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.hero-visual {
  min-height: 440px;
  border-radius: calc(var(--radius-xl) - 6px);
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-visual img {
  max-height: 420px;
  object-fit: contain;
}

.hero-visual--warm {
  background: linear-gradient(180deg, #ece6de, #fbf4ea);
}

.hero-visual--light {
  background: linear-gradient(180deg, #f7f5f1, #ffffff);
}

.hero-visual--olive {
  background: linear-gradient(180deg, #e8eadf, #f6f1ea);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 29, 26, 0.16);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--bronze);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
}

.metrics-section {
  padding: 18px 0;
}

.metrics-grid,
.category-grid,
.feature-grid,
.contact-grid,
.service-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.category-card,
.panel,
.service-card,
.feature-card,
.contact-card,
.cta-panel,
.notice-strip {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 26px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  font-family: "Outfit", "Manrope", sans-serif;
}

.section-block {
  padding: 24px 0;
}

.section-heading,
.panel,
.contact-card,
.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-heading {
  margin-bottom: 22px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-showcase__card,
.story-media,
.gallery-tile,
.insight-card,
.trade-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.category-showcase__card {
  min-height: 420px;
}

.category-showcase__media,
.story-media img,
.gallery-tile img,
.insight-card img {
  width: 100%;
  height: 100%;
}

.category-showcase__media {
  position: absolute;
  inset: 0;
}

.category-showcase__media img,
.story-media img,
.gallery-tile img,
.insight-card img {
  object-fit: cover;
}

.category-showcase__card::after,
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.72));
}

.category-showcase__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 420px;
  padding: 28px;
  color: #fff;
}

.category-showcase__copy .eyebrow,
.category-showcase__copy p {
  color: rgba(255, 255, 255, 0.86);
}

.story-layout,
.reason-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.story-copy,
.reason-copy {
  justify-content: center;
}

.story-media {
  min-height: 100%;
}

.story-media img {
  aspect-ratio: 4 / 4.3;
}

.reason-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reason-media img {
  width: 100%;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.reason-points,
.trade-grid,
.insight-grid,
.gallery-mosaic {
  display: grid;
  gap: 18px;
}

.reason-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-point,
.trade-card {
  padding: 24px;
}

.trade-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.insight-card img {
  display: block;
  height: 240px;
}

.gallery-mosaic {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, 220px);
}

.gallery-tile {
  margin: 0;
}

.gallery-tile--large {
  grid-row: span 2;
}

.gallery-tile figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-gallery__lead,
.detail-gallery__thumb {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.detail-gallery__lead img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-summary {
  position: sticky;
  top: 104px;
}

.detail-specs {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-specs li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-specs span {
  color: var(--muted);
}

.detail-specs strong {
  max-width: 58%;
  text-align: right;
}

.detail-note {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(198, 139, 74, 0.09);
  border: 1px solid rgba(198, 139, 74, 0.18);
}

.category-card {
  padding: 28px;
}

.category-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(158, 106, 57, 0.12);
  color: var(--bronze-deep);
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  padding: 30px;
}

.panel--dense {
  min-height: 100%;
}

.panel--tint {
  background:
    radial-gradient(circle at top right, rgba(105, 122, 141, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.98);
}

.panel--dark {
  background: linear-gradient(180deg, #17212b, #111827);
  color: #fff;
}

.panel--dark .eyebrow,
.panel--dark p,
.panel--dark span {
  color: rgba(255, 255, 255, 0.75);
}

.check-list,
.timeline,
.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li + li,
.timeline li + li {
  margin-top: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--olive));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-card.is-hidden {
  display: none;
}

.product-card--compact h3 {
  font-size: 24px;
}

.product-media {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(158, 106, 57, 0.08), transparent 28%),
    linear-gradient(180deg, #f9f5f0, #ffffff);
}

.product-media img {
  max-height: 250px;
  object-fit: contain;
}

.product-sku,
.product-flag {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(33, 29, 26, 0.08);
  font-weight: 700;
  font-size: 12px;
}

.product-flag {
  left: auto;
  right: 18px;
  background: linear-gradient(135deg, #bf8348, #a55529);
  color: #fff;
  border-color: transparent;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: rgba(17, 24, 39, 0.08);
  color: var(--ink);
}

.pill--soft {
  background: rgba(198, 139, 74, 0.14);
  color: var(--bronze-deep);
}

.product-subtitle,
.muted-copy {
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 10px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(33, 29, 26, 0.06);
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  max-width: 54%;
  text-align: right;
  font-size: 14px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-meta,
.text-link {
  font-weight: 700;
  color: var(--bronze-deep);
}

.notice-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  margin-bottom: 18px;
  padding: 18px 24px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}

.filter-button.is-active,
.filter-button:hover {
  background: rgba(198, 139, 74, 0.14);
  color: var(--ink);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.contact-card {
  padding: 24px;
}

.feature-grid,
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline li {
  display: grid;
  gap: 4px;
}

.timeline--compact li + li {
  margin-top: 12px;
}

.timeline strong {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
}

.cta-panel {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 28px 32px;
}

.contact-card a {
  font-weight: 700;
  color: var(--bronze-deep);
}

.page-hero .section-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 0 10px;
}

.site-footer {
  padding: 28px 0 44px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: #111827;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid h4 {
  margin-bottom: 10px;
  font-size: 26px;
  color: #fff;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.woo-archive-hero,
.woo-single-section {
  padding: 18px 0 10px;
}

.woo-archive-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: 34px;
}

.woo-term-grid,
.woo-product-grid,
.woo-single-shell {
  display: grid;
  gap: 24px;
}

.woo-term-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woo-term-card,
.woo-product-card,
.woo-info-card {
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.woo-term-card {
  overflow: hidden;
}

.woo-term-card__body,
.woo-product-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.woo-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woo-product-card {
  overflow: hidden;
}

.woo-product-card__media {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(198, 139, 74, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.woo-product-card__meta {
  color: var(--muted);
}

.woo-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: rgba(17, 24, 39, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.woo-badge--hot {
  background: rgba(198, 139, 74, 0.18);
  color: var(--bronze-deep);
}

.woo-badge--supply {
  background: rgba(105, 122, 141, 0.16);
  color: var(--olive);
}

.woo-category-chip {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woo-single-shell {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: flex-start;
}

.woo-single-gallery,
.woo-single-summary {
  padding: 30px;
}

.woo-single-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.woo-single-summary {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.woo-price-placeholder {
  margin: 0;
  padding: 16px 18px;
  border: 1px dashed rgba(198, 139, 74, 0.44);
  border-radius: var(--radius-md);
  background: rgba(198, 139, 74, 0.08);
  color: var(--bronze-deep);
  font-weight: 700;
}

.woo-spec-list,
.woo-note-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woo-spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.woo-spec-list strong {
  flex: 0 0 136px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woo-spec-list span {
  flex: 1;
  font-weight: 700;
  text-align: right;
}

.woo-note-list li,
.woo-inquiry-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.woo-inquiry-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.woo-cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jab-catalog-page,
.jab-single-page {
  padding-bottom: 20px;
}

.jab-catalog-hero__panel,
.jab-single-hero__panel {
  display: grid;
  gap: 28px;
  padding: 34px;
}

.jab-catalog-hero__panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.jab-single-hero__panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
}

.jab-metric-grid,
.jab-category-grid,
.jab-detail-grid,
.jab-detail-highlights,
.jab-story-grid,
.jab-gallery-band,
.jab-product-gallery__thumbs {
  display: grid;
  gap: 22px;
}

.jab-metric-grid,
.jab-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jab-category-card,
.jab-story-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.jab-category-card.is-current {
  border-color: rgba(198, 139, 74, 0.55);
  transform: translateY(-3px);
}

.jab-category-card__media {
  min-height: 250px;
  background:
    radial-gradient(circle at top left, rgba(198, 139, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.jab-category-card__media img,
.jab-gallery-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jab-category-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.jab-category-card__count {
  color: var(--bronze-deep);
  font-weight: 700;
}

.jab-shop-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.jab-shop-toolbar__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jab-shop-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.jab-shop-toolbar .woocommerce-ordering,
.jab-shop-toolbar .woocommerce-result-count {
  margin: 0;
}

.jab-shop-toolbar select {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.jab-products-grid,
.jab-products-grid.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jab-products-grid li.product,
.jab-products-grid li.jab-product-card {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.jab-products-grid--featured,
.jab-products-grid--featured.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jab-product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.jab-product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 290px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(198, 139, 74, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.jab-product-card__media a,
.jab-product-card__media img {
  width: 100%;
}

.jab-product-card__media img {
  max-height: 240px;
  object-fit: contain;
}

.jab-product-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.jab-product-card__description {
  margin: 0;
  color: var(--muted);
}

.jab-product-spec-list {
  margin: 0;
}

.jab-product-spec-list li strong {
  max-width: 64%;
  text-align: right;
}

.jab-product-card__footer {
  justify-content: space-between;
}

.jab-card-detail {
  min-height: 44px;
}

.jab-pagination nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  border: none;
}

.jab-pagination nav.woocommerce-pagination ul li {
  border: none;
}

.jab-pagination nav.woocommerce-pagination ul li a,
.jab-pagination nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.jab-pagination nav.woocommerce-pagination ul li span.current {
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: #fff;
  border-color: transparent;
}

.jab-story-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.jab-story-card {
  padding: 28px;
}

.jab-gallery-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jab-gallery-band img {
  min-height: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.jab-breadcrumbs {
  margin-bottom: 18px;
}

.jab-breadcrumbs .woocommerce-breadcrumb {
  margin: 0;
  color: var(--muted);
}

.jab-single-hero__badges {
  align-self: start;
}

.jab-product-gallery__main {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(198, 139, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid var(--line);
}

.jab-product-gallery__main img {
  max-height: 420px;
  object-fit: contain;
}

.jab-product-gallery__thumbs {
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
}

.jab-gallery-thumb {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  transition: 0.2s ease;
}

.jab-gallery-thumb.is-active {
  border-color: rgba(198, 139, 74, 0.6);
  box-shadow: 0 10px 24px rgba(198, 139, 74, 0.16);
}

.jab-gallery-thumb img {
  max-height: 70px;
  object-fit: contain;
}

.jab-add-to-cart .quantity .qty,
.jab-add-to-cart button.single_add_to_cart_button {
  min-height: 48px;
  border-radius: var(--radius-sm);
}

.jab-detail-panel {
  padding: 32px;
}

.jab-detail-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.jab-detail-copy {
  color: var(--muted);
}

.jab-detail-copy p:first-child {
  margin-top: 0;
}

.jab-detail-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .hero-slide.is-active,
  .split-layout,
  .story-layout,
  .reason-layout,
  .detail-layout,
  .woo-archive-hero__panel,
  .woo-single-shell,
  .jab-catalog-hero__panel,
  .jab-single-hero__panel,
  .jab-story-grid,
  .jab-detail-grid,
  .cta-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .category-showcase,
  .metrics-grid,
  .feature-grid,
  .contact-grid,
  .product-grid--featured,
  .woo-term-grid,
  .woo-product-grid,
  .jab-category-grid,
  .jab-metric-grid,
  .jab-products-grid,
  .trade-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jab-products-grid--featured,
  .jab-detail-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-tile--large {
    grid-row: span 2;
  }

  .detail-summary {
    position: static;
  }

  .woo-single-summary {
    position: static;
  }

  .jab-shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .announcement-bar__inner {
    justify-content: flex-start;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-slide {
    padding: 22px;
  }

  .hero-slide.is-active,
  .metrics-grid,
  .category-showcase,
  .category-grid,
  .story-layout,
  .detail-layout,
  .woo-term-grid,
  .woo-product-grid,
  .woo-single-shell,
  .jab-category-grid,
  .jab-metric-grid,
  .jab-products-grid,
  .jab-products-grid--featured,
  .jab-story-grid,
  .jab-gallery-band,
  .jab-detail-grid,
  .jab-detail-highlights,
  .service-grid,
  .feature-grid,
  .contact-grid,
  .trade-grid,
  .insight-grid,
  .reason-layout,
  .reason-points,
  .reason-media,
  .detail-gallery__thumbs,
  .product-grid,
  .product-grid--featured,
  .footer-grid,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual img {
    max-height: 280px;
  }

  .panel,
  .category-card,
  .category-showcase__copy,
  .metric-card,
  .service-card,
  .feature-card,
  .contact-card,
  .reason-point,
  .trade-card,
  .cta-panel,
  .jab-detail-panel,
  .notice-strip {
    padding: 22px;
  }

  .category-showcase__card,
  .category-showcase__copy {
    min-height: 340px;
  }

  .gallery-mosaic {
    grid-template-rows: none;
  }

  .gallery-tile--large {
    grid-row: span 1;
  }

  .detail-specs li {
    flex-direction: column;
  }

  .woo-spec-list li,
  .woo-cta-stack {
    flex-direction: column;
  }

  .detail-specs strong {
    max-width: none;
    text-align: left;
  }

  .woo-spec-list strong,
  .woo-spec-list span {
    max-width: none;
    text-align: left;
  }

  .jab-product-spec-list li strong {
    max-width: none;
    text-align: left;
  }

  .jab-product-gallery__main {
    min-height: 340px;
    padding: 22px;
  }

  .jab-product-gallery__main img {
    max-height: 280px;
  }

  .spec-list li {
    flex-direction: column;
  }

  .spec-list strong {
    max-width: none;
    text-align: left;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

html {
  scroll-behavior: smooth;
}

body.home {
  background: #ffffff;
}

.home .jab-home-page {
  background: #ffffff;
  color: #161616;
}

.jab-home-page img {
  display: block;
  max-width: 100%;
}

.jab-home-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.admin-bar .jab-home-header {
  top: 32px;
}

.jab-home-header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 98px;
}

.jab-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #111111;
  text-decoration: none;
}

.jab-home-brand__logo img,
.jab-home-brand__logo .custom-logo-link img {
  max-height: 58px;
  width: auto;
}

.jab-home-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 3px solid #111111;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.jab-home-brand__text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jab-home-nav ul {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jab-home-nav a {
  color: #151515;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.jab-home-header__tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.jab-home-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #111111;
}

.jab-home-search svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.jab-home-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  color: #666666;
  font-size: 16px;
  text-decoration: none;
}

.jab-home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.jab-home-slider {
  position: relative;
  min-height: 100vh;
}

.jab-home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.jab-home-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jab-home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
}

.jab-home-slide.tone-stone::before {
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(90deg, #d7dadc 0%, #e6e8eb 47%, #8f8b86 100%);
}

.jab-home-slide.tone-warm::before {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.52), transparent 20%),
    linear-gradient(90deg, #d8d4cf 0%, #eeebe7 44%, #7c6f66 100%);
}

.jab-home-slide.tone-ivory::before {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.65), transparent 20%),
    linear-gradient(90deg, #d8d6d1 0%, #f1efea 42%, #a89b8c 100%);
}

.jab-home-slide__shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 138px;
  padding-bottom: 190px;
}

.jab-home-slide__copy {
  align-self: flex-end;
  width: min(48%, 690px);
  padding-bottom: 132px;
}

.jab-home-slide__eyebrow {
  display: inline-block;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.jab-home-slide__copy h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(54px, 6vw, 98px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.jab-home-slide__art {
  position: relative;
  flex: 1;
}

.jab-home-slide__product {
  position: absolute;
  right: 0;
  bottom: 148px;
  width: clamp(260px, 34vw, 520px);
  max-height: 74vh;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.22));
}

.jab-home-slide__product.is-secondary {
  right: 32%;
  bottom: 90px;
  width: clamp(180px, 18vw, 310px);
  opacity: 0.92;
}

.jab-home-slide__band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.jab-home-slide__band-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 132px;
}

.jab-home-slide__band p {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(28px, 2.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
}

.jab-home-slide__band span {
  display: block;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.jab-home-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  height: 58px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
}

.jab-home-more--dark {
  border-color: #161616;
  color: #161616;
}

.jab-home-float {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}

.jab-home-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  text-decoration: none;
}

.jab-home-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.jab-home-hero__controls {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 3;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
}

.jab-home-dots {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jab-home-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.jab-home-dot.is-active {
  width: 48px;
  background: #ffffff;
}

.jab-home-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.jab-home-scroll__mouse {
  position: relative;
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.jab-home-scroll__mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
}

.jab-home-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.jab-home-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.jab-home-arrows svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.jab-home-section {
  padding: 110px 0;
  background: #ffffff;
}

.jab-home-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.jab-home-heading span {
  color: #b58b63;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.jab-home-heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.08;
}

.jab-home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.jab-home-category-card {
  display: grid;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.jab-home-category-card__media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
}

.jab-home-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jab-home-category-card__body {
  display: grid;
  gap: 14px;
  padding: 28px 28px 32px;
}

.jab-home-category-card__body span {
  color: #b58b63;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.jab-home-category-card__body h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.jab-home-category-card__body p {
  margin: 0;
  color: #5e5e5e;
  font-size: 15px;
  line-height: 1.7;
}

.jab-home-category-card__body strong {
  font-size: 15px;
  font-weight: 600;
}

.jab-home-about {
  background: #f7f7f5;
}

.jab-home-about__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.jab-home-about__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(135deg, #dbd7d2, #f1efea);
}

.jab-home-about__media img {
  width: min(78%, 430px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
}

.jab-home-about__copy {
  display: grid;
  gap: 20px;
}

.jab-home-about__copy span,
.jab-home-contact__copy span {
  color: #b58b63;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.jab-home-about__copy h2,
.jab-home-contact__copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.jab-home-about__copy p,
.jab-home-contact__copy p {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.9;
}

.jab-home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.jab-home-product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.jab-home-product-card__media {
  display: block;
  aspect-ratio: 0.92 / 1;
  overflow: hidden;
  background: #f7f7f7;
}

.jab-home-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jab-home-product-card__body {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
}

.jab-home-product-card__body span {
  color: #b58b63;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jab-home-product-card__body h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.jab-home-product-card__body h3 a {
  color: #111111;
  text-decoration: none;
}

.jab-home-product-card__body p {
  margin: 0;
  color: #5f5f5f;
  line-height: 1.7;
}

.jab-home-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.jab-home-product-card__meta strong {
  font-size: 14px;
  font-weight: 600;
}

.jab-home-product-card__meta a {
  color: #111111;
  font-size: 14px;
  text-decoration: none;
}

.jab-home-service {
  background: #f7f7f5;
}

.jab-home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.jab-home-service-card {
  padding: 36px 34px 42px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.jab-home-service-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: #b58b63;
  font-size: 48px;
  font-weight: 300;
}

.jab-home-service-card h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 400;
}

.jab-home-service-card p {
  margin: 0;
  color: #5a5a5a;
  line-height: 1.8;
}

.jab-home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.jab-home-news-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.jab-home-news-card__media {
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

.jab-home-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jab-home-news-card__body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 28px;
}

.jab-home-news-card__body h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.jab-home-news-card__body p {
  margin: 0;
  color: #5c5c5c;
  line-height: 1.8;
}

.jab-home-contact {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.88)),
    url("assets/img/products/sku-48.jpg") center/cover;
}

.jab-home-contact__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.jab-home-contact__copy h2,
.jab-home-contact__copy p,
.jab-home-contact__action,
.jab-home-footer,
.jab-home-footer a {
  color: #ffffff;
}

.jab-home-contact__actions {
  display: grid;
  gap: 18px;
}

.jab-home-contact__action {
  display: block;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.jab-home-footer {
  padding: 26px 0 34px;
  background: #111111;
}

.jab-home-footer__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.jab-home-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.jab-home-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin-left: 18px;
}

@media (max-width: 1240px) {
  .jab-home-nav ul {
    gap: 28px;
  }

  .jab-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .jab-home-header__shell {
    display: grid;
    justify-content: stretch;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .jab-home-nav {
    display: none;
  }

  .jab-home-slider,
  .jab-home-slide__shell {
    min-height: 860px;
  }

  .jab-home-slide__shell {
    display: block;
    padding-top: 184px;
  }

  .jab-home-slide__copy {
    width: auto;
    padding-bottom: 0;
  }

  .jab-home-slide__art {
    min-height: 360px;
  }

  .jab-home-slide__product {
    right: 8%;
    bottom: 58px;
    width: min(62vw, 360px);
  }

  .jab-home-slide__product.is-secondary {
    right: 50%;
    width: min(34vw, 220px);
    transform: translateX(50%);
  }

  .jab-home-slide__band-shell,
  .jab-home-about__shell,
  .jab-home-contact__shell {
    grid-template-columns: 1fr;
  }

  .jab-home-slide__band-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .jab-home-hero__controls {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding-bottom: 8px;
  }

  .jab-home-arrows {
    justify-content: center;
  }

  .jab-home-category-grid,
  .jab-home-service-grid,
  .jab-home-news-grid {
    grid-template-columns: 1fr;
  }

  .jab-home-float {
    display: none;
  }
}

@media (max-width: 680px) {
  .admin-bar .jab-home-header {
    top: 46px;
  }

  .jab-home-header__tools {
    justify-content: space-between;
  }

  .jab-home-slide__copy h1 {
    font-size: 42px;
  }

  .jab-home-slide__band p {
    font-size: 22px;
  }

  .jab-home-more {
    min-width: 150px;
    height: 48px;
    font-size: 16px;
  }

  .jab-home-product-grid {
    grid-template-columns: 1fr;
  }

  .jab-home-footer__shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .jab-home-footer a {
    margin-left: 0;
    margin-right: 16px;
  }
}
