/* ═══════════════════════════════════════════════════════
   GOLD COAST TECHNOLOGIES — Design System
   Brand: Clean & Modern (Option B)
   Colors: Cream #EBE3D0 · Dark #332F35 · Gold #D6C594
   Font: Inter (400, 500, 600, 700, 800)
═══════════════════════════════════════════════════════ */

:root {
  --dark:      #332F35;
  --dark-80:   rgba(51,47,53,0.80);
  --gold:      #D6C594;
  --gold-deep: #B8A355;
  --gold-dark: #8c7a30;
  --cream:     #EBE3D0;
  --cream-light: #F5F0E8;
  --white:     #ffffff;
  --muted:     #6a6570;
  --border:    rgba(51,47,53,0.12);
  --shadow-sm: 0 2px 8px rgba(51,47,53,0.08);
  --shadow-md: 0 8px 32px rgba(51,47,53,0.10);
  --shadow-lg: 0 24px 64px rgba(51,47,53,0.12);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── LAYOUT ────────────────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}
.section-pad { padding: clamp(4rem, 6vw, 7rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 4vw, 4rem) 0; }

/* ── BACKGROUNDS ────────────────────────────────────── */
.bg-cream   { background: var(--cream-light); }
.bg-white   { background: var(--white); }
.bg-dark    { background: var(--dark); }
.bg-gold    { background: var(--gold); }
.bg-cream-mid { background: var(--cream); }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { line-height: 1.75; color: var(--muted); }

.text-gold  { color: var(--gold-deep); }
.text-dark  { color: var(--dark); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

/* ── LABELS / EYEBROWS ──────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.label::before { content: '✦'; font-size: 0.65rem; }

.label-light { color: var(--gold); }

/* ── STAR ORNAMENT ──────────────────────────────────── */
.star { color: var(--gold); display: inline-block; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(51,47,53,0.18);
}
.btn-primary:hover {
  background: #241f27;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(51,47,53,0.24);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(214,197,148,0.35);
}
.btn-gold:hover {
  background: #c9b87e;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(214,197,148,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(235,227,208,0.5);
}
.btn-outline-light:hover {
  background: rgba(235,227,208,0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.82rem; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 0.95rem; }

/* ── SITE HEADER ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(235,227,208,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(51,47,53,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo { width: 14rem; height: auto; }

/* top bar */
.top-bar {
  background: var(--dark);
  color: rgba(235,227,208,0.75);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar a { color: var(--gold); transition: color 0.2s; }
.top-bar a:hover { color: var(--cream); }
.top-bar-links { display: flex; gap: 1.5rem; align-items: center; }

/* ── NAV ────────────────────────────────────────────── */
.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(51,47,53,0.07);
  color: var(--dark);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--cream); color: var(--dark); }
.dropdown .dd-icon {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.dd-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  padding: 0.5rem 0.9rem 0.25rem;
}
.dd-divider {
  height: 1px;
  background: var(--border);
  margin: 0.4rem 0.5rem;
}
.dropdown a.dd-sub {
  padding-left: 1.4rem;
}
.dropdown a.dd-sub .dd-icon {
  background: transparent;
  font-size: 0.5rem;
  color: var(--gold-deep);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 8rem) 0 clamp(3rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--cream-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-gold {
  background: linear-gradient(135deg, var(--dark) 55%, #4a4335 100%);
}
.page-hero .label { color: var(--gold); }
.page-hero h1 { color: var(--cream); margin-bottom: 1.25rem; }
.page-hero p   { color: rgba(235,227,208,0.75); max-width: 560px; font-size: 1.05rem; }

/* diagonal accent */
.page-hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(214,197,148,0.07) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* ── SECTION HEADING ────────────────────────────────── */
.sec-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}
.sec-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sec-heading h2 { margin-bottom: 0.75rem; }
.sec-heading p  { font-size: 1rem; }

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 1.75rem; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* service card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.service-card h3 { font-size: 1.05rem; margin: 0; }
.service-card p  { font-size: 0.9rem; margin: 0; flex: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold-deep);
  transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 0.7rem; }

/* stat card */
.stat-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.stat-card .stat-num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card p { color: rgba(235,227,208,0.65); font-size: 0.85rem; margin: 0; }

/* feature card dark */
.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(214,197,148,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.feat-card:hover {
  border-color: rgba(214,197,148,0.45);
  transform: translateY(-4px);
}
.feat-card .feat-icon {
  width: 48px; height: 48px;
  background: rgba(214,197,148,0.10);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.feat-card h3 { color: var(--gold); font-size: 1rem; margin-bottom: 0.6rem; }
.feat-card p  { color: rgba(235,227,208,0.65); font-size: 0.88rem; margin: 0; }

/* ── GRID LAYOUTS ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,5rem); align-items: center; }

/* ── DIVIDER ────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.divider-gold { border-color: rgba(214,197,148,0.25); }

/* ── CHECK LIST ─────────────────────────────────────── */
.check-list { display: grid; gap: 0.85rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.92rem; color: var(--muted);
}
.check-list li::before {
  content: '✦';
  color: var(--gold-deep);
  font-size: 0.7rem;
  margin-top: 0.3em;
  flex-shrink: 0;
}
.check-list-light li { color: rgba(235,227,208,0.75); }
.check-list-light li::before { color: var(--gold); }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem,4vw,4rem) clamp(2rem,4vw,4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(214,197,148,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 0.5rem; font-size: clamp(1.5rem,2.5vw,2.2rem); }
.cta-banner p  { color: rgba(235,227,208,0.65); margin: 0; max-width: 480px; }
.cta-banner-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── TESTIMONIAL ────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--cream);
  font-family: Georgia, serif;
  pointer-events: none;
}
@media (max-width: 640px) {
  .testimonial-card::before {
    font-size: 3rem;
    top: 0.75rem; right: 1rem;
    opacity: 0.5;
  }
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.88rem; display: block; color: var(--dark); }
.testimonial-author span  { font-size: 0.8rem; color: var(--muted); }

/* ── PROCESS STEPS ──────────────────────────────────── */
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--dark);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  color: var(--gold);
}
.step-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-body p  { font-size: 0.9rem; }

