/* =========================================================
   ARMATURA BUILDING MATERIALS TRADING FZE LLC
   Wilshire build — Visual Template T10 "Architectural Layered"
   Palette derived from the client logo only.
   ========================================================= */

:root {
  /* --- brand (from logo) --- */
  --primary-color:   #6B5230;
  --primary-light:   #8F7145;
  --secondary-color: #17120E;
  --secondary-light: #2E2620;
  --accent-color:    #B8913D;
  --accent-dark:     #96742C;

  /* --- neutrals --- */
  --ink:        #1D1813;
  --body-text:  #55504A;
  --muted:      #8A8379;
  --hairline:   #E2DDD4;
  --band:       #F4F3F0;
  --paper:      #FFFFFF;

  /* --- T10 template tokens --- */
  --radius:        4px;
  --radius-plate:  2px;
  --btn-radius:    50px;
  --shadow:        0 10px 30px rgba(29, 24, 19, .09);
  --shadow-hover:  0 16px 40px rgba(29, 24, 19, .14);
  --section-pad:   105px;
  --container-max: 1200px;
  --grid-gap:      1.75rem;
  --h1-size:       clamp(2.05rem, 4.6vw, 3.2rem);
  --h2-size:       clamp(1.62rem, 3vw, 2.4rem);
  --body-lh:       1.8;
  --card-pad:      2.35rem 1.65rem;
  --plate-border:  10px;
  --frame-line:    1px;

  --font-display: 'Zilla Slab', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

/* =========================================================
   BASE
   ========================================================= */
html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: var(--body-lh);
  color: var(--body-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink); }
