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

/* ─── Variables & Reset ─── */
:root {
  --dark:     #1C1C1C;
  --dark-2:   #111111;
  --red:      #C8102E;
  --red-dark: #A00C24;
  --cream:    #F7F3EC;
  --white:    #FFFFFF;
  --gray:     #6B6B6B;
  --light:    #EDEAE3;
  --border:   #D4D0C8;
  --font-h:   'Roboto Slab', serif;
  --font-b:   'Inter', sans-serif;
  --nav-h:    72px;
  --max-w:    1200px;
  --radius:   2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── Utility ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.btn-red        { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover  { background: var(--red-dark); border-color: var(--red-dark); }
.btn-dark       { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #333; border-color: #333; }
.btn-outline    { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-white      { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover{ background: var(--cream); border-color: var(--cream); }
.btn-outline-w  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-w:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-sm         { padding: 9px 18px; font-size: 13px; }
.btn-lg         { padding: 16px 34px; font-size: 15px; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-wordmark {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.logo-wordmark .amp { color: var(--red); }
.logo-divider { width: 1px; height: 32px; background: #3a3a3a; }
.logo-sub {
  font-family: var(--font-b);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  line-height: 1.35;
}
.logo-sub span { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-phone svg { color: var(--red); flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  outline: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark-2);
  padding: 20px 28px 28px;
  z-index: 199;
  border-top: 1px solid #2a2a2a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: block; }
.mobile-nav-links {
  list-style: none;
}
.mobile-nav-links li a {
  display: block;
  padding: 13px 0;
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #2a2a2a;
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--white); }
.mobile-nav .btn-red {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  font-size: 14px;
  border-radius: var(--radius);
}

/* ─── Hero (Homepage) ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  max-height: 760px;
}

.hero-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 56px;
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--red);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--red); }

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--red); }

.hero-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 430px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}
.hero-image:hover img { transform: scale(1.03); }
.hero-image-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.2), transparent 50%);
}

/* ─── Trust Strip ─── */
.trust-strip {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 0 28px;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-right: 1px solid #2a2a2a;
  padding-right: 24px;
  padding-left: 24px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--red); flex-shrink: 0; }
.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}
.trust-text span {
  font-size: 12px;
  color: #888;
}

/* ─── Section Base ─── */
.section { padding: 96px 28px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--red); }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.section-header-row .section-desc { margin-bottom: 0; }

/* ─── Services Grid ─── */
.services-bg { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 34px 28px;
  transition: background 0.25s, transform 0.25s;
  cursor: default;
  position: relative;
}
.service-card:hover {
  background: var(--dark);
  transform: translateY(-3px);
  z-index: 1;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.service-card:hover .sc-icon { background: var(--red); color: var(--white); }
.service-card:hover .sc-title { color: var(--white); }
.service-card:hover .sc-desc  { color: #aaa; }
.service-card:hover .sc-link  { color: var(--red); }

.sc-icon {
  width: 50px; height: 50px;
  border-radius: 4px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: background 0.25s, color 0.25s;
}
.sc-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.25s;
  line-height: 1.2;
}
.sc-desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  transition: color 0.25s;
  margin-bottom: 16px;
}
.sc-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: color 0.25s;
}

/* ─── Process ─── */
.process-section { background: var(--dark-2); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc  { color: #888; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.process-connector {
  position: absolute;
  top: 44px;
  left: calc(16.67% + 44px);
  right: calc(16.67% + 44px);
  height: 2px;
  background: #2a2a2a;
  z-index: 0;
}
.process-connector::before,
.process-connector::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3a3a3a;
}
.process-connector::before { left: 0; }
.process-connector::after  { right: 0; }

.process-step {
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px #1a1a1a;
}
.step-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── About Preview ─── */
.about-preview { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  align-self: stretch;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  background: var(--red);
  border-radius: var(--radius);
  z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; }

.about-text .section-label { margin-bottom: 10px; }
.values-list {
  list-style: none;
  margin: 24px 0 34px;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.values-list li:last-child { border-bottom: none; }
.values-list li .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--red);
  padding: 88px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'A&S';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-size: 280px;
  font-weight: 800;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-banner h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer { background: var(--dark-2); color: #888; padding: 72px 28px 36px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.6fr;
  gap: 56px;
  margin-bottom: 52px;
}
.footer-brand .logo-wordmark { font-size: 22px; }
.footer-brand .logo-sub      { margin-top: 2px; display: block; }
.footer-tagline {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  align-items: flex-start;
}
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .fc-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #555; margin-bottom: 3px; }
.footer-contact-item a { color: #888; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span { color: #888; }
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #444;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: #555; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #888; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: var(--dark);
  padding: 76px 28px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 12px;
  color: #555;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: #666; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #aaa; }
.breadcrumb svg { color: #444; }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: #999;
  max-width: 520px;
  line-height: 1.7;
}

/* ─── Services Detail Page ─── */
.services-detail-section { background: var(--white); }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--light);
}
.sd-card {
  background: var(--white);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.25s;
}
.sd-card:hover { background: var(--cream); }
.sd-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: background 0.25s;
}
.sd-card:hover .sd-icon { background: var(--red); color: var(--white); }
.sd-content {}
.sd-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sd-desc {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sd-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sd-items li {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

/* ─── About Page ─── */
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img-wrap { position: relative; }
.story-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.story-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border: 4px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}
.story-text {}
.story-text .section-title { margin-bottom: 20px; }
.story-text p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.values-section { background: var(--cream); }
.values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
}
.value-card .vc-icon {
  color: var(--red);
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── Contact Page ─── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--light);
  align-items: flex-start;
}
.contact-info-item:first-child { padding-top: 0; }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.ci-content .ci-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.ci-content p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.55;
}
.ci-content a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.ci-content a:hover { color: var(--red); }
.ci-content .ci-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.contact-form-wrap {
  background: var(--cream);
  padding: 44px 40px;
  border-radius: var(--radius);
}
.contact-form-wrap h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B6B' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ─── Utility Grids ─── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-grid-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--dark);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-cards  { grid-template-columns: repeat(2, 1fr); }
  .hero-content  { padding: 60px 48px; }
}

@media (max-width: 900px) {
  .two-col-grid, .two-col-grid-dark { grid-template-columns: 1fr; }
  .story-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-wrap img, .about-img-wrap img { height: 340px; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-connector { display: none; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }
  .hero-image { height: 280px; order: -1; }
  .hero-content { padding: 48px 24px; }
  .hero-content::before { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 18px 12px; }
  .trust-item:nth-child(2) { border-right: none; }

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

  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .cta-banner::before { display: none; }

  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 20px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid #2a2a2a; }
  .trust-item:last-child { border-bottom: none; }
  .sd-card { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { text-align: center; }
}
