/* ==========================================================================
   PMD VERSIFY ENGINEERING WORKS — Stylesheet
   Design language: industrial spec-sheet. Deep blue + steel grey + orange
   accent lines, condensed display type, thin borders, nameplate-style
   product cards. No gradients, no glass, no glow.
   ========================================================================== */

:root {
  /* Colour tokens (derived from the brand mark) */
  --ink:        #12213B;   /* near-black blue, headings */
  --blue-900:   #16305C;   /* primary deep blue */
  --blue-700:   #1E4483;
  --blue-600:   #2A5AA6;
  --steel-700:  #4A5568;   /* metallic grey */
  --steel-500:  #6B7686;
  --steel-300:  #A7AFB9;
  --steel-100:  #E3E6EA;
  --paper:      #F4F5F7;   /* page background */
  --white:      #FFFFFF;
  --orange:     #E8720C;   /* accent from logo */
  --orange-dark:#C55E07;
  --line:       #D8DCE2;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-mono: "Roboto Mono", "Courier New", monospace;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); letter-spacing: .01em; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--ink { background: var(--ink); color: var(--steel-100); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 30px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: 14px; font-weight: 600;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }
.section-head p { color: var(--steel-700); font-size: 17px; }
.section--ink .section-head p { color: var(--steel-300); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; font-weight: 600; font-size: 15px; border: 2px solid transparent;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  font-family: var(--font-body); white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--dark { background: var(--blue-900); color: var(--white); border-color: var(--blue-900); }
.btn--dark:hover { background: var(--ink); border-color: var(--ink); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--ink); border-color: var(--steel-500); }
.btn--outline-dark:hover { border-color: var(--ink); }
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-topbar {
  background: var(--ink); color: var(--steel-300); font-size: 16px;
}
.header-topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; padding-bottom: 15px; }
.header-topbar a { color: var(--steel-100); }
.header-topbar a:hover { color: var(--orange); }
.topbar-contacts { display: flex; gap: 22px; }
.topbar-contacts span { display: inline-flex; align-items: center; gap: 6px; }

.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 100px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-size: 18px; letter-spacing: .02em; color: var(--ink); }
.brand-text span { font-size: 11.5px; color: var(--steel-500); letter-spacing: .04em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  display: block; padding: 10px 14px; font-weight: 900; font-size: 18px;
  color: var(--steel-700); border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-900); border-bottom-color: var(--orange); }
.nav-mobile-quote { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: transform .2s ease, opacity .2s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white);
  background: linear-gradient(180deg, rgba(18,33,59,.92), rgba(18,33,59,.86)), var(--ink);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0, rgba(255,255,255,.045) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0, rgba(255,255,255,.045) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 92px 0 84px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-copy .eyebrow { color: #FFB066; }
.hero-copy .eyebrow::before { background: var(--orange); }
.hero-copy h1 { font-size: clamp(34px, 4.6vw, 54px); color: var(--white); max-width: 15ch; }
.hero-copy .lede { font-size: 18px; color: var(--steel-300); max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px; }
.hero-meta div { font-size: 13.5px; color: var(--steel-300); }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--white); letter-spacing: .02em; }

