/* =========================================================
   Solo Services LLC — V4 Urban Refresh
   Fonts: Space Grotesk (headings) + Outfit (body)
   Palette: #36448B blue · #C8CED8 silver · #1a1a2e navy · #fff white
   Design: bold utility, urban energy, prominent logo hero
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TOKENS ── */
:root {
  --blue:      #36448B;
  --blue-dk:   #2a3570;
  --blue-mid:  #4d5da0;
  --blue-lt:   #eef0f9;
  --silver:    #C8CED8;
  --silver-dk: #9AA4B2;
  --silver-lt: rgba(200,206,216,.12);
  --green:     #22c55e;
  --green-dk:  #16a34a;
  --navy:      #1a1a2e;
  --navy2:     #0f1326;
  --white:     #ffffff;
  --off:       #f8f9fc;
  --border:    #e8eaf2;
  --muted:     #6b6f8a;
  --text:      #2d2d44;

  --nav-h:     68px;
  --max:       1200px;
  --r:         8px;
  --r-lg:      16px;
  --ease:      .2s ease;
  --sh:        0 4px 24px rgba(26,26,46,.1);
  --sh-lg:     0 16px 48px rgba(26,26,46,.16);
}

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 28px; }

h1, h2, h3, .brand span {
  font-family: 'Space Grotesk', sans-serif;
}

/* ── SHARED ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-lt);
  border-radius: 4px; padding: 4px 12px;
  margin-bottom: 14px;
}
.section-tag--light {
  color: var(--silver);
  background: var(--silver-lt);
  border: 1px solid rgba(200,206,216,.2);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--navy); margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

/* ── BUTTONS ── */
.btn-silver {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem; font-weight: 700;
  background: var(--silver); color: var(--navy);
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid var(--silver);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-silver:hover {
  background: var(--silver-dk); border-color: var(--silver-dk);
  box-shadow: 0 6px 24px rgba(200,206,216,.3);
}
.btn-silver:active { transform: translateY(1px); }

/* keep .btn-lime as alias so existing HTML still works */
.btn-lime { display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem; font-weight: 700;
  background: var(--silver); color: var(--navy);
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid var(--silver);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-lime:hover { background: var(--silver-dk); border-color: var(--silver-dk); }
.btn-lime:active { transform: translateY(1px); }

.btn-green {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem; font-weight: 700;
  background: var(--green); color: #fff;
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid var(--green);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-green:hover {
  background: var(--green-dk); border-color: var(--green-dk);
  box-shadow: 0 6px 24px rgba(34,197,94,.35);
}
.btn-green:active { transform: translateY(1px); }

.btn-blue {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem; font-weight: 700;
  background: var(--blue); color: var(--white);
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid var(--blue);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-blue:hover {
  background: var(--blue-dk); border-color: var(--blue-dk);
  box-shadow: 0 6px 24px rgba(54,68,139,.3);
}
.btn-blue:active { transform: translateY(1px); }

.btn-outline-w {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem; font-weight: 700;
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-outline-w:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.btn-outline-w:active { transform: translateY(1px); }

/* =========================================================
   NAV
   ========================================================= */
#hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: var(--nav-h);
  background: rgba(26,26,46,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--ease);
}
#hdr.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  transition: opacity var(--ease);
}
.brand:hover { opacity: .8; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nlink {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: 6px 13px; border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nlink:hover, .nlink.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nlink--cta {
  background: var(--green); color: var(--white) !important;
  border-radius: var(--r); margin-left: 6px;
  display: flex; align-items: center; gap: 6px;
}
.nlink--cta:hover { background: var(--green-dk) !important; }

.ham {
  display: none; flex-direction: column;
  gap: 5px; justify-content: center;
  width: 40px; height: 40px;
  background: none; border: none; padding: 4px;
}
.ham span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .25s, opacity .25s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO  — dark navy, logo medallion up top, headline below
   ========================================================= */
.hero {
  background: var(--navy);
  padding-top: var(--nav-h);
  position: relative;
  overflow: clip;        /* true clipping — watermark can't bleed into scrollWidth */
  max-width: 100%;
}

/* Subtle grid overlay for urban texture */
.hero::before {
  content: '';
  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: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* Giant watermark */
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(180px, 28vw, 360px);
  font-weight: 700; letter-spacing: -.04em;
  color: rgba(255,255,255,.018);
  pointer-events: none; user-select: none;
  white-space: nowrap; line-height: 1;
  z-index: 0;
}

/* ── LOGO MEDALLION ── */
.hero-logo-section {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 52px 28px 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.logo-medallion {
  position: relative;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

/* outer glow ring */
.logo-medallion::before {
  content: '';
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(200,206,216,.15);
  animation: ring-pulse 3.5s ease infinite;
}
/* inner silver ring */
.logo-medallion::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(200,206,216,.35);
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 0 8px rgba(200,206,216,.06), inset 0 0 40px rgba(54,68,139,.15);
}

@keyframes ring-pulse {
  0%,100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.04); }
}

.logo-circle-mask {
  position: relative; z-index: 1;
  width: 150px; height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.hero-logo-img-big {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.logo-badge-tags {
  display: flex; align-items: center; gap: 12px;
}
.lbt-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.lbt-sep {
  width: 24px; height: 1px;
  background: var(--silver);
  opacity: .3;
}

/* ── HERO CONTENT ── */
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: center;
  padding-top: 56px; padding-bottom: 40px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--silver); border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200,206,216,.2);
  animation: glow 2.5s infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 0 3px rgba(200,206,216,.2); }
  50%      { box-shadow: 0 0 0 7px rgba(200,206,216,.06); }
}

.hero-headline {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 24px;
}
.hl-white, .hl-silver {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 700; line-height: 1.03;
  letter-spacing: -.03em; display: block;
}
.hl-white  { color: var(--white); }
.hl-silver { color: var(--silver); }

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.5);
  max-width: 460px; line-height: 1.7; margin-bottom: 32px;
}

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

