/* =========================================================
   Good Light Marketing — Stylesheet
   Mobile-first. No inline styles. Brand-driven.
   ========================================================= */

/* ---------- 1. CSS Variables ---------- */
:root {
  /* Brand */
  --royal-blue: #0A2ECC;
  --sky-blue:   #1E96FC;
  --amber:      #FFC600;
  --amber-soft: #FFD747;

  /* Neutrals */
  --navy:       #06102E;
  --cool-gray:  #7B8EB3;
  --mist:       #E1EBF9;
  --cool-white: #F4F8FF;

  /* Type */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(6, 16, 46, 0.06);
  --shadow:    0 8px 24px rgba(6, 16, 46, 0.08);
  --shadow-lg: 0 16px 48px rgba(6, 16, 46, 0.12);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cool-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }

a { color: var(--royal-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sky-blue); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: #2a3556; }

/* ---------- 3. Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding: 72px 0; }
.section--lg { padding: 96px 0; }
.section--sm { padding: 48px 0; }

.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: #fff; }
.section--navy p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 14px;
}

.section--navy .eyebrow { color: var(--amber); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: #2a3556;
  max-width: 640px;
}

.section--navy .lead { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 198, 0, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 198, 0, 0.45);
  background: var(--amber-soft);
  color: var(--navy);
}

.btn--royal {
  background: var(--royal-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(10, 46, 204, 0.25);
}
.btn--royal:hover {
  transform: translateY(-2px);
  background: var(--sky-blue);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 24px;
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 24px;
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn--lg { padding: 17px 32px; font-size: 1rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-row--center { justify-content: center; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--mist);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.site-logo img { height: 48px; width: auto; max-height: 48px; }

.site-logo__fallback {
  /* Used when no logo image is dropped in yet */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.site-logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, transparent 0deg 6deg, var(--navy) 6deg 14deg, transparent 14deg 35deg,
                                 var(--navy) 35deg 43deg, transparent 43deg 64deg,
                                 var(--navy) 64deg 72deg, transparent 72deg 93deg,
                                 var(--navy) 93deg 101deg, transparent 101deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 39%, #000 100%);
          mask: radial-gradient(circle, transparent 38%, #000 39%, #000 100%);
}

.primary-nav {
  display: none;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
}

.primary-nav__link:hover { color: var(--royal-blue); }

.primary-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--navy);
}

.menu-toggle:hover { background: var(--mist); }

.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--mist);
  background: var(--cool-white);
}

.mobile-nav.is-open { display: block; }

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: 12px 0 20px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 24px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--mist);
}

.mobile-nav__cta {
  margin: 16px 24px 0;
  display: block;
  text-align: center;
}

@media (min-width: 900px) {
  .primary-nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- 6. Hero ---------- */
/* Real photograph background (sky with sun on the right).
   Drop your photo at assets/images/hero-sky.jpg.
   A left-to-right gradient overlay keeps the text readable
   while letting the photo's sun and warm tones come through on the right.
   Top edge fades into cool-white so it blends seamlessly into the nav. */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background-color: var(--cool-white);
}

/* Photo layer — filter boosts sky saturation + brightness independently of text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-sky.jpg") center right / cover no-repeat;
  filter: saturate(1.3) brightness(1.04) hue-rotate(32deg);
  z-index: 0;
}

/* Gradient overlay layer */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    /* Top fade — nav seam */
    linear-gradient(180deg, var(--cool-white) 0%, rgba(244,248,255,0.95) 6%, rgba(244,248,255,0.6) 16%, rgba(244,248,255,0) 32%),
    /* Left wash — text readability */
    linear-gradient(95deg, var(--cool-white) 0%, rgba(244,248,255,0.92) 28%, rgba(244,248,255,0.55) 48%, rgba(244,248,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* Hide CSS fallback sun/rays — not needed with a real photo */
.hero__sun,
.hero__rays {
  display: none;
}

@media (max-width: 760px) {
  .hero { padding: 72px 0 88px; }
  .hero::after {
    background-image:
      linear-gradient(180deg, var(--cool-white) 0%, rgba(244,248,255,0.92) 8%, rgba(244,248,255,0.5) 22%, rgba(244,248,255,0) 38%),
      linear-gradient(180deg, rgba(244,248,255,0.55) 0%, rgba(244,248,255,0.25) 55%, rgba(244,248,255,0) 90%);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero h1 .highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(255,198,0,.55) 60%);
  padding: 0 4px;
}

.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: #2a3556;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 36px;
  color: var(--cool-gray);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg { width: 18px; height: 18px; color: var(--royal-blue); }

/* ---------- 7. Logo strip (social proof) ---------- */
.logo-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--mist);
  background: var(--cool-white);
}