.hero-plate {
  border: 1px solid rgba(255,255,255,.18); padding: 26px; position: relative;
  background: rgba(255,255,255,.03);
}
.hero-plate::before {
  content: ""; position: absolute; top: -1px; left: -1px; width: 22px; height: 22px;
  border-top: 2px solid var(--orange); border-left: 2px solid var(--orange);
}
.hero-plate::after {
  content: ""; position: absolute; bottom: -1px; right: -1px; width: 22px; height: 22px;
  border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange);
}
.hero-plate-code { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--orange); margin-bottom: 14px; }
.hero-plate ul { display: grid; gap: 12px; }
.hero-plate li { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; border-bottom: 1px dashed rgba(255,255,255,.15); padding-bottom: 12px; }
.hero-plate li span:first-child { color: var(--steel-300); }
.hero-plate li span:last-child { font-weight: 600; text-align: right; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink); color: var(--white); padding: 52px 0 40px; position: relative; border-bottom: 3px solid var(--orange);
}
.page-hero .eyebrow { color: #FFB066; }
.page-hero .eyebrow::before { background: var(--orange); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 3.6vw, 40px); max-width: 26ch; }
.breadcrumb { font-size: 16px; color: var(--steel-300); margin-top: 12px; }
.breadcrumb a { color: var(--steel-300); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--steel-500); margin: 0 6px; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.plate-card {
  background: var(--white); border: 1px solid var(--line); position: relative;
}
.plate-media {
  aspect-ratio: 4/3; position: relative; background: var(--steel-100); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background-image:
    repeating-linear-gradient(45deg, #DEE2E7 0, #DEE2E7 1px, transparent 1px, transparent 14px);
  border-bottom: 1px solid var(--line);
}
.plate-media img { width: 100%; height: 100%; object-fit: cover; }
.plate-media .plate-code-badge {
  position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--white);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; padding: 4px 9px;
}
.plate-media .plate-mark { color: var(--steel-500); text-align: center; padding: 18px; }
.plate-media .plate-mark svg { width: 46px; height: 46px; opacity: .55; margin-bottom: 8px; }
.plate-media .plate-mark small { display: block; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; font-family: var(--font-mono); }

.plate-body { padding: 20px 22px 22px; }
.plate-body .cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-dark); font-weight: 700; margin-bottom: 6px; }
.plate-body h3 { font-size: 19px; margin-bottom: 8px; }
.plate-body p { color: var(--steel-700); font-size: 14.5px; margin-bottom: 16px; }
.plate-actions { display: flex; gap: 10px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 16px; }

.feature-card { background: var(--white); border: 1px solid var(--line); padding: 26px 24px; }
.feature-card .num { font-family: var(--font-mono); color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: .06em; margin-bottom: 12px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--steel-700); font-size: 14.5px; margin: 0; }

.icon-box { width: 46px; height: 46px; border: 1px solid var(--steel-300); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue-900); }
.icon-box svg { width: 24px; height: 24px; }

