/* ==========================================================================
   V Tech Conversions LLC — stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand colors (from logo) */
  --navy-950: #0e161f;
  --navy-900: #141f2b;
  --navy-800: #1c2b3a;
  --navy-700: #29404f;
  --navy-600: #3d5468;

  --red-700: #a8151b;
  --red-600: #c41a20;
  --red-500: #e01e25;
  --red-50: #fdecec;

  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #17212b;
  --text-muted: #566473;
  --text-on-dark: #f3f5f7;
  --text-on-dark-muted: #aab6c2;
  --border: #e3e7eb;
  --border-dark: #2b3c4c;

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(14, 22, 31, 0.06), 0 1px 3px rgba(14, 22, 31, 0.08);
  --shadow-md: 0 4px 12px rgba(14, 22, 31, 0.10), 0 2px 4px rgba(14, 22, 31, 0.06);
  --shadow-lg: 0 20px 40px rgba(14, 22, 31, 0.18), 0 6px 16px rgba(14, 22, 31, 0.10);

  --container: 1240px;
  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-600);
  border-radius: 2px;
}

p { color: var(--text-muted); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-6); }
}

section { padding-block: var(--space-8); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-6);
}
.section-head.center { max-width: 680px; margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-top: var(--space-3); }
.section-head p { margin-top: var(--space-3); font-size: 17px; }

/* ---------- Focus & a11y ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-700); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }
.btn-primary:disabled:hover { background: var(--red-600); }

.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy-900);
}
.btn-outline:hover { border-color: var(--navy-800); background: var(--surface); }

.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 2px solid var(--red-500);
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
}
.text-link:hover { color: var(--red-600); gap: 10px; }
.text-link svg { width: 16px; height: 16px; }

/* ==========================================================================
   Utility bar + Header
   ========================================================================== */
.utility-bar {
  background: var(--navy-950);
  color: var(--text-on-dark-muted);
  font-size: 12.5px;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 38px;
  padding-block: 8px;
}
.utility-bar__location {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.utility-bar__location span { white-space: nowrap; }
.utility-bar__location svg { width: 14px; height: 14px; color: var(--red-500); flex-shrink: 0; }
.utility-bar__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  min-width: 0;
}
.utility-bar a { display: flex; align-items: center; gap: 6px; transition: color var(--transition); white-space: nowrap; }
.utility-bar a:hover { color: #fff; }
.utility-bar svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 400px) {
  .utility-bar { font-size: 11.5px; }
  .utility-bar .container { gap: var(--space-2); }
  .utility-bar__links { gap: var(--space-3); }
}
.utility-bar .hide-mobile { display: none; }
@media (min-width: 640px) { .utility-bar .hide-mobile { display: flex; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

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

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.brand__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  color: var(--navy-900);
}
.brand__name span { display: block; font-size: 11px; letter-spacing: 0.12em; color: var(--text-muted); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; }

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
  .main-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy-800);
    padding: 8px 2px;
    position: relative;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--red-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after { transform: scaleX(1); }
}

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-actions .btn-primary { display: none; }
@media (min-width: 480px) {
  .header-actions .btn-primary { display: inline-flex; }
}
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-900);
}
.header-phone svg { width: 20px; height: 20px; color: var(--red-600); }
@media (min-width: 1024px) { .header-phone { display: flex; } }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle svg { width: 26px; height: 26px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}
.mobile-drawer[data-open="true"] { visibility: visible; }
.mobile-drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(14, 22, 31, 0.55);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-drawer[data-open="true"] .mobile-drawer__scrim { opacity: 1; }
.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: var(--surface);
  padding: var(--space-6) var(--space-5);
  transform: translateX(100%);
  transition: transform 280ms ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer[data-open="true"] .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  border-radius: var(--radius-sm);
}
.mobile-drawer__close:hover { background: var(--bg); }
.mobile-drawer__close svg { width: 24px; height: 24px; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-drawer nav a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-900);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-drawer__contact {
  margin-top: auto;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mobile-drawer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 600;
  min-height: 44px;
}
.mobile-drawer__contact svg { width: 20px; height: 20px; color: var(--red-500); flex-shrink: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  overflow: hidden;
  padding-block: var(--space-8) var(--space-9);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 64px);
  pointer-events: none;
}
.hero .container {
  display: grid;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
}