/* ── PARTNERS SCROLLER ──────────────────────────────── */
.logo-scroller { overflow: hidden; margin-top: 2rem; }
.logo-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollLogos 30s linear infinite;
}
.logo-item {
  min-width: 10rem;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s;
}
.logo-item:hover { border-color: var(--gold-deep); }
.logo-item img {
  max-height: 3rem;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s;
}
.logo-item img[alt*="Konica"] { max-height: 4.5rem; }
.logo-item:hover img { filter: grayscale(20%) opacity(1); }
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CONTACT FORM ───────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { display: grid; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label {
  font-weight: 600; font-size: 0.83rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  background: var(--cream-light);
  color: var(--dark);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note { margin-top: 1rem; font-size: 0.88rem; min-height: 1.3em; }

/* ── IMAGE WITH OVERLAY ─────────────────────────────── */
.img-overlay-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.img-overlay-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-overlay-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(51,47,53,0.45) 0%, rgba(214,197,148,0.15) 100%);
}

/* ── BADGE / TAG ────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--cream); color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-gold { background: rgba(214,197,148,0.2); border-color: var(--gold); color: var(--gold-dark); }

/* ── JOB CARD ───────────────────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: all 0.22s ease;
}
.job-card:hover { border-color: var(--gold-deep); box-shadow: var(--shadow-md); }
.job-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.job-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }

/* ── BLOG CARD ──────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body .label { margin-bottom: 0.75rem; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; }
.blog-meta { display: flex; gap: 1rem; margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted); }

/* ── COVERAGE LIST ──────────────────────────────────── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.coverage-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem; font-weight: 500;
}
.coverage-item::before { content: '✦'; color: var(--gold-deep); font-size: 0.65rem; flex-shrink: 0; }

/* ── SITE FOOTER ────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(235,227,208,0.70);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand-logo { width: 8.5rem; margin-bottom: 1.25rem; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold);
  margin-bottom: 1.25rem; font-weight: 700;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(235,227,208,0.60);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.88rem; margin-bottom: 0.9rem;
}
.footer-contact-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(214,197,148,0.10);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-top: 0.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(214,197,148,0.12);
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  font-size: 0.8rem;
  color: rgba(235,227,208,0.35);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(214,197,148,0.10);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(235,227,208,0.65);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }

/* newsletter */
.newsletter-form {
  display: flex; gap: 0.5rem; margin-top: 1.25rem;
}
.newsletter-form input {
  flex: 1; border: 1.5px solid rgba(214,197,148,0.2);
  border-radius: 999px; padding: 0.65rem 1rem;
  background: rgba(235,227,208,0.06);
  color: var(--cream); font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(235,227,208,0.3); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold); color: var(--dark);
  border: none; border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 700; font-size: 0.82rem;
  cursor: pointer; transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #c9b87e; }

