/* ═══════════════════════════════════════════════════
   OAK SHORE — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Design Tokens ─────────────────────────────────── */
:root {
  --navy:      #0D1523;
  --navy-mid:  #162033;
  --amber:     #C4722A;
  --amber-lt:  #D4845A;
  --peach:     #E8A87C;
  --cream:     #F0E8D8;
  --slate:     #6B7280;
  --slate-lt:  #9CA3AF;
  --bg-light:  #FAF7F4;
  --bg-subtle: #FDF3E8;
  --border:    #E8DDD0;
  --white:     #FFFFFF;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

/* ── Utility ───────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--light  { background: var(--bg-light); }
.section--dark   { background: var(--navy); color: var(--white); }
.section--subtle { background: var(--bg-subtle); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--peach); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }

.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--slate);
  max-width: 600px;
  margin: 20px 0 36px;
  line-height: 1.7;
}
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }
.lead--light { color: rgba(255,255,255,.65); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
}
.btn--primary { background: var(--amber); color: var(--white); }
.btn--primary:hover { background: #A85E22; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--outline-dark:hover { border-color: var(--amber); color: var(--amber); }

/* ── Tags ──────────────────────────────────────────── */
.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  background: var(--bg-subtle);
  border: 1px solid #E8C9A0;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 21, 35, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.2); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 24px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 112px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links > li { position: relative; }
.nav__links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .15s;
  padding: 8px 14px;
  border-radius: var(--radius);
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--peach); }

/* Services dropdown */
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav__dropdown-toggle svg { transition: transform .2s; }
.nav__links > li:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 8px;
  padding-top: 16px; /* bridges the gap so cursor doesn't lose hover */
  margin-top: -8px;  /* pulls up to overlap the trigger area */
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
}
.nav__links > li:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  color: rgba(255,255,255,.8) !important;
  transition: background .15s;
}
.nav__dropdown a:hover { background: rgba(255,255,255,.08); color: var(--white) !important; }
.nav__dropdown a span.icon { font-size: 16px; }

.nav__cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 12px 26px !important;
  border-radius: var(--radius) !important;
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
}
.nav__cta:hover { background: #A85E22 !important; }
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: all .3s; }

/* ── Page Hero (interior pages) ────────────────────── */
.page-hero {
  padding: 200px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(196,114,42,.14) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(232,168,124,.07) 0%, transparent 70%);
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero__content { position: relative; z-index: 1; max-width: 720px; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.page-hero__breadcrumb a:hover { color: var(--peach); }
.page-hero__breadcrumb span { color: var(--peach); }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-lt), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Project Types Grid ─────────────────────────────── */
.project-types__header { text-align: center; margin-bottom: 64px; }
.project-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #E8C9A0; }
.project-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.project-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid #E8C9A0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.project-card__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--bg-subtle);
  border: 1px solid #E8C9A0;
  padding: 4px 10px;
  border-radius: 100px;
}
.project-card h3 { font-size: 18px; margin-bottom: 10px; }
.project-card__desc { font-size: 14px; color: var(--slate); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.project-card__outcomes {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.project-card__outcomes-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-lt);
  margin-bottom: 8px;
}
.project-card__outcome-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-card__outcome-list li {
  font-size: 13px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
  list-style: none;
}
.project-card__outcome-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 11px;
}

/* ── Engagement Model Section ───────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.engagement-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.engagement-card__icon { font-size: 28px; margin-bottom: 12px; }
.engagement-card h4 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.engagement-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.engagement-card__duration {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--peach);
  border: 1px solid rgba(232,168,124,.3);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Tech Ecosystem ─────────────────────────────────── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tech-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .15s;
}
.tech-pill:hover { border-color: var(--amber); color: var(--amber); }

/* ── Related Services (cross-links) ─────────────────── */
.related-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .2s;
}
.related-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.related-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.related-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.related-card p { font-size: 13px; color: var(--slate); }
.related-card__arrow { margin-left: auto; color: var(--amber); font-size: 18px; }