.hero__content .eyebrow { color: #ff6b6f; }
.hero__content .eyebrow::before { background: #ff6b6f; }
.hero__content h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 58px);
  margin-top: var(--space-4);
}
.hero__content h1 em {
  font-style: normal;
  color: var(--red-500);
}
.hero__content p {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  margin-top: var(--space-4);
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-dark);
}
.hero__meta div { display: flex; align-items: center; gap: 10px; }
.hero__meta svg { width: 22px; height: 22px; color: var(--red-500); flex-shrink: 0; }
.hero__meta strong { display: block; color: #fff; font-family: var(--font-heading); font-size: 14.5px; font-weight: 500; }
.hero__meta span { color: var(--text-on-dark-muted); font-size: 13px; }

.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-inline: auto;
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,22,31,0.55) 0%, transparent 35%);
}
.hero__badge {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 380px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 2;
}
.hero__badge-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--red-50);
  color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon svg { width: 24px; height: 24px; }
.hero__badge strong { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--navy-900); }
.hero__badge span { font-size: 13px; color: var(--text-muted); }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--border); padding-block: var(--space-6); }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 768px) { .trust-strip .container { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: var(--space-3); }
.trust-item svg { width: 30px; height: 30px; color: var(--red-600); flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--navy-900); font-weight: 500; }
.trust-item span { font-size: 13px; color: var(--text-muted); }

/* ==========================================================================
   What we build
   ========================================================================== */
.build-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .build-grid { grid-template-columns: repeat(3, 1fr); } }

.build-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.build-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.build-card__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.build-card__icon svg { width: 28px; height: 28px; }
.build-card h3 { font-size: 21px; margin-bottom: var(--space-2); }
.build-card p { font-size: 15px; margin-bottom: var(--space-4); }
.build-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-5); }
.build-card ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-muted); }
.build-card ul svg { width: 16px; height: 16px; color: var(--red-600); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Feature spotlight
   ========================================================================== */
.spotlight { background: var(--navy-950); color: #fff; }
.spotlight .container {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 960px) { .spotlight .container { grid-template-columns: 1fr 1fr; } }
.spotlight__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-width: 480px; }
@media (min-width: 960px) { .spotlight__media { max-width: none; } }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__content .eyebrow { color: #ff6b6f; }
.spotlight__content .eyebrow::before { background: #ff6b6f; }
.spotlight__content h2 { color: #fff; font-size: clamp(26px, 3.6vw, 36px); margin-top: var(--space-3); }
.spotlight__content p { color: var(--text-on-dark-muted); margin-top: var(--space-4); font-size: 17px; }
.spotlight__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.spotlight__specs div { border-left: 2px solid var(--red-500); padding-left: var(--space-3); }
.spotlight__specs strong { display: block; font-family: var(--font-heading); font-size: 15px; color: #fff; }
.spotlight__specs span { font-size: 13px; color: var(--text-on-dark-muted); }
.spotlight__content .btn { margin-top: var(--space-6); }

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding-top: var(--space-6); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--red-600);
  letter-spacing: 0.06em;
}
.process-step h3 { font-size: 18px; margin-top: var(--space-2); margin-bottom: var(--space-2); }
.process-step p { font-size: 14.5px; }
.process-grid > *:not(:last-child) {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-6);
}
@media (min-width: 768px) {
  .process-grid > *:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding-bottom: 0;
    padding-right: var(--space-5);
  }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__btn {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: var(--space-3);
}
.gallery-item__btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,22,31,0.75) 0%, rgba(14,22,31,0) 45%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item__btn:hover::after,
.gallery-item__btn:focus-visible::after { opacity: 1; }
.gallery-item__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item__btn:hover .gallery-item__label,
.gallery-item__btn:focus-visible .gallery-item__label { opacity: 1; transform: translateY(0); }

.gallery-cta { text-align: center; margin-top: var(--space-6); }

/* ==========================================================================
   Inside Our Shop
   ========================================================================== */
.shop-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }

