/*
Theme Name: Gravity Luxe
Theme URI: https://gravityfz.com
Author: Gravity Trading
Description: A luxury B2B trading platform for Gravity Trading FZ-LLC. Premium furniture, lighting, building materials, workspace and acoustics procurement.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: gravity-luxe
*/

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --background: #fdfdfd;
  --foreground: #15110d;
  --surface: #f4f3f1;
  --hairline: #e2e0dc;
  --muted: #68625e;
  --muted-foreground: #8b8580;
  --brand: #8d6850;
  --brand-dark: #6f503d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(21, 17, 13, 0.14);
  --drawer-width: 480px;
  --header-height: 80px;
  --topbar-height: 34px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "Inter", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ============================================
   Container
   ============================================ */
.container {
  width: min(100% - 48px, 1408px);
  margin-inline: auto;
}

/* ============================================
   Top Utility Bar
   ============================================ */
.topbar {
  background: var(--foreground);
  color: var(--background);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-height);
  gap: 24px;
}

.topbar__contact {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0.82;
}

.topbar__contact a { color: inherit; }
.topbar__contact a:hover { opacity: 0.7; }

/* ============================================
   Main Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 253, 253, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--hairline);
  box-shadow: 0 4px 24px rgba(21, 17, 13, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--foreground);
}

.brand__tag {
  border-left: 1px solid var(--hairline);
  padding-left: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.desktop-nav a:hover { color: var(--brand); }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--foreground);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 0;
}

.icon-button:hover {
  color: var(--brand);
  background: var(--surface);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button { display: none; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 14px 28px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  border-radius: 0;
  background: transparent;
}

.btn--dark {
  color: var(--background);
  background: var(--foreground);
  border-color: var(--foreground);
}
.btn--dark:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.btn--light {
  color: var(--foreground);
  background: transparent;
}
.btn--light:hover {
  color: var(--background);
  background: var(--foreground);
}

.btn--outline {
  color: var(--background);
  background: transparent;
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: var(--background);
  color: var(--foreground);
  border-color: var(--background);
}

.btn--sm {
  min-height: 36px;
  padding: 10px 20px;
  font-size: 11px;
}

.header-quote-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: color 0.2s ease;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}
.header-quote-link:hover { color: var(--brand); }

/* ============================================
   Eyebrow / Section Identifier
   ============================================ */
.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 640px;
  height: 88vh;
  overflow: hidden;
}

.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253,253,253,0.08), rgba(253,253,253,0) 44%, rgba(253,253,253,0.72));
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 11vw, 116px);
}

.hero__copy {
  max-width: 760px;
}

.hero__over-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 24px 0 0;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 48.05px);
  letter-spacing: -1.68px;
  line-height: 1.02;
  color: var(--foreground);
}

.hero p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(21, 17, 13, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.hero__text-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foreground);
  position: relative;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}
.hero__text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.hero__text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================
   Marquee Band (Developer Logos)
   ============================================ */
.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  background: var(--surface);
}

.marquee-band__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 92px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
}