/* Stat blocks */
.hero-aside {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; flex-shrink: 0; width: 280px;
}

.stat-block {
  border-radius: var(--r-lg); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-block--lime   { background: rgba(200,206,216,.12); border: 1px solid rgba(200,206,216,.25); }
.stat-block--blue   { background: var(--blue); }
.stat-block--dark   { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); }
.stat-block--outline{ background: transparent; border: 1px solid rgba(255,255,255,.09); }

.sb-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.stat-block--lime   .sb-num { color: var(--silver); }
.stat-block--blue   .sb-num { color: var(--white); }
.stat-block--dark   .sb-num { color: var(--white); }

.sb-lbl {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  line-height: 1.4;
}
.stat-block--lime   .sb-lbl { color: rgba(200,206,216,.6); }
.stat-block--blue   .sb-lbl { color: rgba(255,255,255,.55); }
.stat-block--dark   .sb-lbl { color: rgba(255,255,255,.4); }
.stat-block--outline .sb-lbl { color: rgba(255,255,255,.4); }

.sb-icon { font-size: 1.3rem; color: var(--silver); margin-bottom: 4px; }

/* Services ticker */
.hero-scroll-bar {
  position: relative; z-index: 1;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; padding: 14px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.hero-scroll-bar span {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.28); padding: 4px 12px;
}
.hsb-sep { color: var(--silver) !important; padding: 4px 6px !important; opacity: .4; }

/* =========================================================
   ABOUT  — white section, two columns
   ========================================================= */
.about {
  padding-block: 100px; background: var(--white);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}

.about-left .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }

.about-quote {
  font-size: 1.05rem; font-style: italic;
  color: var(--muted); line-height: 1.7;
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  margin-block: 24px 32px;
}

.about-card-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 24px;
}

.about-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 700;
  border-radius: 999px; padding: 6px 16px;
}
.about-pill--blue   { background: var(--blue-lt); color: var(--blue); }
.about-pill--silver { background: rgba(200,206,216,.15); color: var(--muted); border: 1px solid rgba(200,206,216,.3); }

.about-body {
  font-size: .98rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 16px;
}

.about-contacts {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}

.alink {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--off);
  transition: border-color var(--ease), background var(--ease);
}
.alink:hover { border-color: var(--blue); background: var(--blue-lt); }

.alink-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--blue); color: var(--white);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.alink span { font-size: .9rem; font-weight: 600; color: var(--text); }

/* =========================================================
   SERVICES  — dark navy, diagonal cuts, two labeled rows
   ========================================================= */
.services {
  background: var(--navy2);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-block: -40px;
  padding-block: 140px;
}

.svc-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 52px;
}
.svc-header .section-title { margin-bottom: 0; }

.svc-group { margin-bottom: 40px; }
.svc-group:last-child { margin-bottom: 0; }

.svc-group-label {
  display: inline-flex; align-items: center;
  margin-bottom: 16px; width: 100%;
}
.svc-group-label span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 8px; width: 100%;
}

.svc-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.svc-tile {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg); padding: 24px 20px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.svc-tile:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(200,206,216,.2);
  transform: translateY(-3px);
}

.svc-tile-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 16px;
}

.svc-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem; font-weight: 700;
  color: rgba(255,255,255,.18); letter-spacing: .06em;
}

.svc-ico {
  width: 36px; height: 36px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.svc-ico--lime { background: rgba(200,206,216,.1); color: var(--silver); }
.svc-ico--blue { background: rgba(54,68,139,.4); color: #93a4e8; }

.svc-tile:hover .svc-ico--lime { background: rgba(200,206,216,.2); }
.svc-tile:hover .svc-ico--blue { background: rgba(54,68,139,.6); }

.svc-tile h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 700;
  color: var(--white); margin-bottom: 7px;
}
.svc-tile p { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.6; }

/* =========================================================
   WHY US  — white, numbered list layout
   ========================================================= */
.why {
  background: var(--white);
  padding-block: 100px;
  padding-top: 140px;
}

.why-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start;
}

.why-sub { color: var(--muted); font-size: .98rem; line-height: 1.7; }
.why-btn { margin-top: 32px; }

.why-list { display: flex; flex-direction: column; }