.shop-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.shop-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.shop-item:hover img { transform: scale(1.05); }
.shop-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,22,31,0.72) 0%, rgba(14,22,31,0) 45%);
  pointer-events: none;
}
.shop-item__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: var(--space-4);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(10, 15, 20, 0.92); }
.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 640px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__figure img {
  max-height: 76vh;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__caption { color: var(--text-on-dark-muted); font-size: 14px; margin-top: var(--space-3); text-align: center; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.18); }
.lightbox__close { top: var(--space-4); right: var(--space-4); }
.lightbox__prev { left: var(--space-4); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--space-4); top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 22px; height: 22px; }
@media (max-width: 640px) {
  .lightbox__prev { left: var(--space-2); }
  .lightbox__next { right: var(--space-2); }
  .lightbox__close { top: var(--space-2); right: var(--space-2); }
}

/* ==========================================================================
   Craftsmanship (two-col)
   ========================================================================== */
.craft { background: var(--surface); }
.craft .container {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 960px) { .craft .container { grid-template-columns: 1fr 1fr; } }
.craft__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.craft__media img { width: 100%; height: 100%; object-fit: cover; }
.craft__list { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
.craft__list-item { display: flex; gap: var(--space-4); }
.craft__list-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red-50);
  color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.craft__list-icon svg { width: 22px; height: 22px; }
.craft__list-item h3 { font-size: 17px; margin-bottom: 4px; }
.craft__list-item p { font-size: 14.5px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--red-700) 0%, var(--red-600) 100%);
  color: #fff;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 860px) {
  .cta-banner .container { flex-direction: row; align-items: center; }
}
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: var(--space-2); font-size: 16px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); flex-shrink: 0; }
.cta-banner .btn-primary { background: var(--navy-950); }
.cta-banner .btn-primary:hover { background: var(--navy-900); }

/* ==========================================================================
   About
   ========================================================================== */
.about .container {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 960px) { .about .container { grid-template-columns: 1fr 1fr; } }
.about__media { position: relative; }
.about__media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  max-width: 440px;
}
.about__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--navy-950);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
@media (max-width: 480px) { .about__badge { right: 0; bottom: -16px; padding: var(--space-3) var(--space-4); } }
.about__badge strong { display: block; font-family: var(--font-heading); font-size: 22px; color: var(--red-500); }
.about__badge span { font-size: 12.5px; color: var(--text-on-dark-muted); }
.about__content p { margin-top: var(--space-4); font-size: 16.5px; }
.about__points { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.about__points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.about__points svg { width: 20px; height: 20px; color: var(--red-600); flex-shrink: 0; margin-top: 2px; }
.about__content .btn { margin-top: var(--space-6); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--navy-950); color: #fff; }
.contact .eyebrow { color: #ff6b6f; }
.contact .eyebrow::before { background: #ff6b6f; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: var(--text-on-dark-muted); }

.contact-grid {
  display: grid;
  gap: var(--space-7);
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }

.contact-cards { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-card {
  background: var(--navy-900);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(224, 30, 37, 0.15);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h3 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--text-on-dark-muted); font-size: 15px; }
.contact-card a { color: #fff; font-weight: 600; }
.contact-card a:hover { color: var(--red-500); }

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; gap: var(--space-4); margin-bottom: var(--space-4); }
@media (min-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.field label .req { color: var(--red-600); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--navy-600); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red-500);
  background: var(--surface);
  outline: none;
}
.field small { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-muted); }
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.form-status {
  font-size: 14px;
  color: var(--text-muted);
}
.form-status[data-state="success"] { color: #1a7f37; font-weight: 600; }
.form-status[data-state="error"] { color: var(--red-600); font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: var(--text-on-dark-muted); padding-block: var(--space-8) var(--space-6); border-top: 1px solid var(--border-dark); }
.footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name span { color: var(--text-on-dark-muted); }
.footer-brand img { height: 44px; }
.footer-brand p { margin-top: var(--space-4); font-size: 14.5px; max-width: 32ch; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--red-600); border-color: var(--red-600); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-col li.static { font-size: 14.5px; }

.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 13px;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-bottom nav { display: flex; gap: var(--space-5); }
.footer-bottom nav a:hover { color: #fff; }