.marquee__track span {
  color: rgba(104, 98, 94, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   Section Layout
   ============================================ */
.section {
  padding-block: clamp(88px, 11vw, 132px);
}

.section--surface {
  background: var(--surface);
}

.section--bordered {
  border-block: 1px solid var(--hairline);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.section h2 {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: -1.2px;
  line-height: 1.04;
}

.section h3 {
  margin: 8px 0 0;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.48px;
  line-height: 1.2;
}

.text-link {
  position: relative;
  display: inline-block;
  min-width: max-content;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 2px;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================
   Section 01 - Category Grid (Disciplines)
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.category-card--tall {
  grid-row: span 2;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card--tall img {
  aspect-ratio: 4 / 5;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.category-card h3 {
  margin: 8px 0 0;
  font-size: 27px;
  font-weight: 300;
  letter-spacing: -0.54px;
}

.category-card p {
  max-width: 330px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.arrow {
  font-size: 26px;
  transition: transform 0.25s ease;
  color: var(--muted);
}
.category-card:hover .arrow {
  transform: translate(4px, -4px);
}

/* ============================================
   Section 02 - Product/SKU Grid
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.3s ease;
  border: 1px solid var(--hairline);
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--muted-foreground);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(253,253,253,0.92);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--foreground);
  backdrop-filter: blur(4px);
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card__title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.34px;
  line-height: 1.25;
  margin: 0;
}

.product-card__sku {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0;
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foreground);
  border: 0;
  border-top: 1px solid var(--hairline);
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-card__action:hover {
  color: var(--brand);
}

.product-card__action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   Section 03 - The House (Split Layout)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 96px);
  align-items: center;
}

.about-section__image {
  overflow: hidden;
}

.about-section__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-section p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 48px 0 0;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}

.stats dt {
  margin: 0;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -1.1px;
}

.stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   Process List
   ============================================ */
.process-list {
  display: grid;
  gap: 1px;
  background: var(--hairline);
}

.process-list article {
  display: grid;
  grid-template-columns: 56px 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  background: var(--surface);
}

.process-list .step-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.44px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   Section 04 - Insights
   ============================================ */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.insight-grid article {
  border-top: 1px solid var(--foreground);
  padding-top: 24px;
}

.insight-grid .insight-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insight-grid h3 {
  min-height: 112px;
  margin: 28px 0 32px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.56px;
  line-height: 1.28;
}

.insight-grid a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 2px;
}
.insight-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.insight-grid a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  background: var(--foreground);
  color: var(--background);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 8vw, 96px);
  padding-block: clamp(80px, 10vw, 112px);
}

.cta h2 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 42px);
  letter-spacing: -1.05px;
  line-height: 1.08;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--foreground);
  color: var(--background);
  border-top: 1px solid rgba(251, 250, 248, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-block: 72px;
}

.footer h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}

.footer p {
  max-width: 440px;
  color: rgba(251, 250, 248, 0.7);
  line-height: 1.7;
  margin: 16px 0 0;
  font-size: 14px;
}

.footer nav,
.footer address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(251, 250, 248, 0.78);
  font-style: normal;
  line-height: 1.65;
}

.footer address { font-size: 14px; }

.footer .eyebrow {
  color: rgba(251, 250, 248, 0.5);
  margin-bottom: 8px;
}

.footer a {
  position: relative;
  color: rgba(251,250,248,0.78);
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--background); }

.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__socials a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer__socials a:hover { opacity: 1; }

.footer__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.footer__download:hover { opacity: 1; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(251, 250, 248, 0.1);
  color: rgba(251, 250, 248, 0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   Quote Drawer
   ============================================ */
.quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.quote-drawer.is-open {
  pointer-events: auto;
}

.quote-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 13, 0.48);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.quote-drawer.is-open .quote-drawer__scrim {
  opacity: 1;
}

.quote-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--drawer-width);
  max-width: 100vw;
  background: var(--background);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(21, 17, 13, 0.12);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-drawer.is-open .quote-drawer__panel {
  transform: translateX(0);
}

.quote-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--hairline);
  min-height: 80px;
}

.quote-drawer__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.quote-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.quote-drawer__body h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.44px;
}

.quote-drawer__body p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.quote-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--hairline);
}

.quote-steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--hairline);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.quote-steps span.active {
  color: var(--background);
  background: var(--foreground);
  border-color: var(--foreground);
}

.quote-steps span.done {
  color: var(--brand);
  border-color: var(--brand);
}

.quote-steps i {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  max-width: 40px;
}

/* Quote Drawer - Empty State */
.quote-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  gap: 16px;
}

.quote-empty svg {
  width: 48px;
  height: 48px;
  color: var(--muted-foreground);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.quote-empty p {
  max-width: 280px;
}

/* Quote Drawer - Review Items */
.quote-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--hairline);
}

.quote-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.quote-item__info {
  flex: 1;
  min-width: 0;
}

.quote-item__title {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.quote-item__sku {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 4px 0 0;
}

.quote-item__remove {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted-foreground);
  padding: 4px;
  transition: color 0.2s ease;
  align-self: flex-start;
}
.quote-item__remove:hover { color: #e74c3c; }
.quote-item__remove svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Quote Drawer - Contact Form */
.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form .form-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 0 14px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.quote-form textarea {
  padding: 14px;
  min-height: 100px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--foreground);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--muted-foreground);
}

/* Quote Drawer - Success State */
.quote-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  gap: 16px;
}

.quote-success svg {
  width: 56px;
  height: 56px;
  color: var(--brand);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.quote-success h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
}

.quote-success p {
  max-width: 320px;
  color: var(--muted);
}

/* ============================================
   Mobile Nav Drawer
   ============================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.drawer.is-open { pointer-events: auto; }

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 13, 0.48);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.drawer.is-open .drawer__scrim { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100vw);
  background: var(--background);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(21, 17, 13, 0.12);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--hairline);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  gap: 20px;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: var(--brand); }

/* ============================================
   Blog / Archive / Single / Page / 404
   ============================================ */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding-block: clamp(64px, 8vw, 96px);
}

