/* ============================================================
   FABRICADO — Marketing Website Styles
   Premium Modular Kitchens — South Africa
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --white: #FFFFFF;
  --orange: #FF6600;
  --orange-dark: #E55A00;
  --orange-light: #FFF3E0;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --dark: #1A1A1A;

  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  --max-w: 1200px;
  --nav-h: 68px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--gray-600); line-height: 1.7; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 48px 0;
}

/* --- Orange Bar (brand accent) --- */
.orange-bar {
  width: 5px;
  height: 100%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 0;
}

/* --- Divider --- */
.divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 12px 0;
}

.divider--center {
  margin: 12px auto;
}

/* --- Page Header (orange band) --- */
.page-header {
  background: var(--orange);
  padding: 60px 0 48px;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 600px;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--orange);
  height: var(--nav-h);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Mobile Nav --- */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--orange);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.4);
}

.btn--orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.btn--dark {
  background: var(--gray-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-weight: 700;
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* --- Hero Section --- */
.hero {
  background: var(--dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,102,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}

.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 560px;
  margin-bottom: 36px;
}

/* --- Style Cards --- */
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.style-card {
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.style-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-left-color: var(--orange-dark);
}

.style-card__num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.style-card__inspo {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.style-card__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.style-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.style-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.style-card__link:hover {
  gap: 12px;
  color: var(--orange-dark);
}

/* --- Steps Pills --- */
.steps-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.step-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  flex: 1;
  min-width: 200px;
}

.step-pill__num {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-pill__text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
}

/* --- Service Tiers --- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.service-card--featured {
  border-color: var(--orange);
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 2px;
}

.service-card__title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card__sub {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.service-card__feature::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1.4;
}

/* --- Style Detail (styles.html) --- */
.style-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.style-detail:last-of-type { border-bottom: none; }

.style-detail__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.style-detail__num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  flex-shrink: 0;
}

.style-detail__inspo {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.style-detail__name {
  font-size: 2rem;
  font-weight: 900;
}

.style-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.style-detail__philosophy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.style-detail__moves li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.style-detail__moves li::before {
  content: '— ';
  color: var(--orange);
  font-weight: 700;
}

.style-detail__specs {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
}

.style-detail__specs h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}

.spec-row:last-child { border-bottom: none; }

.spec-row__label { color: var(--gray-500); }
.spec-row__value { font-weight: 600; color: var(--gray-900); }

.style-detail__bestfor {
  background: var(--gray-900);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.style-detail__bestfor h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}

.style-detail__bestfor p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Kitchen Style CSS Illustrations --- */
.kitchen-illustration {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Style 01 — Warm Minimalism */
.illus-01 {
  height: 300px;
  background: #F5F0E8;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

/* Horizontal cabinet lines */
.illus-01::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    /* Cabinet body */
    linear-gradient(to bottom, transparent 60px, #C4A882 60px 160px, transparent 160px),
    /* Island */
    linear-gradient(to bottom, transparent 180px, #C4A882 180px 280px, transparent 280px),
    /* Wall cabinets */
    linear-gradient(to bottom, transparent 20px, #E8D8C4 20px 80px, transparent 80px);
  opacity: 0.9;
}

/* Ribbed texture overlay */
.illus-01::after {
  content: '';
  position: absolute;
  top: 60px; left: 24px; right: 24px; height: 100px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.06) 8px,
    rgba(0,0,0,0.06) 10px
  );
}

/* Warm oak block */
.illus-01 .illus-block {
  position: absolute;
  bottom: 60px;
  left: 24px;
  width: 60%;
  height: 100px;
  background: linear-gradient(135deg, #D4B88A 0%, #C4A882 50%, #B8956A 100%);
  border-radius: 2px;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.1);
}

/* Island block */
.illus-01 .illus-island {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 35%;
  height: 70px;
  background: linear-gradient(135deg, #E0D0B8 0%, #D4C4A8 100%);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Style 02 — Concealed Luxury */
.illus-02 {
  height: 300px;
  background: #2C2416;
  position: relative;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

/* Dark wood block */
.illus-02 .illus-block {
  position: absolute;
  bottom: 60px;
  left: 24px;
  width: 55%;
  height: 110px;
  background: linear-gradient(135deg, #4A3728 0%, #3D2B1F 50%, #2E1F15 100%);
  border-radius: 2px;
}

/* Bronze accent line (recessed handle suggestion) */
.illus-02 .illus-handle {
  position: absolute;
  bottom: 115px;
  left: 24px;
  width: 55%;
  height: 4px;
  background: linear-gradient(90deg, #B8956C, #D4B896, #B8956C);
  border-radius: 2px;
}

/* Waterfall island */
.illus-02 .illus-island {
  position: absolute;
  bottom: 30px;
  right: 40px;
  width: 32%;
  height: 130px;
  background: linear-gradient(180deg, #8B8B7A 0%, #6B6B5A 60%, #5B5B4A 100%);
  border-radius: 2px 2px 0 0;
}

/* Stone accent splash */
.illus-02::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 40px;
  width: 32%;
  height: 80px;
  background: linear-gradient(135deg, rgba(139,139,122,0.3), rgba(139,139,122,0.1));
  border: 1px solid rgba(184,149,108,0.3);
}

/* Style 03 — Living Space Integration */
.illus-03 {
  height: 300px;
  background: #EDE8DF;
  position: relative;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

/* Tile pattern */
.illus-03::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      rgba(0,0,0,0.05) 49px,
      rgba(0,0,0,0.05) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      rgba(0,0,0,0.05) 49px,
      rgba(0,0,0,0.05) 50px
    );
}

/* Stoneware block */
.illus-03 .illus-block {
  position: absolute;
  bottom: 60px;
  left: 24px;
  width: 50%;
  height: 100px;
  background: linear-gradient(135deg, #E0D4C0 0%, #D4C4B0 50%, #C8B8A4 100%);
  border-radius: 2px;
}

/* Full-length handle strip */
.illus-03 .illus-handle {
  position: absolute;
  bottom: 157px;
  left: 24px;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #9B8B73, #B8A88C, #9B8B73);
}

/* Open shelf section */
.illus-03 .illus-shelf {
  position: absolute;
  top: 40px;
  left: 24px;
  width: 25%;
  height: 80px;
  border: 2px solid rgba(0,0,0,0.15);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.illus-03 .illus-shelf-line {
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 0 8px;
}

/* Style 04 — Architectural Precision */
.illus-04 {
  height: 300px;
  background: #F8F8F8;
  position: relative;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

/* Grid overlay */
.illus-04::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      rgba(0,0,0,0.04) 49px,
      rgba(0,0,0,0.04) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      rgba(0,0,0,0.04) 49px,
      rgba(0,0,0,0.04) 50px
    );
}

/* Glossy black cabinet door */
.illus-04 .illus-block {
  position: absolute;
  bottom: 60px;
  left: 24px;
  width: 45%;
  height: 120px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 40%, #0A0A0A 100%);
  border-radius: 2px;
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,0.15),
    inset -1px -1px 0 rgba(0,0,0,0.3),
    0 8px 30px rgba(0,0,0,0.3);
}

/* Phoenix groove handle (thin horizontal inset line) */
.illus-04 .illus-handle {
  position: absolute;
  bottom: 115px;
  left: 24px;
  width: 45%;
  height: 3px;
  background: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.4);
}

/* Marble slab */
.illus-04 .illus-marble {
  position: absolute;
  bottom: 50px;
  right: 40px;
  width: 38%;
  height: 40px;
  background: linear-gradient(
    135deg,
    #F5F0EA 0%,
    #EAE4DC 20%,
    #F0EBE3 40%,
    #E8E2D8 60%,
    #F2EDE5 80%,
    #EDE8E0 100%
  );
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Marble veining */
.illus-04 .illus-marble::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(125deg, transparent 40%, rgba(180,160,140,0.2) 45%, transparent 50%),
    linear-gradient(140deg, transparent 60%, rgba(160,140,120,0.15) 65%, transparent 70%),
    linear-gradient(110deg, transparent 20%, rgba(200,180,160,0.1) 25%, transparent 30%);
  border-radius: 2px;
}

/* --- Unit Selector (units.html) --- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-bar__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
}

.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* --- Unit Table --- */
.unit-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.unit-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.unit-table thead {
  background: var(--gray-900);
}

.unit-table th {
  padding: 14px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  text-align: left;
  white-space: nowrap;
}

.unit-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.unit-table tbody tr:hover {
  background: var(--orange-light);
}

.unit-table tbody tr:last-child {
  border-bottom: none;
}

.unit-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--gray-700);
  vertical-align: top;
}

.unit-table .sku-col {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}

.unit-table .style-col {
  font-weight: 600;
  color: var(--gray-900);
}

.unit-table .price-col {
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}

.unit-table tr[data-style]:not([data-style="all"]) {
  display: none;
}

.unit-table tr[data-style].visible {
  display: table-row;
}

/* --- Finish Library (finishes.html) --- */
.board-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.board-table thead {
  background: var(--gray-900);
}

.board-table th {
  padding: 12px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  text-align: left;
}

.board-table td {
  padding: 12px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.board-table tr:hover td {
  background: var(--gray-50);
}

.board-table .check {
  color: var(--orange);
  font-weight: 900;
}

/* Handle cards */
.handle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.handle-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.handle-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.handle-card__visual {
  height: 50px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.handle-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.handle-card__styles {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}

.handle-card__desc {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Hardware cards */
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hardware-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.hardware-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.hardware-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hardware-card__code {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.hardware-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
}

/* --- How It Works (how-it-works.html) --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step::after {
  content: '→';
  position: absolute;
  top: 20px;
  right: -18px;
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 900;
}

.process-step:last-child::after {
  display: none;
}

.process-step__num {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.process-step__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.process-step__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Zone cards */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.zone-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.zone-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.zone-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.zone-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.zone-card__name {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.zone-card__desc {
  font-size: 0.825rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

.zone-card__units {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

/* Service comparison */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  margin: 32px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table thead {
  background: var(--gray-900);
}

.comparison-table th {
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}

.comparison-table td {
  padding: 12px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table tbody tr:hover td {
  background: var(--orange-light);
}

/* Lead time timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 0;
}

.timeline-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--gray-50);
  border-top: 4px solid var(--orange);
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 12px solid var(--gray-200);
}

.timeline-item:last-child::after { display: none; }

.timeline-item__day {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.timeline-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.timeline-item__desc {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Payment terms */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.payment-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
}

.payment-card h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- Contact Page (contact.html) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: #EF4444;
}

.form-error {
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.form-group--error .form-error {
  display: block;
}

.contact-info {
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.success-msg {
  background: #ECFDF5;
  border: 1px solid #10B981;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  display: none;
}

.success-msg.show {
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
}

.footer__bottom a:hover {
  color: var(--white);
}

/* --- Utility --- */
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .style-detail__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    padding: 72px 0 56px;
  }

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

  .section {
    padding: 56px 0;
  }

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

  .steps-row {
    flex-direction: column;
  }

  .step-pill {
    min-width: unset;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .contact-form {
    padding: 24px;
  }

  .style-detail__num {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .handle-grid {
    grid-template-columns: 1fr;
  }
}/* ================================================================
   ADDITIONAL FABRICADO WEBSITE STYLES
   (Aliases + missing components for units/finishes/how-it-works/contact pages)
   ================================================================ */

/* --- Nav aliases (my HTML uses .navbar, .nav-logo etc.) --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--orange);
  height: var(--nav-h);
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}
.btn-nav {
  background: rgba(255,255,255,0.15) !important;
  padding: 8px 16px !important;
  border-radius: 4px;
  border: none !important;
  color: white !important;
}
.btn-nav:hover {
  background: rgba(255,255,255,0.3) !important;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Page Header extras --- */
.page-header-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.page-header-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: 8px;
}

/* --- Section helpers --- */
.section-pad {
  padding: 64px 0;
}
.bg-light {
  background: var(--gray-50);
}
.section-header {
  margin-bottom: 32px;
}
.section-header h2 {
  margin-bottom: 8px;
}
.section-sub {
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 560px;
}

/* --- Grid helpers --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

/* --- Filter Section --- */
.filter-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-right: 4px;
}
.filter-btn {
  padding: 7px 16px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* --- Units Table --- */
.units-section {
  padding: 40px 0;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.units-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 900px;
}
.units-table thead {
  background: var(--gray-900);
  color: white;
}
.units-table th {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.units-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  color: var(--gray-700);
}
.units-table tbody tr:hover {
  background: var(--gray-50);
}
.units-table tbody tr:nth-child(even) td {
  background: rgba(249,250,251,0.5);
}
.units-table tbody tr:nth-child(even):hover td {
  background: var(--gray-100);
}
.sku-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 3px 7px;
  border-radius: 3px;
  white-space: nowrap;
  font-family: 'Courier New', monospace;
}
.style-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.style-pill.style-01 { background: #FFF3E0; color: #E65100; }
.style-pill.style-02 { background: #EFEBE9; color: #4E342E; }
.style-pill.style-03 { background: #F1F8E9; color: #33691E; }
.style-pill.style-04 { background: #ECEFF1; color: #37474F; }
.price-tag {
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}
.check {
  color: var(--orange);
  font-weight: 900;
  font-size: 1.1rem;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--gray-900);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 {
  color: white;
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 24px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--orange);
  color: white;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,102,0,0.4);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* --- Handle Cards (Finishes page) --- */
.handle-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.handle-visual {
  height: 160px;
}
.handle-info {
  padding: 16px;
}
.handle-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.handle-styles {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}
.handle-info p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 8px;
}
.handle-spec {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 8px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
}

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.step-time {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}

/* --- Zone Cards --- */
.zone-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: var(--transition);
}
.zone-card:hover {
  border-color: var(--orange);
}
.zone-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.zone-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.zone-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.zone-sub {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
}
.zone-card > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.zone-units {
  font-size: 0.8125rem;
  color: var(--gray-700);
  background: var(--gray-50);
  padding: 8px 12px;
  border-radius: 4px;
  line-height: 1.5;
}

/* --- Service Cards --- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  background: white;
}
.service-card.featured {
  border-color: var(--orange);
  border-width: 2px;
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.service-price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 2px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  margin-bottom: 16px;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-list li:last-child {
  border-bottom: none;
}
.service-best-for {
  font-size: 0.8125rem;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 10px 12px;
  border-radius: 4px;
  line-height: 1.5;
}

/* --- Timeline --- */
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
}
.timeline-item {
  flex: 1;
  text-align: center;
  min-width: 140px;
}
.timeline-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 2px;
}
.timeline-week {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.timeline-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.timeline-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin-top: 60px;
  min-width: 30px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-wrap {
  background: white;
}
.contact-form-wrap h2 {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--gray-900);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-success {
  background: #ECFDF5;
  border: 1px solid #10B981;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  color: #065F46;
  font-weight: 600;
  margin-top: 12px;
}
.contact-info-card {
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
}
.what-next-list {
  list-style: none;
  counter-reset: next-counter;
}
.what-next-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.what-next-list li:last-child {
  border-bottom: none;
}
.next-num {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

/* --- Footer extras --- */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-links h4 {
  color: white;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  padding: 4px 0;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-links li:not(a) {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--orange);
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav-links.open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    gap: 6px;
  }
  .filter-label {
    width: 100%;
    margin-bottom: 4px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .timeline {
    flex-direction: column;
    align-items: stretch;
  }
  .timeline-line {
    display: none;
  }
  .timeline-item {
    text-align: left;
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .units-table {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   PREMIUM AESTHETIC UPGRADES � Fabricado
   ================================================================ */

/* --- Body: subtle gradient background --- */
body {
  background: #FDFDFC;
}

/* --- Section backgrounds: use subtle off-white instead of stark white --- */
.section {
  background: #FDFDFC;
}
.section-pad {
  background: #FDFDFC;
}

/* --- Feature sections with warm cream tone --- */
.hero + .section,
#styles {
  background: #FAFAF8;
}

/* --- Premium card treatment: shadow + subtle border --- */
.style-card {
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.style-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
  border-color: rgba(255,102,0,0.2);
}

/* --- Image containers: subtle shadow + radius --- */
.style-detail img,
.kitchen-illustration img {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
}

/* --- Premium grid backgrounds on alternate sections --- */
.bg-light {
  background: #F7F6F3;
}

/* --- Table: subtler styling --- */
.units-table thead {
  background: #1A1A1A;
}
.units-table td {
  color: #3A3A3A;
}
.units-table tbody tr:hover td {
  background: #FFF8F4;
}

/* --- Buttons: more refined --- */
.btn--orange {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(255,102,0,0.25);
}
.btn--orange:hover {
  box-shadow: 0 6px 24px rgba(255,102,0,0.4);
  transform: translateY(-2px);
}

/* --- Footer: richer black --- */
.footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.04);
}