.why-row {
  display: grid;
  grid-template-columns: 40px 56px 1fr;
  gap: 20px; align-items: flex-start;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.why-row:first-child { border-top: 1px solid var(--border); }

.wr-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; color: var(--muted);
  padding-top: 4px;
}

.wr-icon {
  width: 44px; height: 44px;
  background: var(--blue-lt); color: var(--blue);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.why-row:hover .wr-icon { background: var(--blue); color: var(--white); }

.wr-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.wr-body p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* =========================================================
   CONTACT  — blue left panel, white form right
   ========================================================= */
.contact { background: var(--off); padding-block: 100px; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}

.contact-panel {
  background: var(--blue); padding: 52px 44px;
  display: flex; flex-direction: column;
}

.contact-panel .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }

.cp-sub {
  font-size: .95rem; color: rgba(255,255,255,.6);
  line-height: 1.7; margin-bottom: 36px;
}

.cp-details { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

.cpd-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  transition: background var(--ease);
}
.cpd-link:hover { background: rgba(255,255,255,.15); }

.cpd-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,.12); color: var(--white);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}

.cpd-label {
  display: block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.45); margin-bottom: 1px;
}
.cpd-val {
  display: block; font-size: .88rem; font-weight: 600; color: var(--white);
}

.contact-form-wrap { padding: 52px 44px; }

.cform { display: flex; flex-direction: column; gap: 18px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.cf { display: flex; flex-direction: column; gap: 5px; }
.cf label { font-size: .8rem; font-weight: 600; color: var(--text); }
.req { color: var(--blue); }

.cf input, .cf select, .cf textarea {
  font-family: 'Outfit', sans-serif;
  font-size: .93rem; color: var(--navy);
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 11px 13px;
  outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.cf input:focus, .cf select:focus, .cf textarea:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(54,68,139,.1);
}
.cf input::placeholder, .cf textarea::placeholder { color: #94a3b8; }
.cf select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6f8a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 17px;
  padding-right: 38px; cursor: pointer;
}
.cf textarea { resize: vertical; min-height: 100px; }
.cf input.error, .cf select.error { border-color: #ef4444; }

.cerr { font-size: .75rem; color: #ef4444; font-weight: 600; min-height: 14px; }
.btn-submit { width: 100%; justify-content: center; }

.form-ok {
  display: none; align-items: center; gap: 10px;
  background: #f0f4ff; border: 1px solid #c7cff5;
  border-radius: var(--r); padding: 12px 16px;
  font-size: .9rem; font-weight: 600; color: var(--blue);
}
.form-ok.show { display: flex; }

.form-err {
  display: none; align-items: center; gap: 10px;
  background: #fff5f5; border: 1px solid #fecaca;
  border-radius: var(--r); padding: 12px 16px;
  font-size: .9rem; font-weight: 600; color: #dc2626;
}
.form-err.show { display: flex; }

.btn-submit:disabled { opacity: .65; cursor: not-allowed; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); padding-top: 72px; }

.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand p {
  font-size: .875rem; color: rgba(255,255,255,.38);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}

.footer-col-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.28); margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem; color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: rgba(255,255,255,.45);
}
.footer-contact-list i { color: var(--silver); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom { padding-block: 22px; }
.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.25);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.btt {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: var(--r);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(54,68,139,.4);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}
.btt.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btt:hover { background: var(--blue-dk); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-aside { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; }
  .stat-block  { flex: 1; min-width: 120px; }
  .svc-row { grid-template-columns: repeat(3, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 52px; }
  .why-grid      { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel  { padding: 44px 36px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .svc-row { grid-template-columns: repeat(2, 1fr); }
  .services { clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 24px), 0 100%); margin-block: -24px; padding-block: 120px; }
  .why { padding-top: 120px; }
  .logo-medallion { width: 160px; height: 160px; }
  .logo-circle-mask { width: 118px; height: 118px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 62px; }
  .container { padding-inline: 18px; }

  .ham { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column; align-items: stretch;
    padding: 14px 18px 22px; gap: 4px;
    box-shadow: var(--sh);
    transform: translateY(-110%); opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nlink { padding: 11px 14px; font-size: .93rem; }
  .nlink--cta { margin: 8px 0 0; justify-content: center; }

  .hero-logo-section { padding: 40px 18px 28px; }
  .logo-medallion { width: 140px; height: 140px; }
  .logo-circle-mask { width: 100px; height: 100px; }

  .hl-white, .hl-silver { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-scroll-bar { display: none; }

  .about { padding-block: 68px; }
  .services { padding-block: 100px; }
  .why { padding-top: 100px; padding-bottom: 68px; }
  .contact { padding-block: 68px; }

  .svc-row { grid-template-columns: 1fr; }
  .svc-header { flex-direction: column; align-items: flex-start; }
  .why-row { grid-template-columns: 36px 44px 1fr; gap: 12px; }
  .contact-panel { padding: 36px 24px; }
  .contact-form-wrap { padding: 36px 24px; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 640px) {
  .nav-logo-img    { height: 42px; }
  .footer-logo-img { height: 56px; }
}