.logo-strip__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cool-gray);
  margin-bottom: 22px;
}

.logo-strip__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  align-items: center;
  justify-items: center;
  opacity: 0.7;
}

@media (min-width: 700px) {
  .logo-strip__row { grid-template-columns: repeat(5, 1fr); }
}

.logo-strip__item {
  font-weight: 700;
  color: var(--cool-gray);
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- 8. Feature grid (services teaser) ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mist);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature__icon svg { width: 28px; height: 28px; }

.feature h3 { margin-bottom: 8px; }
.feature p { color: #4a5878; font-size: 0.96rem; }

.feature__link {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature__link::after {
  content: "→";
  transition: transform .2s var(--ease);
}

.feature__link:hover::after { transform: translateX(4px); }

/* ---------- 9. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 700px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--mist);
}

.section--navy .stat {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

.stat__num {
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--royal-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.section--navy .stat__num { color: var(--amber); }

.stat__label {
  font-size: 0.95rem;
  color: var(--cool-gray);
}

.section--navy .stat__label { color: rgba(255,255,255,0.7); }

/* ---------- 10. Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

@media (min-width: 1000px) { .pricing { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan--featured {
  border: 2px solid var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

@media (max-width: 999px) {
  .plan--featured { transform: none; }
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.plan__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 6px;
}

.plan__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.plan__period {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cool-gray);
  margin-left: 4px;
}

.plan__desc {
  margin-top: 14px;
  color: #4a5878;
  font-size: 0.96rem;
}

.plan__divider {
  height: 1px;
  background: var(--mist);
  margin: 22px 0;
}

.plan__group-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-top: 14px;
  margin-bottom: 10px;
}

.plan__group-title:first-of-type { margin-top: 0; }

.plan__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  color: #2a3556;
  line-height: 1.5;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--mist);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2ECC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.plan .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  justify-content: center;
}

/* ---------- 11. Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 800px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial__stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }

.testimonial__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #2a3556;
  flex-grow: 1;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial__name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testimonial__role { font-size: 0.85rem; color: var(--cool-gray); }

/* ---------- 12. CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #1737d6 60%, var(--sky-blue) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* CTA with a real photo background.
   Drop your image at assets/images/cta-bg.jpg.
   Royal-blue brand overlay keeps text readable AND pulls the sky color
   toward the brand's primary blue. */
.cta-banner--image {
  background:
    linear-gradient(135deg, rgba(10,46,204,0.82) 0%, rgba(10,46,204,0.68) 50%, rgba(10,46,204,0.55) 100%),
    url("../images/cta-bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 28px; font-size: 1.05rem; }

.cta-banner .btn-row { justify-content: center; }

/* ---------- 13. Portfolio grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }

.work-link { height: 100%; }

.work {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mist);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}

.work:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Card link wrapper — makes whole portfolio card clickable */
.work-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.work-link:hover { color: inherit; }
.work-link:hover h3 { color: var(--royal-blue); }

.work__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--mist) 0%, #cdd9ee 100%);
  position: relative;
  overflow: hidden;
}

.work__image img { width: 100%; height: 100%; object-fit: cover; }

.work__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool-gray);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.work__body { padding: 22px 24px 26px; }

.work-link--inactive { cursor: default; }
.work-link--inactive .work { pointer-events: none; }

.work__coming-soon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 46, 204, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.work__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: var(--mist);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.work h3 { font-size: 1.18rem; margin-bottom: 6px; }
.work p { font-size: 0.94rem; color: #4a5878; }

/* ---------- 14. About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 800px) {
  .about-hero { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}

.about-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slight desaturation pulls the warm cast back toward neutral */
  filter: saturate(0.94);
}

/* Subtle cool overlay so the photo reads on-brand against the site */
.about-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 150, 252, 0.10), rgba(10, 46, 204, 0.08));
  mix-blend-mode: soft-light;
  pointer-events: none;
  border-radius: inherit;
}

