/* ============================================================
   BK STARLING IMPEX - Luxury Furniture
   White & Champagne Palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --bg:          #faf8f5;
  --white:       #ffffff;
  --gold:        #b8965a;
  --gold-dark:   #9a7a3d;
  --gold-light:  #d4b483;
  --gold-pale:   #f0e6d3;
  --text:        #1a1a1a;
  --text-light:  #6b6b6b;
  --text-muted:  #9a9a9a;
  --border:      #e8e0d5;
  --section-alt: #f3ede5;
  --dark:        #1a1510;
  --nav-h:       80px;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', sans-serif;

  --shadow:       0 4px 28px rgba(0,0,0,0.07);
  --shadow-hover: 0 14px 44px rgba(0,0,0,0.14);
  --t:            all 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.85;
}

.gold-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.1rem 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--t);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a84c 0%, #b8965a 40%, #9a7a3d 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,150,90,.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d4b46a 0%, #c9a84c 40%, #b8965a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,150,90,.45);
}

.btn-outline   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-dark { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-dark:hover {
  background: linear-gradient(135deg, #c9a84c 0%, #b8965a 40%, #9a7a3d 100%);
  color: var(--white);
  border-color: transparent;
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5rem;
  transition: var(--t);
}

.nav.hero-nav  { background: transparent; }
.nav.scrolled  {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 22px rgba(0,0,0,.07);
}

.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.nav.scrolled .logo-img { filter: none; }

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  position: relative;
  transition: var(--t);
}
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 2.5rem;
}

.nav-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--t);
}
.nav.scrolled .nav-phone { color: var(--text); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #c9a84c 0%, #b8965a 40%, #9a7a3d 100%);
  color: var(--white) !important;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--t);
  box-shadow: 0 3px 12px rgba(184,150,90,.3);
}
.nav-cta:hover { background: linear-gradient(135deg, #d4b46a 0%, #c9a84c 50%, #b8965a 100%) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(184,150,90,.42); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--t); }
.nav.scrolled .hamburger span { background: var(--text); }

/* ── Mobile Nav ────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }

.mob-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--text);
  padding: 0.5rem;
  line-height: 1;
}

.mob-links {
  margin-top: 2.5rem;
}
.mob-links a {
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--text);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.mob-links a:hover { color: var(--gold); padding-left: 0.5rem; }

.mob-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 2px solid var(--gold);
}
.mob-footer p { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.mob-footer a { display: block; font-family: var(--font-h); font-size: 1.3rem; color: var(--gold); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(8,6,4,.68) 0%, rgba(20,16,10,.44) 55%, rgba(0,0,0,.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}
.hero-scroll-hint::before {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45));
}

/* ── Stats Bar ─────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 1.6rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0.6rem 1rem;
  border-right: 1px solid rgba(255,255,255,.28);
}
.stat-item:last-child { border-right: none; }

.stat-n {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

/* ── Section Shell ─────────────────────────────────── */
.section { padding: 7rem 5rem; }
.section-alt { background: var(--section-alt); }
.container { max-width: 1340px; margin: 0 auto; }

.section-hdr { margin-bottom: 3.5rem; }
.section-hdr.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-hdr.spread { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }

/* ── Features ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.feat-card {
  background: var(--white);
  padding: 2.6rem 2rem;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--t);
}
.feat-card:hover { border-bottom-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.feat-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: var(--t);
}
.feat-card:hover .feat-icon { background: var(--gold); }

.feat-title { font-family: var(--font-h); font-size: 1.2rem; margin-bottom: 0.7rem; }
.feat-text  { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* ── Category Cards ────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.cat-grid.full-12 { grid-template-columns: repeat(4, 1fr); }

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.cat-card:hover img { transform: scale(1.09); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.76) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem 1.5rem;
  transition: var(--t);
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.32) 60%, transparent 100%); }

.cat-name  { font-family: var(--font-h); font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.cat-arrow {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0; transform: translateY(7px); transition: all 0.3s ease;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── Services (Alternating) ────────────────────────── */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.svc-block.flip { direction: rtl; }
.svc-block.flip > * { direction: ltr; }

