/* Azimuth Sales — shared styles
   Design tokens locked from production site (azimuthsales.com)
   Built 2026-04-19, refreshed 2026-04-27 */

:root {
  --navy: #0D1F35;
  --navy-light: #14283F;
  --navy-panel: #1B2A4A;
  --gold: #C9A75E;
  --gold-bright: #E0C176;
  --gold-deep: #B8972A;
  --text: #F0F4F8;
  --text-muted: #A8B5C4;
  --text-faint: #6E7A8A;
  --border: rgba(201, 167, 94, 0.25);
  --max-width: 1280px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse at top, rgba(27, 42, 74, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(201, 167, 94, 0.04) 0%, transparent 60%);
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; }
.italic { font-style: italic; color: var(--gold); }
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }
p { margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; position: relative; }
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
}

/* HEADER */
.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  background: rgba(13, 31, 53, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-logo { width: 36px; height: 36px; flex-shrink: 0; }
.brand-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}
.brand-text .gold { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold); }
@media (max-width: 720px) {
  .nav { gap: 1rem; }
  .nav-link { font-size: 0.75rem; }
  .brand-text { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 167, 94, 0.25);
}
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(201, 167, 94, 0.08); color: var(--gold-bright); box-shadow: none; }

/* HERO */
.hero { padding: 5rem 0 4rem; position: relative; }
.hero h1 { margin-bottom: 1.5rem; max-width: 24ch; }
.hero h1 .italic { display: block; }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* TWO-PATH SPLIT (landing page) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}
.path-card {
  border: 1px solid var(--border);
  background: rgba(27, 42, 74, 0.4);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.path-card:hover {
  border-color: var(--gold);
  background: rgba(27, 42, 74, 0.6);
  transform: translateY(-2px);
}
.path-card .eyebrow { margin-bottom: 1.5rem; }
.path-card h2 { margin-bottom: 1rem; font-size: 2rem; }
.path-card p { color: var(--text-muted); flex: 1; margin-bottom: 2rem; }
.path-card .btn { align-self: flex-start; }

/* VALUE PROPS WITH ROMAN NUMERALS */
.props {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem 2rem;
  align-items: baseline;
  margin: 2.5rem 0;
}
.props .roman {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: left;
}
.props .label {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.props .desc { color: var(--text-muted); font-size: 0.95rem; }
.props > div { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* PROOF / CALLOUT */
.callout {
  background: rgba(27, 42, 74, 0.5);
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}
.callout cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 1rem;
  font-weight: 500;
}

/* ENGAGEMENT / SERVICE LIST (price-free) */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-row:last-of-type { border-bottom: none; }
.service-row h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.25rem; }
.service-row .desc { color: var(--text-muted); font-size: 0.95rem; }

/* WHAT YOU GET LIST */
.get-list { list-style: none; padding: 0; margin: 2rem 0; }
.get-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1.0625rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.get-list li:last-child { border-bottom: none; }
.get-list li::before {
  content: "—";
  color: var(--gold);
  font-weight: 500;
}

/* TWO-COLUMN LAYOUT (page-with-form) */
.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 980px) {
  .col-2 { grid-template-columns: 1fr; gap: 3rem; }
}

/* JOTFORM IFRAME WRAPPER */
.form-wrap {
  border: 1px solid var(--border);
  background: rgba(27, 42, 74, 0.5);
  padding: 1.25rem;
  position: relative;
}
.form-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--gold);
}
.form-wrap iframe {
  width: 100% !important;
  border: none !important;
  background: transparent !important;
}

/* DIVIDER */
.divider { height: 1px; background: var(--border); margin: 4rem 0; }

/* FOOTER */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer .copy { font-size: 0.8125rem; color: var(--text-faint); }
.site-footer .footer-nav { display: flex; gap: 1.5rem; font-size: 0.8125rem; }
.site-footer .footer-nav a { color: var(--text-faint); }
.site-footer .footer-nav a:hover { color: var(--gold); }

