/* ============================================================
   WeDo Marketing — Complete Design System
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: Navy · Navy-mid · Terracotta · Off-white · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* --- Variables -------------------------------------------- */
:root {
  --navy:       #0D1C30;
  --navy-mid:   #1A2E47;
  --terra:      #B84E28;
  --terra-dark: #8C3618;
  --terra-bg:   #F2E0D8;
  --off-white:  #F5F3EE;
  --white:      #FFFFFF;
  --ink:        #1C1C1C;
  --muted:      #595653;
  --muted-lt:   #888480;
  --border:     rgba(0,0,0,0.10);
  --border-lt:  rgba(0,0,0,0.06);

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', sans-serif;

  --max-w: 1100px;
  --pad-x: 48px;
  --section-v: 80px;
  --radius: 8px;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); font-weight: 300; color: var(--ink); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout helpers --------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: var(--section-v) var(--pad-x);
}
.section--ow  { background: var(--off-white); }
.section--wh  { background: var(--white); }
.section--navy { background: var(--navy); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  padding: 0 var(--pad-x);
  height: 56px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__logo {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-right: 28px;
}
.nav__link {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.15s;
}
.nav__link:hover,
.nav__link--active { color: var(--navy); font-weight: 500; }
.nav__cta {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--terra-dark); color: #fff; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  padding: 20px var(--pad-x) 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link { font-size: 15px; }
.nav__mobile .nav__cta { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 80px var(--pad-x) 72px;
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
}
.hero__h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}
.btn--primary {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary:hover { background: var(--terra-dark); color: #fff; }
.btn--secondary {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--secondary:hover { opacity: 0.9; color: var(--navy); }
.hero__trust {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item__dot {
  width: 5px;
  height: 5px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PHILOSOPHY STRIP
   ============================================================ */
.strip {
  background: var(--navy-mid);
  padding: 40px var(--pad-x);
  text-align: center;
}
.strip__text {
  font-family: var(--fd);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 10px;
}
.sec-h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.12;
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.service-card__icon {
  width: 38px;
  height: 38px;
  background: var(--terra-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card__icon svg { width: 20px; height: 20px; stroke: var(--terra-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
  font-weight: 300;
}
.service-card__callout {
  font-family: var(--fd);
  font-size: 13px;
  font-style: italic;
  color: var(--terra-dark);
  border-top: 0.5px solid var(--border-lt);
  padding-top: 14px;
  margin-top: 16px;
  line-height: 1.5;
}
.service-card__cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}
.service-card__cta svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   WHY US CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-card h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
  font-weight: 300;
}
.why-card__cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}
.why-card__cta svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.award-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.award-list li { font-family: var(--fd); font-size: 14px; font-weight: 500; color: var(--navy); }
.award-list li span { font-family: var(--fb); font-size: 11px; color: var(--muted); font-weight: 300; display: block; line-height: 1.4; margin-top: 1px; }
.award-closing { font-family: var(--fd); font-size: 13px; font-style: italic; color: var(--muted); margin-top: 14px; padding-top: 12px; border-top: 0.5px solid var(--border-lt); }

/* ============================================================
   QUOTE / BRAND STATEMENT BAND
   ============================================================ */
.quote-band {
  background: var(--navy);
  padding: 72px var(--pad-x);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--fd);
  font-size: clamp(18px, 2.4vw, 26px);
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 12px;
}
.quote-band cite {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  font-style: normal;
  letter-spacing: 0.06em;
}
.quote-band__cta { margin-top: 36px; }

/* ============================================================
   BRAND JOURNEY PAGE
   ============================================================ */
.page-hero {
  background: var(--off-white);
  padding: 80px var(--pad-x) 72px;
  text-align: center;
}
.page-hero--navy { background: var(--navy); }
.page-hero h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero--navy h1 { color: #fff; }
.page-hero__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}
.page-hero--navy .page-hero__sub { color: rgba(255,255,255,0.72); }

.prose-section {
  padding: var(--section-v) var(--pad-x);
  max-width: 760px;
  margin: 0 auto;
}
.prose-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 20px;
}
.prose-section p:last-child { margin-bottom: 0; }
.prose-section p em { font-family: var(--fd); font-size: 17px; font-style: italic; color: var(--navy); font-weight: 400; }

.stage-section {
  padding: 64px var(--pad-x);
}
.stage-section--ow { background: var(--off-white); }
.stage-section--wh { background: var(--white); }
.stage-inner { max-width: var(--max-w); margin: 0 auto; }
.stage-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 10px;
}
.stage-h2 {
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.stage-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 24px;
}
.stage-how {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.stage-bullets { display: flex; flex-direction: column; gap: 10px; }
.stage-bullets li {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.stage-bullets li::before {
  content: '—';
  color: var(--terra);
  flex-shrink: 0;
  font-weight: 400;
  margin-top: 1px;
}

/* Why brand comparison */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 28px 24px;
}
.compare-col--with { background: #E8F4ED; border: 0.5px solid #B8DFC8; }
.compare-col--without { background: #FAECEC; border: 0.5px solid #F0C0C0; }
.compare-col h4 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.compare-col--with h4 { color: #1A5C35; }
.compare-col--without h4 { color: #8B1C1C; }
.compare-col ul { display: flex; flex-direction: column; gap: 10px; }
.compare-col li {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.compare-col--with li { color: #1A5C35; }
.compare-col--without li { color: #8B1C1C; }
.compare-col--with li::before { content: '✓'; flex-shrink: 0; font-weight: 500; }
.compare-col--without li::before { content: '✗'; flex-shrink: 0; font-weight: 500; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-founder {
  padding: var(--section-v) var(--pad-x);
  max-width: 760px;
  margin: 0 auto;
}
.about-founder p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 22px;
}
.about-section {
  padding: var(--section-v) var(--pad-x);
}
.about-section h3 {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-section p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 18px;
}
.about-accent {
  border-left: 2.5px solid var(--terra);
  padding-left: 20px;
  border-radius: 0;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.award-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--white);
}
.award-card__name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.award-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}
.awards-closing {
  font-family: var(--fd);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
}

/* ============================================================
   BLOG LIST PAGE
   ============================================================ */
.blog-hero {
  background: var(--off-white);
  padding: 64px var(--pad-x) 56px;
}
.blog-hero h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.blog-hero p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-lt);
  font-size: 13px;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px 20px; }
.blog-card__cat {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-card__title a { color: var(--navy); }
.blog-card__title a:hover { color: var(--terra-dark); }
.blog-card__excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}
.blog-card__meta {
  font-size: 11px;
  color: var(--muted-lt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card__read-more {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card__read-more svg { width: 13px; height: 13px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-card__read-more:hover { color: var(--terra-dark); }
.blog-card__read-more:hover svg { stroke: var(--terra-dark); }

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-hero {
  background: var(--off-white);
  padding: 64px var(--pad-x) 56px;
  max-width: 820px;
  margin: 0 auto;
}
.post-hero__cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 14px;
}
.post-hero h1 {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 16px;
}
.post-hero__meta {
  font-size: 12px;
  color: var(--muted-lt);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.post-featured-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px var(--pad-x) 80px;
}
.post-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 24px;
}
.post-content h2 {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 40px 0 14px;
  line-height: 1.2;
}
.post-content h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 32px 0 12px;
}
.post-content blockquote {
  font-family: var(--fd);
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  border-left: 2.5px solid var(--terra);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  border-radius: 0;
  line-height: 1.55;
}
.post-content ul, .post-content ol {
  padding-left: 20px;
  margin-bottom: 24px;
}
.post-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 8px;
}
.post-content img {
  border-radius: var(--radius);
  margin: 32px 0;
}
.post-content a { color: var(--terra-dark); text-decoration: underline; text-underline-offset: 3px; }
.post-content strong { font-weight: 500; color: var(--navy); }

.post-back {
  padding: 24px var(--pad-x);
  border-top: 0.5px solid var(--border);
  background: var(--off-white);
}
.post-back a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-back a svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   CTA SECTION (reusable closing band)
   ============================================================ */
.cta-section {
  background: var(--off-white);
  padding: 72px var(--pad-x);
  text-align: center;
}
.cta-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto 28px;
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 56px var(--pad-x) 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer__logo {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  font-weight: 300;
  max-width: 240px;
  margin-bottom: 10px;
}
.footer__brand-line {
  font-family: var(--fd);
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  max-width: 240px;
}
.footer__col-head {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.32);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s;
}
.footer__link:hover { color: #fff; }
.footer__email {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 16px;
}
.footer__socials { display: flex; gap: 8px; }
.footer__soc {
  width: 32px;
  height: 32px;
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.footer__soc:hover { border-color: rgba(255,255,255,0.4); }
.footer__soc svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__strapline {
  font-family: var(--fd);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.36);
}
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ============================================================
   GENERIC PAGE (contact, etc.)
   ============================================================ */
.generic-page {
  padding: var(--section-v) var(--pad-x);
  max-width: 820px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --pad-x: 32px; }
  .cards-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --pad-x: 20px; --section-v: 56px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .hero__btns { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; gap: 10px; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-intro {
  padding: var(--section-v) var(--pad-x);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.svc-intro__left h2 {
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.svc-intro__left p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}
.svc-intro__stats { display: flex; flex-direction: column; gap: 10px; }
.svc-intro__stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 0.5px solid var(--border-lt);
}
.svc-intro__stat-ico {
  width: 36px;
  height: 36px;
  background: var(--terra-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra-dark);
  flex-shrink: 0;
}
.svc-intro__stat-ico svg { width: 18px; height: 18px; stroke: var(--terra-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-intro__stat-text h4 { font-family: var(--fd); font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.svc-intro__stat-text p { font-size: 12px; color: var(--muted); line-height: 1.5; font-weight: 300; }

.svc-row {
  padding: var(--section-v) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.svc-row--ow { background: var(--off-white); }
.svc-row--wh { background: var(--white); }
.svc-row--rev .svc-row__panel { order: 2; }
.svc-row--rev .svc-row__content { order: 1; }

.svc-row__panel {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 32px;
}
.svc-row__panel-ico {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
}
.svc-row__panel-ico svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.65); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-row__panel h3 { font-family: var(--fd); font-size: 26px; font-weight: 500; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.svc-row__panel-body { font-size: 13px; color: rgba(255,255,255,0.66); line-height: 1.72; font-weight: 300; margin-bottom: 20px; }
.svc-row__panel-callout { font-family: var(--fd); font-size: 13px; font-style: italic; color: rgba(255,255,255,0.44); border-top: 0.5px solid rgba(255,255,255,0.12); padding-top: 16px; line-height: 1.55; }

.svc-row__content { display: flex; flex-direction: column; justify-content: center; }
.svc-row__num { font-family: var(--fd); font-size: 68px; font-weight: 500; color: rgba(0,0,0,0.055); line-height: 1; margin-bottom: 4px; }
.svc-row__content h2 { font-family: var(--fd); font-size: clamp(22px, 2.8vw, 30px); font-weight: 500; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.svc-row__content > p { font-size: 13.5px; color: var(--muted); line-height: 1.72; font-weight: 300; margin-bottom: 20px; }
.svc-includes__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted-light); font-weight: 500; margin-bottom: 10px; }
.svc-includes ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.svc-includes li { font-size: 13px; color: var(--navy); line-height: 1.55; font-weight: 300; display: flex; align-items: flex-start; gap: 8px; }
.svc-includes li::before { content: '—'; color: var(--terra); flex-shrink: 0; }
.svc-row__cta { font-size: 13px; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: 5px; letter-spacing: 0.02em; }
.svc-row__cta svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.svc-pillars { padding: var(--section-v) var(--pad-x); background: var(--off-white); }
.svc-pillars h2 { font-family: var(--fd); font-size: clamp(26px, 3.2vw, 34px); font-weight: 500; color: var(--navy); margin-bottom: 8px; line-height: 1.12; }
.svc-pillars > p { font-size: 14px; color: var(--muted); line-height: 1.68; font-weight: 300; max-width: 560px; margin-bottom: 36px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pillar { background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 24px 20px; }
.pillar__ico { margin-bottom: 12px; color: var(--terra); }
.pillar__ico svg { width: 22px; height: 22px; stroke: var(--terra); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar h4 { font-family: var(--fd); font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.pillar p { font-size: 12.5px; color: var(--muted); line-height: 1.65; font-weight: 300; }

@media (max-width: 900px) {
  .svc-intro { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row--rev .svc-row__panel { order: 1; }
  .svc-row--rev .svc-row__content { order: 2; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV FIX — prevent wrapping on logo, links and CTA
   ============================================================ */
.nav__logo {
  white-space: nowrap !important;
  font-size: 16px !important;
}
.nav__link {
  white-space: nowrap !important;
  font-size: 12px !important;
}
.nav__links {
  gap: 18px !important;
  margin-right: 18px !important;
}
.nav__cta {
  white-space: nowrap !important;
  font-size: 11px !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
}