.about-hero__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool-gray);
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

.about-family {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}

@media (min-width: 800px) {
  .about-family { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .about-family__image-wrap { order: 2; }
}

.about-family__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.about-family__image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 700px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values { grid-template-columns: repeat(4, 1fr); } }

.value {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
}

.value__num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 10px;
}

.value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value p { font-size: 0.94rem; color: #4a5878; }

/* ---------- 15. Blog ---------- */
.blog-featured {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}

@media (min-width: 800px) { .blog-featured { grid-template-columns: 1.1fr 1fr; } }

.blog-featured__image {
  background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
  aspect-ratio: 4 / 3;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.blog-featured__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured__body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured__meta {
  font-size: 0.82rem;
  color: var(--cool-gray);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.blog-featured h2 { margin-bottom: 14px; font-size: clamp(1.5rem, 3vw, 2rem); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.post-card { position: relative; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

.post-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--mist), #cdd9ee);
  position: relative;
  overflow: hidden;
}

.post-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__body { padding: 22px 22px 24px; }

.post-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

.post-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.post-card p { font-size: 0.92rem; color: #4a5878; margin-bottom: 14px; }

.post-card__meta {
  font-size: 0.82rem;
  color: var(--cool-gray);
  font-weight: 500;
}

/* ---------- 16. Blog Post Article ---------- */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cool-gray);
  margin-bottom: 36px;
}

.article-meta__tag {
  display: inline-block;
  background: var(--mist);
  color: var(--royal-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2a3556;
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  margin-top: 52px;
  margin-bottom: 16px;
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body ul,
.article-body ol {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 22px;
}

.article-body ol { list-style: decimal; }

.article-body li {
  margin-bottom: 8px;
  color: #2a3556;
}

.article-body strong { color: var(--navy); }

.article-body blockquote {
  border-left: 4px solid var(--amber);
  padding: 14px 22px;
  margin: 32px 0;
  background: var(--cool-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-body blockquote p {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0;
}

.article-back {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--royal-blue);
  margin-bottom: 20px;
}
.article-back::before { content: "- "; }

/* Article inline CTA block */
.article-cta-inline {
  background: var(--mist);
  border-left: 4px solid var(--royal-blue);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 48px 0;
  text-align: left;
}
.article-cta-inline__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
}
.article-cta-inline__heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.article-cta-inline__body {
  font-size: 1rem;
  color: #2a3556;
  margin-bottom: 20px;
  line-height: 1.65;
}
.article-cta-inline .btn { font-size: 0.9rem; }

/* ---------- 17. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; } }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (min-width: 600px) { .form-row--2col { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.field label .required { color: var(--royal-blue); }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--cool-white);
  border: 1.5px solid var(--mist);
  border-radius: 10px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--royal-blue);
  background: #fff;
}

.field textarea { min-height: 140px; resize: vertical; }

.field__hint { font-size: 0.82rem; color: var(--cool-gray); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info__item {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

.contact-info__value { font-size: 1.05rem; font-weight: 600; color: var(--navy); }

.contact-info__sub { font-size: 0.9rem; color: #4a5878; margin-top: 4px; }

/* ---------- 17. FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }

.faq__item {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--royal-blue);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}

.faq__item[open] summary::after { content: "−"; }

.faq__answer {
  padding: 0 28px 24px;
  color: #4a5878;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- 18. Process ---------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}

@media (min-width: 700px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process { grid-template-columns: repeat(4, 1fr); } }

.process__step {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.process__step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process__step p { font-size: 0.94rem; color: #4a5878; }

/* ---------- 19. Page hero (interior pages) ---------- */
.page-hero {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, var(--mist) 0%, var(--cool-white) 100%);
  text-align: center;
}

.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.1rem; color: #2a3556; max-width: 640px; margin: 0 auto; }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
  margin-top: 80px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

@media (min-width: 800px) {
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.site-footer__brand img { height: 44px; width: auto; max-height: 44px; margin-bottom: 8px; }

.site-footer__tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col__title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
}

.footer-col a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.site-footer__legal a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.site-footer__legal a:hover { color: #fff; }

/* ---------- 21. Misc ---------- */
.divider-soft {
  height: 1px;
  background: var(--mist);
  margin: 56px 0;
  border: 0;
}

.tag-pill {
  display: inline-block;
  background: var(--mist);
  color: var(--royal-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- 22. Service page (single service detail) ---------- */
.service-hero {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, var(--cool-white) 0%, #E8EFFB 100%);
  text-align: center;
}
.service-hero .eyebrow { color: var(--royal-blue); }
.service-hero h1 { max-width: 760px; margin: 0 auto 16px; }
.service-hero p { font-size: 1.1rem; color: #2a3556; max-width: 640px; margin: 0 auto; }

.service-included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 700px) { .service-included { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.service-included__item {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.service-included__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-included__check svg { width: 16px; height: 16px; }

.service-included h4 { font-size: 1rem; margin-bottom: 4px; }
.service-included p { font-size: 0.92rem; color: #4a5878; line-height: 1.5; }

.service-package-note {
  margin-top: 40px;
  padding: 22px 26px;
  background: var(--mist);
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
  font-size: 0.95rem;
  color: #2a3556;
}

.service-package-note strong { color: var(--navy); }

/* ---------- 23. Portfolio detail: carousel + stat strip ---------- */
.project-hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, var(--mist) 0%, var(--cool-white) 100%);
  text-align: center;
}

.project-hero__back {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--royal-blue);
  margin-bottom: 14px;
}

.project-hero__back::before { content: "← "; }

.project-hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.project-hero h1 { margin: 0 auto 14px; max-width: 820px; }
.project-hero p  { font-size: 1.1rem; color: #2a3556; max-width: 720px; margin: 0 auto; }

.project-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
  justify-content: center;
}
@media (min-width: 640px) { .project-stats { grid-template-columns: repeat(2, minmax(0, 260px)); } }
@media (min-width: 900px) { .project-stats { grid-template-columns: repeat(3, minmax(0, 260px)); } }

.project-stat {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.project-stat__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cool-gray);
  margin-bottom: 6px;
}

.project-stat__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* Carousel: horizontal scroll-snap (CSS-only, no JS). Swipe on mobile,
   scroll on desktop. Each "post" mocked up as an Instagram-shaped card. */
.carousel-wrap {
  position: relative;
  margin-top: 32px;
}

.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--cool-gray) transparent;
  scrollbar-width: thin;
}

.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-track { background: transparent; }
.carousel::-webkit-scrollbar-thumb { background: var(--cool-gray); border-radius: 999px; }

.post {
  flex: 0 0 280px;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--royal-blue), var(--sky-blue));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: 22px;
}

@media (min-width: 700px) { .post { flex: 0 0 320px; } }

.post::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.post__caption,
.post__type {
  position: relative;
  z-index: 1;
}

.post__type {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 10px;
}

.post__caption {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Color variants so the carousel visually varies post-to-post */
.post--amber  { background: linear-gradient(135deg, #FFC600, #FF9F1C); color: var(--navy); }
.post--amber::before { background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,0.0) 100%); }
.post--amber .post__type { background: rgba(6,16,46,0.10); color: var(--navy); }

.post--mist   { background: linear-gradient(135deg, #E1EBF9, #B7CCEC); color: var(--navy); }
.post--mist::before { background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,0.0) 100%); }
.post--mist .post__type { background: rgba(6,16,46,0.08); color: var(--navy); }

.post--navy   { background: linear-gradient(135deg, var(--navy), #1a2956); }

.post--coral  { background: linear-gradient(135deg, #FF8B6B, #E94F37); }

.post--green  { background: linear-gradient(135deg, #1d9e75, #0f6e56); }

.carousel-hint {
  text-align: right;
  font-size: 0.82rem;
  color: var(--cool-gray);
  font-weight: 600;
  margin-top: 6px;
}

/* ---------- 23b. Project gallery — 4:5 social posts + reels grid ---------- */
/* Instagram-feed-shaped slots. Drop in actual graphics/reels per project.
   Each cell accepts an <img> or <video>; placeholders show until you add media. */
.proj-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 700px) {
  .proj-gallery { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
}

.proj-gallery__item {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--mist), #cdd9ee);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool-gray);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
  letter-spacing: 0.04em;
}

.proj-gallery__item img,
.proj-gallery__item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proj-gallery__item--reel::after {
  content: "▶";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(6,16,46,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  z-index: 2;
}

.photo-credit {
  margin-top: 10px;
  text-align: right;
  font-size: 0.72rem;
  color: var(--cool-gray);
}
.photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.photo-credit a:hover { color: var(--royal-blue); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .testimonials-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px 26px;
  box-shadow: 0 2px 12px rgba(10,46,204,0.06);
  display: flex;
  flex-direction: column;
  margin: 0;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: none;
}

.testimonial-card blockquote p {
  font-size: 0.97rem;
  line-height: 1.72;
  color: #2a3556;
  margin: 0;
}

.testimonial-card blockquote p + p {
  margin-top: 14px;
}

.testimonial-card__snippet::before {
  content: "\201C";
  font-size: 2.4rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--royal-blue);
  margin-right: 2px;
  font-family: Georgia, serif;
}

.testimonial-card__rest {
  display: none;
}

.testimonial-card__toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--royal-blue);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.testimonial-card__toggle:hover { color: var(--navy); }

.testimonial-card__attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--mist);
  font-size: 0.88rem;
}
.testimonial-card__attribution strong {
  color: var(--navy);
}
.testimonial-card__attribution strong a {
  color: inherit;
  text-decoration: none;
}
.testimonial-card__attribution strong a:hover {
  color: var(--royal-blue);
  text-decoration: underline;
}
.testimonial-card__attribution span {
  color: var(--cool-gray);
  font-size: 0.82rem;
}

/* ---------- 23c. Email newsletter mockup (Pine Tree Seafood) ---------- */
.email-mockup {
  max-width: 920px;
  margin: 36px auto 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--mist);
  overflow: hidden;
}

.email-mockup__bar {
  background: var(--cool-white);
  padding: 12px 18px;
  font-size: 0.78rem;
  color: var(--cool-gray);
  font-weight: 600;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-mockup__bar::before {
  content: "✉";
  font-size: 0.95rem;
  color: var(--royal-blue);
}

.email-mockup__image {
  max-height: 640px;
  overflow-y: scroll;
  background: #f4f4f4;
  padding: 0 32px;
  /* Fallback styles for when no image is present */
  display: block;
  color: var(--cool-gray);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.email-mockup__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services delivered checklist for portfolio detail */
.services-delivered {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 700px) { .services-delivered { grid-template-columns: repeat(2, 1fr); } }

.services-delivered__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.services-delivered__item h4 { font-size: 0.98rem; margin-bottom: 3px; }
.services-delivered__item p  { font-size: 0.88rem; color: #4a5878; }

/* ---------- 24. Utility classes (to keep HTML free of inline styles) ---------- */
.u-max-720 { max-width: 720px; }
.u-mt-14   { margin-top: 14px; }
.u-mt-16   { margin-top: 16px; }
.u-mt-36   { margin-top: 36px; }
.u-mb-22   { margin-bottom: 22px; }
.u-text-lg { font-size: 1.05rem; }
.u-text-muted { color: var(--cool-gray); font-weight: 600; }
.u-text-link  { color: var(--royal-blue); }
.u-eyebrow-amber { color: var(--amber); }
.u-hidden { display: none; }
.btn--block { width: 100%; justify-content: center; }
.u-text-center-hint { text-align: center; margin-top: 14px; }

/* small screen tweaks */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .hero { padding: 48px 0 64px; }
  .cta-banner { padding: 44px 24px; }
  .form-card { padding: 28px 22px; }
}