/* SHIFT TABLE */
.shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem 2rem;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 720px) {
  .shift { grid-template-columns: 1fr; }
  .shift .arrow { display: none; }
}
.shift .from {
  text-align: right;
  color: var(--text-muted);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shift .arrow {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}
.shift .to {
  color: var(--text);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 720px) {
  .shift .from {
    text-align: left;
    padding-bottom: 0.25rem;
    border-bottom: none;
  }
  .shift .from::before {
    content: "From: ";
    color: var(--text-faint);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
  }
  .shift .to::before {
    content: "To: ";
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
  }
}

/* HERO HEADLINE — multi-line stacked */
.hero h1.stacked {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.25;
  max-width: 28ch;
}

/* CLOSING QUESTION CARD (All-Star, etc.) */
.closer {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 40ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.3;
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   AZIMUTH SALES — FLAGSHIP MARKETING SITE EXTENSIONS
   AI Marketing for Contractors · added 2026-07-01
   ============================================================ */

/* HERO — full-bleed image */
.hero-full {
  position: relative;
  padding: 0;
  min-height: clamp(560px, 92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-full .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-full .hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(13,31,53,0.97) 0%, rgba(13,31,53,0.88) 42%, rgba(13,31,53,0.55) 100%),
    linear-gradient(0deg, rgba(13,31,53,0.9) 0%, transparent 45%);
}
.hero-full .container { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 5rem; }
.hero-full h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 18ch; margin-bottom: 1.75rem; line-height: 1.05;
}
.hero-full .hero-sub { font-size: 1.2rem; max-width: 54ch; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem;
  margin-top: 2.75rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1); max-width: 640px;
}
.hero-badges .hb { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-badges .hb-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-badges .hb-lbl { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* STAT BAND */
.stat-band { background: rgba(27,42,74,0.55); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; } }
.stat-grid .stat .n { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.75rem); color: var(--gold); line-height: 1; display: block; }
.stat-grid .stat .l { font-size: 0.8125rem; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 0.65rem; display: block; line-height: 1.4; }

/* SECTION WITH IMAGE (alternating) */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.media-split.reverse .media-txt { order: 2; }
@media (max-width: 900px) { .media-split, .media-split.reverse { grid-template-columns: 1fr; gap: 2.5rem; } .media-split.reverse .media-txt { order: 0; } }
.media-img { position: relative; }
.media-img img { width: 100%; height: 100%; object-fit: cover; display: block; border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.media-img.framed::after { content:""; position:absolute; inset:0; border:1px solid rgba(201,167,94,0.4); transform: translate(14px,14px); z-index:-1; }

/* PAIN LIST */
.pain-list { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.pain-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--text-muted); font-size: 1.0625rem; align-items: flex-start; }
.pain-list li:last-child { border-bottom: none; }
.pain-list li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.5rem; }
.step .step-n { position: absolute; top: 0; left: 0; font-family: var(--serif); font-size: 3rem; color: rgba(201,167,94,0.35); line-height: 1; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* SERVICE GRID */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { border: 1px solid var(--border); background: rgba(27,42,74,0.35); padding: 2.25rem 2rem; transition: all 0.25s ease; }
.svc-card:hover { border-color: var(--gold); background: rgba(27,42,74,0.6); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.svc-icon { width: 46px; height: 46px; margin-bottom: 1.25rem; color: var(--gold); }
.svc-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.svc-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* CASE STUDY */
.case { background: rgba(27,42,74,0.35); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: clamp(2rem, 4vw, 3.5rem); margin-top: 2.5rem; }
.case-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
@media (max-width: 620px) { .case-gallery { grid-template-columns: 1fr; } }
.case-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--border); }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 620px) { .case-metrics { grid-template-columns: 1fr; text-align: center; } }
.case-metrics .cm .n { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); display: block; line-height: 1; }
.case-metrics .cm .l { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; display: block; }

/* FOUNDER / TESTIMONIAL */
.founder { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: center; margin-top: 2.5rem; }
@media (max-width: 620px) { .founder { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.founder img { width: 200px; height: 200px; object-fit: cover; border: 1px solid var(--gold); border-radius: 4px; }
.founder blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.6vw, 1.9rem); color: var(--text); line-height: 1.35; }
.founder .attr { font-family: var(--sans); font-style: normal; font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 1.25rem; display: block; }
.founder .attr span { color: var(--text-faint); display: block; letter-spacing: 0.06em; text-transform: none; font-size: 0.85rem; margin-top: 0.25rem; }

/* CTA BAND */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band .hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; }
.cta-band .hero-scrim { position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(13,31,53,0.94), rgba(13,31,53,0.9)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-phone { font-family: var(--serif); font-size: clamp(1.75rem,4vw,2.5rem); color: var(--gold); letter-spacing: 0.02em; }

/* FOOTER EXTENDED */
.footer-rich { border-top: 1px solid var(--border); padding: 4rem 0 2rem; margin-top: 0; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
@media (max-width: 820px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-cols h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-weight: 600; }
.footer-cols a { display: block; color: var(--text-muted); font-size: 0.925rem; padding: 0.3rem 0; }
.footer-cols a:hover { color: var(--gold); }
.footer-cols p { color: var(--text-muted); font-size: 0.925rem; }
.footer-brand .brand-text { font-size: 1.4rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.8125rem; color: var(--text-faint); }

/* SECTION HEADER CENTERED */
.sec-head { max-width: 62ch; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.reveal-note { color: var(--text-faint); font-size: 0.9rem; font-style: italic; }