h1 { font-size: var(--h1-size); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }
h4 { font-size: 1.28rem; font-weight: 600; }
h5 { font-size: 1.04rem; font-weight: 600; }
h6 { font-size: .95rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
a  { text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; height: auto; }

.container { max-width: var(--container-max); }

.section-padding { padding: var(--section-pad) 0; }
.bg-light-soft   { background: var(--band); }

/* ---- D3 section tag: + TAG + ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: .85rem;
}
.section-tag::before { content: "+"; margin-right: .7em; color: var(--accent-color); }
.section-tag::after  { content: "+"; margin-left: .7em;  color: var(--accent-color); }

.section-title {
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 1.24;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.text-center .section-title { position: relative; padding-bottom: 1.1rem; }
.text-center .section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 58px; height: 2px; background: var(--accent-color);
}
.section-lead { max-width: 620px; color: var(--body-text); }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.copy-col { max-width: 620px; }

/* =========================================================
   BUTTONS — T10: pill, accent fill, › glyph
   ========================================================= */
.btn-brand,
.btn-brand-outline,
.btn-brand-secondary {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--btn-radius);
  padding: 12px 28px;
  border: 1.5px solid transparent;
  transition: all .28s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  line-height: 1.4;
}
.btn-brand {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.btn-brand-outline {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-brand-outline:hover, .btn-brand-outline:focus {
  background: #fff;
  border-color: #fff;
  color: var(--secondary-color);
}
.btn-brand-secondary {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-brand-secondary:hover, .btn-brand-secondary:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn-brand.btn-lg,
.btn-brand-outline.btn-lg,
.btn-brand-secondary.btn-lg { padding: 14px 34px; font-size: .82rem; }

.btn-brand::after,
.btn-brand-secondary::after { content: "\203A"; font-size: 1.15em; line-height: 1; margin-left: .1rem; }
.btn-brand-secondary.no-glyph::after,
.btn-brand.no-glyph::after { content: none; }

/* =========================================================
   TOP BAR — white with hairline
   ========================================================= */
.top-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  font-size: .78rem;
  padding: 9px 0;
  color: var(--muted);
  letter-spacing: .015em;
}
.top-bar a { color: var(--primary-color); font-weight: 600; }
.top-bar a:hover { color: var(--accent-dark); }
.top-bar i { color: var(--accent-color); margin-right: .45rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.main-navbar {
  background: var(--paper);
  padding: .55rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .3s ease, padding .3s ease;
  z-index: 1030;
}
.main-navbar.scrolled {
  box-shadow: 0 4px 22px rgba(29,24,19,.09);
  padding: .3rem 0;
  border-bottom-color: transparent;
}
.main-navbar .navbar-brand { padding: 0; margin-right: 1.5rem; }
.main-navbar .navbar-brand img { height: 52px; width: auto; transition: height .3s ease; }
.main-navbar.scrolled .navbar-brand img { height: 44px; }

.main-navbar .nav-link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .65rem .95rem !important;
  position: relative;
}
.main-navbar .nav-link::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .3rem;
  height: 2px; background: var(--accent-color);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link.active { color: var(--primary-color); }

.main-navbar .btn-brand {
  text-transform: none;
  letter-spacing: .01em;
  font-size: .78rem;
  padding: 9px 20px;
}
.main-navbar .btn-brand::after { content: none; }

.navbar-toggler { border: 1px solid var(--hairline); padding: .35rem .55rem; }
.navbar-toggler:focus { box-shadow: none; }

/* dropdown */
.main-navbar .dropdown-menu {
  border: none;
  border-top: 3px solid var(--accent-color);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: .5rem 0;
  margin-top: 0;
  min-width: 250px;
}
.main-navbar .dropdown-item {
  font-size: .84rem;
  font-weight: 500;
  padding: .55rem 1.25rem;
  color: var(--body-text);
}
.main-navbar .dropdown-item:hover {
  background: var(--band);
  color: var(--primary-color);
}
.nav-products-row { display: flex; align-items: center; justify-content: space-between; }
.mobile-cat-toggle {
  background: none; border: none; color: var(--ink);
  padding: .4rem .7rem; line-height: 1;
}
.mobile-cat-toggle.open i { transform: rotate(180deg); }
.mobile-cat-toggle i { transition: transform .25s ease; display: inline-block; }

/* =========================================================
   HERO — 82vh, C3/C8 panel + outlined frame, A5 lines, B2 chevrons
   ========================================================= */
.hero-slider { position: relative; }
.hero-slide {
  height: 82vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,14,.42) 0%, rgba(23,18,14,.40) 55%, rgba(23,18,14,.55) 100%);
}
.hero-slide .container { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-panel {
  max-width: 760px;
  width: 100%;
  text-align: center;
  background: rgba(23, 18, 14, .46);
  backdrop-filter: blur(2px);
  padding: 3.1rem 2.6rem;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute; inset: 14px;
  border: var(--frame-line) solid rgba(255,255,255,.34);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.hero-tag::before { content: "+"; margin-right: .7em; }
.hero-tag::after  { content: "+"; margin-left: .7em; }
.hero-slide h1 { color: #fff; margin-bottom: 1rem; }
.hero-slide p {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 1.9rem;
}
.hero-slide .btn-brand,
.hero-slide .btn-brand-outline { margin-bottom: .5rem; }

/* A5 — thin lines, bottom-centre */
.hero-slider .carousel-indicators {
  margin-bottom: 2.2rem;
  gap: 12px;
  z-index: 3;
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 44px; height: 2px;
  background: rgba(255,255,255,.42);
  border: none;
  opacity: 1;
  border-radius: 0;
  transition: background .3s ease, width .3s ease;
}
.hero-slider .carousel-indicators .active {
  background: var(--accent-color);
  width: 64px;
}

/* B2 — bare chevrons at the viewport edges */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 7%; opacity: .75; z-index: 3; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 34px; height: 34px;
  background-size: 22px 22px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.5));
}

/* =========================================================
   PAGE HERO — 320px, diagonal overlay, left aligned, frame retained
   ========================================================= */