/* ── RESPONSIVE ─────────────────────────────────────── */

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner p { max-width: 100%; }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-split { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

@media (max-width: 640px) {
  /* ── Base ── */
  .container { width: calc(100% - 2rem); }

  /* ── Header ── */
  .top-bar { display: none; }
  .header-inner { height: 64px; gap: 0.75rem; }
  .brand-logo { width: 9rem; }
  .header-inner > .btn { display: none; } /* hide "Get a Quote" btn in header on mobile */

  /* ── Nav toggle ── */
  .nav-toggle { display: flex; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 64px);
    background: rgba(235,227,208,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem 1.25rem 3rem;
    overflow-y: auto;
    z-index: 9999;
    gap: 0.15rem;
  }
  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }
  .dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(51,47,53,0.05);
    border-radius: var(--radius-md);
    padding: 0.25rem 0.5rem;
    display: none;
    margin-top: 0.25rem;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown a { font-size: 0.92rem; padding: 0.6rem 0.9rem; }

  /* ── Typography ── */
  h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }

  /* ── Sections ── */
  .section-pad { padding: 3rem 0; }
  .section-pad-sm { padding: 2rem 0; }
  .sec-heading { margin-bottom: 2rem; }

  /* ── Hero ── */
  .home-hero { min-height: 100svh; }
  .hero-content { padding: 2rem 0 1.5rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-strip {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }
  .hero-strip-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 0;
  }
  .hero-strip-item strong { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* ── Page hero ── */
  .page-hero { padding: 4rem 0 4rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .page-hero::before { display: none; }
  .page-hero-accent { display: none; }
  .page-hero div[style*="display:flex"],
  .page-hero div[style*="display: flex"] {
    flex-direction: column;
    gap: 0.75rem;
  }
  .page-hero .btn { width: 100%; justify-content: center; }

  /* ── Grids ── */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-split { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .coverage-grid { grid-template-columns: 1fr; }

  /* ── Product cards ── */
  .product-card-img { height: 180px; }

  /* ── CTA banner ── */
  .cta-banner {
    padding: 2rem 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }

  /* ── Contact / Form ── */
  .form-card { padding: 1.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Job card ── */
  .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .job-card .btn { width: 100%; justify-content: center; }

  /* ── Tabs ── */
  #nl-tabs, #ai-tabs, #km-tabs, #ep-tabs,
  [id$="-tabs"] {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .nl-tab, .ai-tab, .km-tab, .ep-tab,
  [class$="-tab"] {
    font-size: 0.72rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  .sub-tabs { flex-wrap: wrap; gap: 0.4rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .newsletter-form { flex-direction: column; gap: 0.5rem; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; border-radius: var(--radius-md); }
  .site-footer { padding: 3rem 0 2rem; }

  /* ── Misc ── */
  .footer-social { justify-content: flex-start; }
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
  }
}
  /* Grids */
  .grid-split { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Cards */
  .product-card-img { height: 180px; }
  .cta-banner { padding: 2rem 1.5rem; gap: 1.5rem; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; text-align: center; }

  /* Contact form */
  .form-card { padding: 1.5rem; }

  /* Tabs */
  #nl-tabs, #ai-tabs, #km-tabs, #ep-tabs { gap: 0.4rem; }
  #nl-tabs .btn, #ai-tabs .btn, #km-tabs .btn, #ep-tabs .btn { font-size: 0.72rem; padding: 0.4rem 0.75rem; }

  /* Sub-tabs */
  .sub-tabs { gap: 0.4rem; }

  /* Footer */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; border-radius: var(--radius-md); }
}

[id] { scroll-margin-top: 90px; }

/* ── HERO (HOME) ────────────────────────────────────── */
.home-hero {
  position: relative;
  background: var(--dark);
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg-slides, .hero-bg-slide {
  position: absolute; inset: 0;
}
.hero-bg-slide {
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 16s infinite ease-in-out;
  transform: scale(1.04);
}
.hero-bg-slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slide:nth-child(2) { animation-delay: 8s; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(51,47,53,0.92) 0%,
    rgba(51,47,53,0.70) 55%,
    rgba(214,197,148,0.18) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, rgba(51,47,53,0.4) 0%, transparent 60%);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 3rem 0;
  max-width: 780px;
}
.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-content p {
  color: rgba(235,227,208,0.80);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-strip {
  position: relative; z-index: 2;
  display: flex; gap: 3rem;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(214,197,148,0.2);
  flex-wrap: wrap;
}
.hero-strip-item strong {
  display: block;
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800; color: var(--gold); line-height: 1;
}
.hero-strip-item span {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(235,227,208,0.55);
}
@keyframes heroFade {
  0%, 48%  { opacity: 1; transform: scale(1); }
  53%, 100% { opacity: 0; transform: scale(1.04); }
}

/* ── PRODUCT CARD ───────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-deep);
}
.product-card-img {
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 220px;
}
.product-card-img img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.product-card-body p  { font-size: 0.88rem; flex: 1; }

/* ── MISC UTILS ─────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