/* ── Intro two-col ──────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid__text h2 { margin-bottom: 20px; }
.intro-grid__text p { color: var(--slate); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.intro-grid__visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.stat-stack { display: flex; flex-direction: column; gap: 20px; }
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.stat-item__num {
  font-size: 30px;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  min-width: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}
.stat-item__label { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ── FAQ ────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
  text-align: left;
}
.faq-question svg { flex-shrink: 0; transition: transform .2s; color: var(--amber); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Homepage Sections ──────────────────────────────── */
/* Hero */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 132px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(196,114,42,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(232,168,124,.08) 0%, transparent 70%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,114,42,.2);
  border: 1px solid rgba(196,114,42,.4);
  color: var(--peach);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
}
.hero__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--peach); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-lt), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__lead { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.65); max-width: 580px; line-height: 1.7; margin-bottom: 48px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 48px; margin-top: 72px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.1); }
.hero__stat-num { font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.hero__stat-num span { color: var(--peach); }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Logos */
.logos { padding: 40px 0; border-bottom: 1px solid var(--border); }
.logos__label { font-size: 12px; font-weight: 500; color: var(--slate-lt); letter-spacing: .08em; text-transform: uppercase; text-align: center; margin-bottom: 28px; }
.logos__row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.logos__item { font-size: 15px; font-weight: 600; color: var(--slate-lt); letter-spacing: -.01em; opacity: .7; }

/* Services cards */
.services__header { text-align: center; margin-bottom: 64px; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--peach));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--bg-subtle); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.service-card h3 { margin-bottom: 12px; font-size: 20px; }
.service-card p { color: var(--slate); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-card__link { font-size: 14px; font-weight: 600; color: var(--amber); display: flex; align-items: center; gap: 6px; transition: gap .15s; }
.service-card__link:hover { gap: 10px; }

/* Why Oak Shore */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__features { display: flex; flex-direction: column; gap: 36px; margin-top: 36px; }
.why__feature { display: flex; gap: 20px; }
.why__feature-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--bg-subtle); border: 1px solid #E8C9A0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why__feature h4 { font-size: 16px; margin-bottom: 4px; }
.why__feature p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.why__visual { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: var(--white); }
.why__quote { font-size: 18px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 24px; padding-left: 20px; border-left: 3px solid var(--peach); }
.why__quote-attr { font-size: 13px; color: rgba(255,255,255,.5); font-style: normal; }
.why__metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.why__metric { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; }
.why__metric-num { font-size: 28px; font-weight: 700; color: var(--peach); }
.why__metric-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Process */
.process__header { text-align: center; margin-bottom: 64px; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(90deg, var(--amber), var(--peach)); }
.process__step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; }
.process__step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--amber); color: var(--white); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg-light); }
.process__step h4 { font-size: 16px; margin-bottom: 8px; }
.process__step p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* Testimonials */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px; }
.testimonial-card__stars { color: #FBBF24; font-size: 14px; margin-bottom: 16px; }
.testimonial-card__text { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--peach)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 14px; }
.testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-card__role { font-size: 12px; color: rgba(255,255,255,.45); }

/* About */
.about__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.about__visual { position: relative; }
.about__photo-frame { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--navy), #1e2d45); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about__badge { position: absolute; bottom: -20px; right: -20px; background: var(--amber); color: white; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md); }
.about__badge-num { font-size: 28px; font-weight: 700; line-height: 1; }
.about__badge-label { font-size: 11px; opacity: .75; margin-top: 4px; }
.about h2 { margin-bottom: 20px; }
.about__text { color: var(--slate); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about__expertise { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.expertise-tag { font-size: 13px; font-weight: 500; color: var(--navy); background: var(--bg-subtle); border: 1px solid #E8C9A0; padding: 6px 14px; border-radius: 100px; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--amber) 0%, #A85E22 50%, #7A4415 100%); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 560px; margin: 0 auto 40px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact__info h2 { margin-bottom: 16px; }
.contact__info p { color: var(--slate); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.contact__methods { display: flex; flex-direction: column; gap: 20px; }
.contact__method { display: flex; align-items: center; gap: 16px; }
.contact__method-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-subtle); border: 1px solid #E8C9A0; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact__method-label { font-size: 12px; color: var(--slate-lt); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.contact__method-value { font-size: 15px; font-weight: 500; color: var(--navy); }
.contact__form { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(196,114,42,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: var(--amber); color: white; border: none; border-radius: var(--radius); font-size: 16px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.form-submit:hover { background: #A85E22; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 32px; }
.footer__brand-desc { font-size: 14px; line-height: 1.6; margin-top: 12px; }
.footer__col-title { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.6); transition: all .2s; }
.footer__social a:hover { background: var(--amber); color: white; border-color: var(--amber); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .why__grid, .about__grid, .contact__grid, .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .why__visual { order: -1; }
  .about__visual { display: none; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__steps::before { display: none; }
  .hero__stats { gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 24px;
    gap: 8px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav__dropdown { position: static; transform: none; box-shadow: none; background: rgba(255,255,255,.05); margin-top: 4px; padding-top: 8px; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__hamburger { display: block; }
  .hero__stats { flex-direction: column; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .why__metric-row { grid-template-columns: 1fr; }
  .project-types__grid { grid-template-columns: 1fr; }
}