.page-hero {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(23,18,14,.86) 0%, rgba(23,18,14,.66) 46%, rgba(23,18,14,.34) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .55rem; }
.page-hero .container {
  border-left: 3px solid var(--accent-color);
  padding-left: 1.5rem;
}
.breadcrumb-custom {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}
.breadcrumb-custom a { color: var(--accent-color); }
.breadcrumb-custom a:hover { color: #fff; }

/* =========================================================
   ABOUT ROWS — F2 overlapping white-bordered plates
   ========================================================= */
.about-img-wrap { position: relative; padding: 0 0 54px 0; }
.about-img-wrap > img {
  width: 100%;
  display: block;
  border: var(--plate-border) solid #fff;
  border-radius: var(--radius-plate);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.about-img-wrap .plate-front {
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 48%;
  z-index: 2;
  border: var(--plate-border) solid #fff;
  border-radius: var(--radius-plate);
  box-shadow: var(--shadow-hover);
}
.about-img-wrap.plate-left .plate-front { right: auto; left: -14px; }
.about-img-wrap::after {
  content: "";
  position: absolute;
  left: -18px; top: -18px;
  width: 110px; height: 110px;
  border-left: 2px solid var(--accent-color);
  border-top: 2px solid var(--accent-color);
  z-index: 0;
}
.about-img-wrap.plate-left::after { left: auto; right: -18px; border-left: none; border-right: 2px solid var(--accent-color); }

.badge-float {
  position: absolute;
  left: 8px; bottom: 6px;
  z-index: 3;
  background: var(--secondary-color);
  color: #fff;
  padding: 1rem 1.35rem;
  border: var(--plate-border) solid #fff;
  border-radius: var(--radius-plate);
  box-shadow: var(--shadow-hover);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 190px;
}
.badge-float .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--accent-color);
  text-transform: none;
  line-height: 1.1;
}

/* checklist — outlined circle bullets */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: .8rem;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "\F26E"; /* bi-check */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0; top: .18rem;
  width: 22px; height: 22px;
  border: 1.5px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   FEATURE CARDS — J1 + E1
   ========================================================= */
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--card-pad);
  text-align: center;
  height: 100%;
  border-top: 3px solid transparent;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-4px, -4px);
  border-top-color: var(--accent-color);
  border-top-width: 4px;
}
.feature-card .icon-wrap {
  width: 62px; height: 62px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--hairline);
  border-radius: 50%;
  transition: border-color .3s ease, background .3s ease;
}
.feature-card:hover .icon-wrap { border-color: var(--accent-color); background: rgba(184,145,61,.08); }
.feature-card .icon-wrap i { font-size: 1.72rem; color: var(--accent-color); line-height: 1; }
.feature-card h5 { margin-bottom: .6rem; color: var(--ink); }
.feature-card p { font-size: .875rem; margin-bottom: 0; color: var(--body-text); }

/* =========================================================
   MISSION / VISION + CORE VALUES
   ========================================================= */
.mv-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  height: 100%;
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.mv-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent-color);
}
.mv-card:hover { border-color: var(--accent-color); box-shadow: var(--shadow); transform: translate(-4px, -4px); }
.mv-card > i { font-size: 2.1rem; color: var(--accent-color); display: block; margin-bottom: 1rem; }
.mv-card h4 { margin-bottom: .75rem; }
.mv-card p { margin-bottom: 0; font-size: .9rem; }