/* ---------- About / split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border: 1px solid var(--line); background: var(--steel-100); aspect-ratio: 5/4; position: relative; }
.split-media .plate-mark { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--steel-500); background-image: repeating-linear-gradient(45deg, #DEE2E7 0, #DEE2E7 1px, transparent 1px, transparent 14px); }
.split-media .plate-mark svg { width: 64px; height: 64px; opacity: .5; margin-bottom: 10px; }

.stat-row { display: flex; gap: 34px; margin-top: 26px; flex-wrap: wrap; }
.stat-row div strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--blue-900); }
.stat-row div span { font-size: 13px; color: var(--steel-500); }

.checklist li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.checklist li:last-child { border-bottom: 0; }
.checklist svg { flex: none; width: 18px; height: 18px; color: var(--orange); margin-top: 2px; }

/* ---------- Timeline / process ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); background: var(--white); }
.process-step { padding: 26px 22px; border-right: 1px solid var(--line); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step .step-no { font-family: var(--font-mono); font-size: 12px; color: var(--orange-dark); font-weight: 700; margin-bottom: 10px; }
.process-step h4 { font-size: 16.5px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--steel-700); margin: 0; }

/* ---------- Category filter / tabs ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.filter-bar a {
  font-size: 13.5px; font-weight: 600; padding: 9px 16px; border: 1px solid var(--line); color: var(--steel-700);
}
.filter-bar a:hover { border-color: var(--blue-900); color: var(--blue-900); }
.filter-bar a.active { background: var(--blue-900); border-color: var(--blue-900); color: var(--white); }

/* ---------- Tables (specs) ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:first-child { border-top: 1px solid var(--line); }
.spec-table td { padding: 12px 4px; }
.spec-table td:first-child { color: var(--steel-500); width: 42%; font-family: var(--font-mono); font-size: 13px; }
.spec-table td:last-child { font-weight: 600; }

/* ---------- Product detail ---------- */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.pd-gallery-main { border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--steel-100); position: relative; margin-bottom: 10px;
  background-image: repeating-linear-gradient(45deg, #DEE2E7 0, #DEE2E7 1px, transparent 1px, transparent 14px); }
.pd-gallery-main .plate-mark { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--steel-500); }
.pd-gallery-main .plate-mark svg { width: 70px; height: 70px; opacity: .5; margin-bottom: 10px; }
.pd-gallery-thumbs { display: flex; gap: 10px; }
.pd-gallery-thumbs div { flex: 1; aspect-ratio: 1; border: 1px solid var(--line); background: var(--steel-100); background-image: repeating-linear-gradient(45deg, #DEE2E7 0, #DEE2E7 1px, transparent 1px, transparent 10px); }

.pd-code { font-family: var(--font-mono); font-size: 13px; color: var(--orange-dark); font-weight: 700; letter-spacing: .06em; margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(26px, 3vw, 32px); margin-bottom: 12px; }
.pd-info .lede { font-size: 16.5px; color: var(--steel-700); }
.pd-cta-row { display: flex; gap: 12px; margin: 26px 0; flex-wrap: wrap; }
.pd-tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-top: 10px; }
.pd-tabs-nav button { background: none; border: 0; padding: 12px 4px; margin-right: 26px; font-weight: 700; font-size: 14px; color: var(--steel-500); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; }
.pd-tabs-nav button.active { color: var(--blue-900); border-bottom-color: var(--orange); }
.pd-tab-panel { display: none; padding-top: 22px; }
.pd-tab-panel.active { display: block; }

.related-strip { margin-top: 64px; }

/* ---------- Industries ---------- */
.industry-card { border: 1px solid var(--line); background: var(--white); padding: 28px 24px; display: flex; gap: 16px; }
.industry-card .icon-box { margin-bottom: 0; flex: none; }
.industry-card h3 { font-size: 17px; margin-bottom: 6px; }
.industry-card p { font-size: 14px; color: var(--steel-700); margin: 0; }

/* ---------- Quality ---------- */
.quality-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quality-item { border-left: 3px solid var(--orange); padding: 4px 0 4px 20px; }
.quality-item h3 { font-size: 17px; margin-bottom: 6px; }
.quality-item p { color: var(--steel-700); font-size: 14.5px; margin: 0; }

.notice-box { border: 1px solid var(--line); border-left: 3px solid var(--blue-900); background: var(--white); padding: 18px 22px; font-size: 14px; color: var(--steel-700); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-item { aspect-ratio: 1; background: var(--steel-100); border: 1px solid var(--white); position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(45deg, #DEE2E7 0, #DEE2E7 1px, transparent 1px, transparent 14px); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item .cap { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(18,33,59,.85); color: #fff; font-size: 11.5px; padding: 8px 10px; font-family: var(--font-mono); letter-spacing: .03em; opacity: 0; transition: opacity .15s ease; }
.gallery-item:hover .cap { opacity: 1; }
.gallery-item .plate-mark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--steel-500); }
.gallery-item .plate-mark svg { width: 34px; height: 34px; opacity: .5; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; }
.contact-card { border: 1px solid var(--line); background: var(--white); padding: 24px; display: flex; gap: 16px; margin-bottom: 16px; }
.contact-card .icon-box { flex: none; margin-bottom: 0; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; color: var(--steel-500); }
.contact-card p, .contact-card a { font-size: 15.5px; font-weight: 600; }
.map-frame { border: 1px solid var(--line); aspect-ratio: 16/9; background: var(--steel-100); display: flex; align-items: center; justify-content: center; color: var(--steel-500); margin-top: 8px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-panel { background: var(--white); border: 1px solid var(--line); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--steel-700); }
.field label .req { color: var(--orange-dark); }
.field input, .field select, .field textarea {
  border: 1px solid var(--steel-300); padding: 11px 12px; font-family: inherit; font-size: 14.5px; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-900); }
.field-invalid { border-color: #C0392B !important; background: #FBEDEC; }
.field textarea { resize: vertical; min-height: 110px; }
.form-msg { padding: 14px 16px; margin-bottom: 18px; font-size: 14px; border: 1px solid; display: none; }
.form-msg.show { display: block; }
.form-msg--success { background: #EFF7EE; border-color: #79B47A; color: #2C5F2D; }
.form-msg--error { background: #FBEDEC; border-color: #E39B96; color: #9B2C2C; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue-900); color: var(--white); padding: 54px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: 27px; margin-bottom: 6px; }
.cta-band p { color: #C9D6EA; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--steel-300); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img {
    border-radius: 10px !important;
    height: 100px;
}
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 16.5px; }
.site-footer p { font-size: 16px; color: var(--steel-300); }
.site-footer h4 { color: var(--white); font-size: 22px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 16px; color: var(--steel-300); }
.site-footer ul a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; font-size: 12.5px; color: var(--steel-500); flex-wrap: wrap; gap: 8px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
[data-animate] { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-plate { order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .pd-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .quality-row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-topbar { display: none; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: var(--white);
    transform: translateX(100%); transition: transform .25s ease; z-index: 200; padding: 90px 26px 26px;
    box-shadow: -8px 0 24px rgba(0,0,0,.18);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-actions .btn--sm.header-quote { display: none; }
  .nav-mobile-quote { display: block; border-bottom: 0 !important; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(18,33,59,.5); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 150; }
  .nav-scrim.open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 720px) {
  .section { padding: 52px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 18px; }
  .filter-bar { gap: 6px; }
}





/* hero-section */
.hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

    /* SLIDES */
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease;
    }

    .slide.active {
      opacity: 1;
      visibility: visible;
    }

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

    /* DARK OVERLAY */
    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.25)
      );
    }

    /* HERO CONTENT */
    .hero-content {
      position: absolute;
      z-index: 2;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      max-width: 650px;
      color: white;
    }

    .hero-content span {
      display: inline-block;
      color: #ffcc00;
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .hero-content h1 {
      font-size: clamp(20px, 6vw, 40px);
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 19px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #eee;
    }

    .hero-btn {
      display: inline-block;
      padding: 15px 30px;
      background: #ffcc00;
      color: #111;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: 0.3s;
    }

    .hero-btn:hover {
      background: white;
      transform: translateY(-2px);
    }

    /* SLIDER DOTS */
    .dots {
      position: absolute;
      z-index: 5;
      bottom: 35px;
      left: 8%;
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 35px;
      height: 4px;
      background: white;
      opacity: 0.4;
      cursor: pointer;
      transition: 0.3s;
    }

    .dot.active {
      width: 60px;
      opacity: 1;
      background: #ffcc00;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .hero {
        min-height: 550px;
      }

      .hero-content {
        left: 6%;
        right: 6%;
      }

      .hero-content h1 {
        font-size: 42px;
      }

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

      .dots {
        left: 6%;
      }
    }


    .head{
      color: #fffffe;
    }

    /* ---------- Testimonials ---------- */
.testimonial-card { background: var(--white); border: 1px solid var(--line); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-card .stars { display: flex; gap: 3px; color: var(--orange); }
.testimonial-card .stars svg { width: 15px; height: 15px; }
.testimonial-card .stars svg.is-empty { color: var(--steel-300); }
.testimonial-quote { color: var(--steel-700); font-size: 15px; margin: 0; flex: 1; }
.testimonial-person { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; background: var(--blue-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 15px;
}
.testimonial-person strong { display: block; font-size: 14.5px; }
.testimonial-person span { font-size: 12.5px; color: var(--steel-500); }
.testimonial-strip-note { font-size: 13.5px; color: var(--steel-500); }



.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fefdfd;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.topbar-social a:hover {
    transform: translateY(-2px);
    background: #fff;
    color: hsl(210, 14%, 95%);
}