.page-content h1 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1.04;
  margin: 0 0 32px;
}

.page-content p {
  line-height: 1.75;
  color: var(--muted);
}

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

.blog-card {
  border-top: 1px solid var(--foreground);
  padding-top: 24px;
}

.blog-card__meta {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-card__title {
  margin: 20px 0 0;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.44px;
  line-height: 1.3;
  min-height: 86px;
}

.blog-card__excerpt {
  margin: 12px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-card a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.blog-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.blog-card a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Single Post */
.single-post article p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.single-post__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

.single-post__nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Comments */
.comments-area {
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

.comment-reply-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.48px;
  margin: 0 0 24px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: var(--background);
  font-size: 14px;
  border-radius: 0;
  outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--foreground);
}

.comment-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}

.comment-author { font-weight: 500; }

.comment-metadata {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 12px;
}

.search-form input[type="search"] {
  flex: 1;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  background: var(--background);
  border-radius: 0;
  outline: none;
}

.search-form input[type="search"]:focus {
  border-color: var(--foreground);
}

.search-form button {
  min-height: 48px;
}

/* 404 */
.error-404 {
  text-align: center;
  padding-block: clamp(80px, 12vw, 140px);
}

.error-404 h1 {
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 200;
  margin: 0;
  color: var(--brand);
}

.error-404 p {
  margin: 16px 0 32px;
  font-size: 18px;
  color: var(--muted);
}

/* ============================================
   Page Hero (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--foreground);
}

.page-hero__overlay {
  padding: 60px 0 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero__overlay h1 {
  margin: 16px 0 0;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1.02;
  color: #fff;
}

.page-hero__overlay .eyebrow {
  color: rgba(255,255,255,0.6);
}

.page-hero__subtitle {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 16px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================
   Responsive — Small Phone
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 520px;
    height: 65vh;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .page-hero {
    min-height: 260px;
  }

  .page-hero__overlay {
    padding: 40px 0 32px;
  }

  .page-hero__overlay h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .page-hero__subtitle {
    font-size: 14px;
  }

  h2,
  .section h2,
  .section-head h2 {
    font-size: 24px !important;
  }

  .product-card__badge {
    font-size: 10px;
    top: 8px;
    left: 8px;
    padding: 5px 10px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card__body h3 {
    font-size: 14px;
  }

  input,
  select,
  textarea,
  .btn,
  button,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="submit"] {
    min-height: 44px !important;
    font-size: 16px !important;
  }

  .category-card__body h3 {
    font-size: 16px;
  }

  .values-grid {
    gap: 32px !important;
  }

  .values-grid h2 {
    font-size: 22px !important;
  }

  .insight-grid article {
    padding: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .cta__inner h2 {
    font-size: 22px;
  }

  .footer__grid {
    gap: 32px;
  }

  .brand__name {
    font-size: 18px;
  }

  .quote-drawer__panel {
    padding: 0;
  }

  .site-header__inner {
    height: 60px;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1408px);
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__contact {
    display: none;
  }

  .brand__tag {
    display: none;
  }

  .site-header__inner {
    height: 68px;
  }

  .desktop-nav,
  .header-quote-link {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: 620px;
    height: 82vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__text-link {
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .marquee-band__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 24px;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .category-grid,
  .product-grid,
  .insight-grid,
  .stats,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .category-card--tall {
    grid-row: auto;
  }

  .category-card--tall img,
  .category-card img {
    aspect-ratio: 4 / 3;
  }

  .category-card__body {
    align-items: flex-start;
  }

  .insight-grid h3,
  .blog-card__title {
    min-height: 0;
  }

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

  .single-post__nav {
    flex-direction: column;
    gap: 12px;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

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

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-drawer__panel {
    width: 100vw;
  }

  .quote-drawer__head,
  .quote-steps,
  .quote-drawer__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================
   Elementor Kit Override
   ============================================ */
.elementor-kit-244 {
  font-family: "Inter", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: normal !important;
}
.elementor-kit-244 h1,
.elementor-kit-244 h2,
.elementor-kit-244 h3,
.elementor-kit-244 h4,
.elementor-kit-244 h5,
.elementor-kit-244 h6 {
  font-family: "Inter", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif !important;
}
.elementor-kit-244 button,
.elementor-kit-244 .elementor-button {
  font-family: "Inter", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif !important;
}
