/* ============================================================
   CLEARLINE OPERATIONS — Master Stylesheet
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* TOKENS */
:root {
  --navy:        #0B1628;
  --navy-mid:    #0F1E35;
  --navy-light:  #1A3050;
  --gold:        #B8965A;
  --gold-lt:     #D4AF7A;
  --gold-faint:  rgba(184,150,90,0.12);
  --cream:       #F5F1EB;
  --cream-mid:   #EDE7DC;
  --white:       #FFFFFF;
  --text:        #0B1628;
  --text-mid:    #4A5568;
  --text-light:  #8A95A3;
  --border:      rgba(11,22,40,0.1);
  --border-gold: rgba(184,150,90,0.25);

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Outfit', system-ui, -apple-system, sans-serif;

  --max-w:   1200px;
  --nav-h:   72px;
  --ease:    cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
  font-family: var(--f-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 600; line-height: 1.1; }
p { color: var(--text-mid); }

/* ---- LAYOUT ---- */
.wrap     { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.wrap--sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

.section       { padding: 7rem 0; }
.section--sm   { padding: 4rem 0; }
.section--dark { background: var(--navy); }
.section--cream{ background: var(--cream); }

/* ---- EYEBROW ---- */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow--inline::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,90,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,22,40,0.2);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled,
.nav--solid {
  background: rgba(11,22,40,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-gold);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav__logo-main {
  font-family: var(--f-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav__logo-sub {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a.active { color: var(--gold-lt); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.25s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 50%, rgba(26,48,80,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(184,150,90,0.07) 0%, transparent 50%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 60%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, black 20%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
}
.hero h1 {
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  color: var(--white);
  max-width: 820px;
  margin: 1.5rem 0 1.75rem;
  line-height: 1.04;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero__stat-n {
  font-family: var(--f-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero__stat-l {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

/* ---- INDUSTRIES STRIP ---- */
.strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.1rem 0;
  overflow: hidden;
}
.strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
.strip__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-right: 1.25rem;
  white-space: nowrap;
}
.strip__item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 0 1.1rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.strip__item:first-of-type { border-left: none; }

/* ---- PROBLEM SECTION ---- */
.problem__intro {
  max-width: 620px;
  margin-bottom: 4rem;
}
.problem__intro h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.problem__intro p { font-size: 1.05rem; max-width: none; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pain-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,22,40,0.08);
}
.pain-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.875rem;
}
.pain-card p { font-size: 0.95rem; line-height: 1.7; }

/* ---- SERVICES OVERVIEW ---- */
.services-overview h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 480px;
  margin: 1rem 0 0.75rem;
}
.services-overview > .wrap > p {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 3.5rem;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,22,40,0.08);
}
.svc-card__num {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--cream-mid);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.svc-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.svc-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.svc-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.svc-card__link:hover { gap: 0.75rem; }
.svc-card__link::after { content: '→'; }

/* ---- PROCESS ---- */
.process { background: var(--navy); padding: 7rem 0; }
.process h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 1rem 0 0.75rem;
}
.process > .wrap > p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.6% + 0.75rem);
  right: calc(16.6% + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,150,90,0.15) 100%);
}
.step {
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.step__n {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.step h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ---- ABOUT TEASER ---- */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: center;
}
.about-teaser h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: 1rem 0 1.25rem;
  max-width: 520px;
}
.about-teaser__body p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 540px;
}
.about-teaser__body p:last-of-type { margin-bottom: 2rem; }
.about-teaser__visual {
  background: var(--cream);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-teaser__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream) 100%);
}
.about-teaser__monogram {
  position: relative;
  z-index: 1;
  font-family: var(--f-serif);
  font-size: 7rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.cred::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ---- CTA BAND ---- */
.cta-band { background: var(--gold); padding: 4.5rem 0; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.cta-band__text p {
  color: rgba(11,22,40,0.6);
  font-size: 1rem;
  max-width: 440px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--border-gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer__col-head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col-links a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(26,48,80,0.8) 0%, transparent 65%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  color: var(--white);
  max-width: 700px;
  margin: 1rem 0 1.25rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.75;
}

/* ---- SERVICES PAGE ---- */
.services-list { margin-top: 4.5rem; }
.svc-full {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 5rem;
  align-items: start;
  padding-bottom: 4.5rem;
  margin-bottom: 4.5rem;
  border-bottom: 1px solid var(--border);
}
.svc-full:last-child { border-bottom: none; margin-bottom: 0; }
.svc-full__aside { padding-top: 0.5rem; }
.svc-full__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.svc-full__num {
  font-family: var(--f-serif);
  font-size: 5rem;
  font-weight: 600;
  color: var(--cream-mid);
  line-height: 1;
}
.svc-full__main h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1.25rem;
}
.svc-full__main > p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 620px;
}
.includes-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.include {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.include::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.05rem;
}
.svc-full__price {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.svc-full__price strong { color: var(--navy); font-weight: 600; }

/* ---- ABOUT PAGE ---- */
.about-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 6rem;
  align-items: start;
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 640px;
  color: var(--text-mid);
}
.about-body p:last-of-type { margin-bottom: 0; }
.about-aside { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
.aside-box {
  padding: 2rem;
  background: var(--cream);
  margin-bottom: 1.5rem;
}
.aside-box__head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.aside-list { display: flex; flex-direction: column; gap: 0.7rem; }
.aside-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.aside-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.65rem;
}

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 6rem;
  margin-top: 4.5rem;
}
.contact-info__item { margin-bottom: 2.25rem; }
.contact-info__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-info__val {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-info__val a:hover { color: var(--navy); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A95A3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.form-success {
  display: none;
  padding: 1.25rem 1.5rem;
  background: rgba(184,150,90,0.1);
  border: 1px solid var(--border-gold);
  font-size: 0.95rem;
  color: var(--navy);
}

/* ---- FADE-IN ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .problem__grid,
  .services-cards { grid-template-columns: 1fr 1fr; }
  .about-teaser__grid { gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .svc-full { grid-template-columns: 1fr 2fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .process { padding: 4.5rem 0; }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: #0B1628;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.75rem;
    z-index: 199;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.25rem; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero h1 { font-size: clamp(2.75rem, 11vw, 4.5rem); }
  .hero__stats { gap: 1.5rem; margin-top: 3rem; }

  .problem__grid,
  .services-cards,
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .about-teaser__grid { grid-template-columns: 1fr; }
  .about-teaser__visual { aspect-ratio: 3/2; }

  .svc-full { grid-template-columns: 1fr; gap: 1.75rem; }
  .includes-grid { grid-template-columns: 1fr; }

  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-aside { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .cta-band__inner { flex-direction: column; }
  .cta-band { padding: 3rem 0; }
}

/* ---- LOGO IMAGE ---- */
.nav__logo img,
footer img[alt="Clearline Operations"] {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}
footer img[alt="Clearline Operations"] {
  height: 32px;
}