.value-pill {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.1rem 1.5rem;
  text-align: center;
  height: 100%;
  border-top: 3px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, border-width .3s ease;
}
.value-pill:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent-color);
  border-top-width: 4px;
}
.value-pill > i {
  font-size: 1.72rem;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 58px; height: 58px;
  border: 1.5px solid var(--hairline);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.value-pill h6 { margin-bottom: .5rem; color: var(--ink); }
.value-pill p { font-size: .845rem; margin-bottom: 0; }

/* =========================================================
   PRODUCT / ITEM PLATES — 2:3 gallery plates, white border
   ========================================================= */
.category-card-link { display: block; height: 100%; }

.product-card,
.item-card {
  background: var(--paper);
  border: var(--plate-border) solid #fff;
  border-radius: var(--radius-plate);
  box-shadow: var(--shadow);
  height: 100%;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-width .35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover,
.item-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
  border-color: #fff;
  border-width: 14px;
}
.product-img,
.item-img {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--band);
}
.product-img img,
.item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-img::after,
.item-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,14,0) 55%, rgba(23,18,14,.55) 100%);
}
.product-body,
.item-body {
  padding: 1.15rem 1.1rem 1.25rem;
  text-align: center;
  border-top: 2px solid var(--accent-color);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-body h5,
.item-body h5 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.4;
  color: var(--ink);
  transition: color .3s ease;
}
.category-card-link:hover .product-body h5,
.item-card:hover .item-body h5 { color: var(--primary-color); }

/* =========================================================
   CTA — H1 full-bleed image, warm dark gradient, centred
   ========================================================= */
.cta-section {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  color: #fff;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,14,.86) 0%, rgba(45,33,20,.80) 100%);
}
.cta-section .container { position: relative; z-index: 2; max-width: 860px; }
.cta-section .cta-frame {
  border: var(--frame-line) solid rgba(255,255,255,.28);
  padding: 3rem 2rem;
}
.cta-section .section-tag { color: var(--accent-color); }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .9rem;
}
.cta-section p { color: rgba(255,255,255,.82); max-width: 620px; margin-left: auto; margin-right: auto; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-card {
  background: var(--secondary-color);
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  height: 100%;
  position: relative;
}
.contact-info-card::before {
  content: "";
  position: absolute; inset: 14px;
  border: var(--frame-line) solid rgba(255,255,255,.16);
  pointer-events: none;
}
.contact-info-card h4 { color: #fff; margin-bottom: 1.8rem; position: relative; padding-bottom: .9rem; }
.contact-info-card h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 48px; height: 2px; background: var(--accent-color);
}
.contact-info-item { display: flex; gap: 1rem; padding-bottom: 1.5rem; position: relative; }
.contact-info-item:last-child { padding-bottom: 0; }
@media (min-width: 992px) {
  .contact-info-card { display: flex; flex-direction: column; }
  .contact-info-card h4 { flex: 0 0 auto; }
  .contact-info-item { flex: 0 0 auto; }
  .contact-info-item:not(:last-child) { margin-bottom: auto; }
}
.ci-icon {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  border: 1.5px solid rgba(184,145,61,.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
}
.ci-text { display: flex; flex-direction: column; }
.ci-text small {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: .18rem;
  font-weight: 600;
}
.ci-text span, .ci-text a { color: rgba(255,255,255,.86); font-size: .9rem; line-height: 1.6; }
.ci-text a:hover { color: var(--accent-color); }

.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  height: 100%;
}
.contact-form-wrap h4 { margin-bottom: .3rem; }
.contact-form-wrap .form-label {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .45rem;
}
.contact-form-wrap .form-control {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: .72rem .95rem;
  font-size: .92rem;
  background: #fbfaf8;
  color: var(--ink);
}
.contact-form-wrap .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 .18rem rgba(184,145,61,.15);
  background: #fff;
}
.contact-form-wrap .btn-brand { margin-top: .3rem; }

/* =========================================================
   FOOTER — dark, 4 col, serif headings, I4 tinted copyright bar
   ========================================================= */