.svc-img { overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-block:hover .svc-img img { transform: scale(1.04); }

.svc-body {
  background: var(--white);
  padding: 5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-num { font-family: var(--font-h); font-size: 4.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 1rem; }

/* ── Product Cards ─────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.prod-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--t);
  cursor: pointer;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.prod-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-card:hover .prod-img img { transform: scale(1.08); }

.prod-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.28rem 0.7rem;
  background: var(--gold); color: var(--white);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}

.prod-info { padding: 1.2rem 1.4rem 1.6rem; }
.prod-cat  { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem; }
.prod-name { font-family: var(--font-h); font-size: 1.12rem; margin-bottom: 0.4rem; line-height: 1.3; }
.prod-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.8rem; line-height: 1.6; }
.prod-cta  { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.prod-card:hover .prod-cta { text-decoration: underline; }

/* ── Testimonials ──────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--t);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem; right: 1.8rem;
  font-family: var(--font-h);
  font-size: 5.5rem;
  color: var(--border);
  line-height: 1;
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 0.85rem; }
.testi-text { font-size: 0.93rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1.8rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); }
.testi-name   { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; }
.testi-loc    { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ── CTA Banner ────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 8rem 5rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(8,6,4,.72); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-banner p  { color: rgba(255,255,255,.74); max-width: 520px; margin: 0 auto 2.4rem; line-height: 1.85; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: 3.5rem 5rem; }
.page-hero-inner .section-tag { color: var(--gold-light); }
.page-hero-inner h1 { color: var(--white); }

.breadcrumb { display: flex; gap: 0.5rem; margin-top: 0.9rem; font-size: 0.78rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--t); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,.35); }

/* ── About Page ────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.img-wrap { position: relative; }
.img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.img-accent {
  position: absolute;
  bottom: -2.5rem; right: -2.5rem;
  width: 56%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-hover);
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.val-card {
  padding: 2.4rem;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--t);
}
.val-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.val-icon  { font-size: 1.9rem; margin-bottom: 1rem; }
.val-title { font-family: var(--font-h); font-size: 1.25rem; margin-bottom: 0.65rem; }
.val-text  { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-img  { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 1.25rem; filter: grayscale(0.2); transition: var(--t); }
.team-card:hover .team-img { filter: grayscale(0); }
.team-name { font-family: var(--font-h); font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ── Contact Page ──────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; }

.c-info-item { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.9rem; }
.c-icon {
  width: 48px; height: 48px;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.c-label { font-family: var(--font-h); font-size: 1rem; margin-bottom: 0.28rem; }
.c-val   { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.c-val a { color: var(--gold); transition: var(--t); }
.c-val a:hover { color: var(--gold-dark); }

.c-form { background: var(--white); padding: 3.5rem; box-shadow: var(--shadow); }
.c-form h3 { font-family: var(--font-h); font-size: 2rem; margin-bottom: 0.4rem; }
.c-form p  { font-size: 0.9rem; color: var(--text-light); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.3rem; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.field input, .field select, .field textarea {
  padding: 0.88rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--t);
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.wide { grid-column: 1 / -1; }

.map-wrap { margin-top: 5rem; height: 400px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(0.95); }

/* ── Product Filter Tabs ───────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.85rem 1.75rem;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--t);
  cursor: pointer;
}
.filter-btn:hover  { color: var(--gold); }
.filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 5.5rem 5rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo { display: none; }

.footer-about { font-size: 0.86rem; line-height: 1.82; margin-bottom: 1.8rem; max-width: 290px; }

.socials { display: flex; gap: 0.7rem; }
.s-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  transition: var(--t);
  font-family: var(--font-b);
  font-weight: 600;
}
.s-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-heading { font-family: var(--font-h); font-size: 1.1rem; font-weight: 500; color: var(--white); margin-bottom: 1.3rem; }

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,.58); transition: var(--t); }
.footer-links a:hover { color: var(--gold-light); padding-left: 7px; }

.foot-c { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.95rem; font-size: 0.84rem; }
.foot-c-icon { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.foot-c a { color: rgba(255,255,255,.65); transition: var(--t); }
.foot-c a:hover { color: var(--gold-light); }

.footer-bot {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.36); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,.36); transition: var(--t); }
.footer-legal a:hover { color: var(--gold-light); }

/* ── Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%       { transform: translateX(-50%) translateY(-10px); opacity: 1; }
}

.fade-up { opacity: 0; transform: translateY(34px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Divider ───────────────────────────────────────── */
.hr-gold { border: none; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav { padding: 0 2.5rem; }
  .section { padding: 5.5rem 2.5rem; }
  .hero-content { padding: 0 2.5rem; }
  .stats-bar { padding: 1.5rem 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 4.5rem 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-banner { padding: 6rem 2.5rem; }
  .page-hero-inner { padding: 3rem 2.5rem; }
  .contact-wrap { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-contact { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 0 1.5rem; }

  .hero-content { padding: 0 1.5rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .stat-item:nth-child(2) { border-right: none; }

  .section { padding: 4.5rem 1.5rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .prod-grid, .testi-grid { grid-template-columns: 1fr; }
  .svc-block, .svc-block.flip { grid-template-columns: 1fr; direction: ltr; }
  .svc-body { padding: 2.5rem 1.5rem; }
  .svc-img { height: 300px; }

  .about-split { grid-template-columns: 1fr; }
  .img-accent { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .c-form { padding: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }

  .page-hero { height: 320px; }
  .page-hero-inner { padding: 2rem 1.5rem; }

  .cta-banner { padding: 5rem 1.5rem; }
  .map-wrap { height: 280px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