.site-footer { background: var(--secondary-color); color: rgba(255,255,255,.62); }
.footer-top { padding: 78px 0 62px; }
.footer-brand-logo { display: block; margin-bottom: 1.35rem; }
.footer-brand-logo img { height: 62px; width: auto; }
.site-footer p { font-size: .885rem; line-height: 1.85; color: rgba(255,255,255,.62); }
.site-footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .8rem;
}
.site-footer h5::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 2px; background: var(--accent-color);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .78rem; font-size: .885rem; line-height: 1.7; display: flex; align-items: flex-start; }
.site-footer ul li i { color: var(--accent-color); margin-top: .28rem; flex: 0 0 auto; }
.site-footer ul li a { color: rgba(255,255,255,.62); }
.site-footer ul li a:hover { color: var(--accent-color); }
.footer-links li { position: relative; padding-left: 1.15rem; display: block; }
.footer-links li::before {
  content: "\F285"; /* bi-chevron-right */
  font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 0;
  font-size: .68rem;
  color: var(--accent-color);
}
.footer-bottom {
  background: var(--secondary-light);
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  letter-spacing: .03em;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 44px; height: 44px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all .3s ease;
  z-index: 1040;
  box-shadow: 0 6px 18px rgba(23,18,14,.28);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--secondary-color); color: var(--accent-color); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199.98px) {
  :root { --section-pad: 88px; }
}

@media (max-width: 991.98px) {
  :root { --section-pad: 72px; --card-pad: 2rem 1.4rem; }

  .top-bar { display: none; }

  .main-navbar .navbar-brand { margin-right: .75rem; }
  .main-navbar .navbar-brand img,
  .main-navbar.scrolled .navbar-brand img { height: 44px; }

  .main-navbar .navbar-collapse {
    flex-basis: 100%;
    background: var(--paper);
    border-top: 1px solid var(--hairline);
    margin-top: .55rem;
    padding: .5rem 0 1rem;
  }
  .main-navbar .nav-link { padding: .7rem .2rem !important; }
  .main-navbar .nav-link::after { left: .2rem; right: auto; width: 26px; }
  .main-navbar .dropdown-menu {
    border: none;
    border-left: 2px solid var(--accent-color);
    box-shadow: none;
    margin: 0 0 .5rem .2rem;
    display: none;
  }
  .main-navbar .dropdown-menu.show { display: block; }
  .main-navbar .btn-brand { width: 100%; justify-content: center; }

  .hero-slide { height: 76vh; min-height: 460px; }
  .hero-panel { padding: 2.4rem 1.6rem; }
  .hero-panel::before { inset: 10px; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { width: 10%; }

  .page-hero { height: 250px; }

  .about-img-wrap { padding-bottom: 0; }
  .about-img-wrap .plate-front { display: none; }
  .about-img-wrap::after { display: none; }
  .badge-float { position: static; display: inline-block; margin-top: 1rem; border-width: 0; max-width: none; }

  .contact-info-card, .contact-form-wrap { padding: 2.1rem 1.5rem; }
  .cta-section .cta-frame { padding: 2.2rem 1.2rem; }
  .footer-top { padding: 58px 0 44px; }
}

@media (max-width: 767.98px) {
  :root { --section-pad: 58px; --grid-gap: 1.25rem; }

  body { font-size: .9rem; }
  .hero-slide { height: 82vh; min-height: 440px; }
  .hero-slide p { font-size: .93rem; }
  .hero-slider .carousel-indicators { margin-bottom: 1.4rem; }
  .hero-slider .carousel-indicators [data-bs-target] { width: 30px; }
  .hero-slider .carousel-indicators .active { width: 44px; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { display: none; }

  .page-hero { height: 210px; }
  .page-hero .container { padding-left: 1.1rem; }

  .main-navbar .navbar-brand img,
  .main-navbar.scrolled .navbar-brand img { height: 38px; }
  .product-card, .item-card { border-width: 8px; }
  .product-card:hover, .item-card:hover { transform: none; border-width: 8px; }
  .feature-card:hover, .value-pill:hover, .mv-card:hover { transform: none; }

  .mv-card { padding: 2rem 1.5rem; }
  .contact-info-card::before { inset: 10px; }
  .back-to-top { right: 14px; bottom: 14px; width: 40px; height: 40px; }
}
