/* ─────────────────────────────────────────
   Babbling Brook — style.css
   Pacific Northwest dark theme
   ───────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Darks — deep forest night */
  --forest-0:    #080F0B;
  --forest-1:    #0E1912;
  --forest-2:    #172318;
  --forest-3:    #1E2E20;

  /* Teal — Pacific water */
  --teal:        #4CB896;
  --teal-dim:    #3A9278;
  --teal-faint:  rgba(76, 184, 150, 0.14);
  --teal-border: rgba(76, 184, 150, 0.28);

  /* Amber — golden hour */
  --amber:       #D9904A;
  --amber-light: #E8A85E;

  /* Text */
  --cream:       #EDE8DF;
  --cream-dim:   rgba(237, 232, 223, 0.65);
  --cream-faint: rgba(237, 232, 223, 0.30);
  --muted:       #7A9080;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--forest-1);
  color: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--teal); transition: color 0.2s; }
a:hover { color: var(--teal-dim); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6, 12, 8, 0.88) 0%,
      rgba(6, 12, 8, 0.72) 30%,
      rgba(6, 12, 8, 0.78) 65%,
      rgba(6, 12, 8, 0.96) 100%
    );
}

/* ── Top bar ── */
.hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(to bottom, rgba(6,12,8,0.70), transparent);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero-topbar-yt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  text-decoration: none;
  border: 1px solid var(--cream-faint);
  padding: 6px 14px;
  border-radius: 20px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-topbar-yt:hover {
  color: var(--cream);
  border-color: var(--teal-border);
  background: var(--teal-faint);
}

/* ── Logo ── */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 40px 40px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* Dark radial backdrop so text is always readable over the photo */
  background: radial-gradient(ellipse 80% 90% at 50% 50%,
    rgba(6, 12, 8, 0.70) 0%,
    rgba(6, 12, 8, 0.40) 65%,
    transparent 100%
  );
  border-radius: 24px;
}

.logo-wrap {
  position: relative;   /* rings are positioned against this */
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.logo-circle {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(8, 15, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(76, 184, 150, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(76, 184, 150, 0.15),
    0 0 60px rgba(76, 184, 150, 0.28),
    0 0 120px rgba(76, 184, 150, 0.12),
    inset 0 0 30px rgba(0, 0, 0, 0.30);
}

.hero-logo {
  width: 172px;
  height: auto;
}

.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(76, 184, 150, 0.30);
  animation: breathe 7s ease-in-out infinite;
}

.logo-ring--1 {
  inset: -18px;
  border-color: rgba(76, 184, 150, 0.20);
  animation-delay: -1.5s;
}

.logo-ring--2 {
  inset: -36px;
  border-color: rgba(76, 184, 150, 0.11);
  animation-delay: -3.5s;
}

.logo-ring--3 {
  inset: -54px;
  border-color: rgba(76, 184, 150, 0.06);
  animation-delay: -5s;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.5; }
  50%       { transform: scale(1.04); opacity: 1; }
}

/* ── Hero text ── */
.hero-identity {
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.hero-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-lead {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(237, 232, 223, 0.90);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.br-desk { display: none; }
@media (min-width: 640px) { .br-desk { display: inline; } }

/* ── Hero buttons ── */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 380px;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--teal);
  color: var(--forest-0);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--teal-dim);
  color: var(--forest-0);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--cream-faint);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-hero-secondary:hover {
  color: var(--cream);
  border-color: var(--teal);
}

.hero-footnote {
  font-size: 11px;
  color: rgba(237, 232, 223, 0.35);
  letter-spacing: 0.04em;
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(76, 184, 150, 0.5), transparent);
  animation: scroll-pulse 2.6s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  60%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}


/* ═══════════════════════════════════════
   PROOF BAR
   ═══════════════════════════════════════ */

.proof-bar {
  background: var(--forest-0);
  border-bottom: 1px solid rgba(76, 184, 150, 0.12);
  padding: 14px 24px;
}

.proof-bar-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.proof-item svg { color: var(--teal); flex-shrink: 0; }

.proof-divider {
  color: rgba(76, 184, 150, 0.20);
  font-size: 12px;
}


/* ═══════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════ */

.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 44px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-label--light {
  color: rgba(76, 184, 150, 0.8);
}

.section h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--cream-dim);
}

.section p + p { margin-top: 16px; }

.section-intro {
  color: var(--muted);
  font-size: 15px;
}


/* ═══════════════════════════════════════
   FEATURED VIDEOS
   ═══════════════════════════════════════ */

.videos {
  background: var(--forest-1);
  border-top: 1px solid rgba(76, 184, 150, 0.10);
}

/* ── Featured video ── */
.video-featured {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--forest-0);
  border: 1px solid rgba(76, 184, 150, 0.25);
  box-shadow: 0 0 0 1px rgba(76, 184, 150, 0.08), 0 8px 40px rgba(0, 0, 0, 0.40);
  margin-bottom: 28px;
}

.video-featured iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Subscribe nudge ── */
.video-subscribe-nudge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(76, 184, 150, 0.07);
  border: 1px solid rgba(76, 184, 150, 0.18);
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 52px;
}

.video-subscribe-nudge p {
  font-size: 15px;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.5;
}

.video-subscribe-nudge .btn-hero-primary {
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
  padding: 13px 24px;
  font-size: 12px;
}

/* ── More videos label ── */
.video-more-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Secondary video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--forest-0);
  border: 1px solid rgba(76, 184, 150, 0.10);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.videos-cta {
  text-align: center;
}

.btn-teal {
  display: inline-block;
  padding: 13px 28px;
  background: var(--teal-faint);
  color: var(--teal);
  border: 1px solid var(--teal-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-teal:hover {
  background: var(--teal);
  color: var(--forest-0);
}


/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */

.about {
  background: var(--forest-2);
  border-top: 1px solid rgba(76, 184, 150, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 140px 140px 12px 12px;
  border: 1px solid rgba(76, 184, 150, 0.10);
}

.about-image-caption {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
}

.about-text {
  padding-top: 8px;
}

.about-text p { margin-bottom: 0; }

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 22px;
  color: var(--teal);
  border: 1px solid var(--teal-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--forest-0);
}


/* ═══════════════════════════════════════
   OFFERINGS
   ═══════════════════════════════════════ */

.offerings {
  background: var(--forest-1);
  border-top: 1px solid rgba(76, 184, 150, 0.08);
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.offerings-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px 12px 140px 140px;
  border: 1px solid rgba(76, 184, 150, 0.10);
}

.offerings-text { padding-top: 8px; }

.offering-list {
  list-style: none;
  margin-top: 8px;
}

.offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(76, 184, 150, 0.10);
}

.offering-list li:last-child {
  border-bottom: 1px solid rgba(76, 184, 150, 0.10);
}

.offering-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
}

.offering-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offering-list li strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}

.offering-list li span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}


/* ═══════════════════════════════════════
   YOUTUBE CTA — image background
   ═══════════════════════════════════════ */

.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(76, 184, 150, 0.08);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 15, 11, 0.93) 0%,
    rgba(8, 15, 11, 0.82) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta p {
  max-width: 420px;
  color: var(--cream-dim);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  background: var(--teal);
  color: var(--forest-0);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-primary:hover {
  background: var(--teal-dim);
  color: var(--forest-0);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 12px;
  color: rgba(237, 232, 223, 0.30) !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════
   EMAIL SIGNUP
   ═══════════════════════════════════════ */

.email-section {
  background: var(--forest-2);
  border-top: 1px solid rgba(76, 184, 150, 0.08);
}

.email-inner {
  max-width: 480px;
}

.email-section p {
  color: var(--muted);
  margin-bottom: 28px;
}

.email-form { width: 100%; }

.email-row {
  display: flex;
  background: var(--forest-0);
  border: 1px solid rgba(76, 184, 150, 0.20);
  border-radius: 6px;
  overflow: hidden;
}

.email-row input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--cream);
  background: transparent;
  border: none;
  outline: none;
  min-width: 0;
}

.email-row input[type="email"]::placeholder {
  color: rgba(122, 144, 128, 0.55);
}

.email-row input[type="email"]:focus {
  box-shadow: inset 0 0 0 1px rgba(76, 184, 150, 0.35);
}

.email-row button {
  padding: 15px 24px;
  background: var(--teal);
  color: var(--forest-0);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.email-row button:hover { background: var(--teal-dim); }

.form-confirm {
  margin-top: 16px;
  font-size: 14px;
  color: var(--teal);
  font-style: italic;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

footer {
  background: var(--forest-0);
  border-top: 1px solid rgba(76, 184, 150, 0.10);
  padding: 52px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.footer-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer-location {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-yt:hover { color: var(--teal); }

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-contact a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--teal); }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(122, 144, 128, 0.45);
  max-width: 460px;
  line-height: 1.8;
  margin-top: 8px;
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .about-grid,
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* flatten arches to standard radius on stacked layout */
  .about-image img,
  .offerings-image img {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  /* keep image above list on mobile for offerings */
  .offerings-image { order: -1; }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CTA: center everything when stacked */
  .cta-inner { text-align: center; }
  .cta p     { margin-left: auto; margin-right: auto; }
  .cta-actions {
    align-items: center;
    width: 100%;
  }
  .btn-cta-primary {
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  .section { padding: 60px 20px; }

  /* Topbar: hide YT pill, keep location */
  .hero-topbar { padding: 14px 20px; }
  .hero-topbar-yt { display: none; }

  /* Hero content: tighter padding, smaller radial shadow */
  .hero-content {
    padding: 32px 24px 28px;
    max-width: 100%;
    background: radial-gradient(ellipse 95% 95% at 50% 50%,
      rgba(6, 12, 8, 0.72) 0%,
      rgba(6, 12, 8, 0.40) 65%,
      transparent 100%
    );
  }

  /* Proof bar: hide dividers, wrap gracefully */
  .proof-divider { display: none; }
  .proof-bar-inner { gap: 8px 16px; }

  /* Hero footnote: too noisy at this size */
  .hero-footnote { display: none; }
}

/* ── Mobile (≤ 768px) continued ── */
@media (max-width: 768px) {
  .video-subscribe-nudge {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }

  .video-subscribe-nudge .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }

  .video-grid { grid-template-columns: 1fr; }
}

/* ── Large mobile (≤ 540px) ── */
@media (max-width: 540px) {
  .section { padding: 52px 20px; }

  /* Shrink logo ring cluster so outermost ring stays on-screen */
  .logo-wrap   { width: 220px; height: 220px; }
  .logo-circle { width: 168px; height: 168px; }
  .hero-logo   { width: 144px; }

  /* Compress outer rings so they don't clip viewport edge */
  .logo-ring--1 { inset: -12px; }
  .logo-ring--2 { inset: -24px; }
  .logo-ring--3 { inset: -36px; }

  /* Hero content: minimal padding */
  .hero-content {
    padding: 24px 20px 24px;
    border-radius: 16px;
  }

  .hero-actions {
    max-width: 100%;
    width: 100%;
  }

  /* Full-width primary button */
  .btn-hero-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 13px;
  }

  /* Email: stack vertically */
  .email-row {
    flex-direction: column;
    border-radius: 8px;
  }

  .email-row input[type="email"] {
    border-bottom: 1px solid rgba(76, 184, 150, 0.15);
    padding: 15px 18px;
  }

  .email-row button {
    padding: 14px;
    width: 100%;
  }

  .btn-cta-primary {
    padding: 16px 24px;
    font-size: 13px;
  }

  /* Tighten section headings */
  .section h2 { margin-bottom: 12px; }
}

/* ── Small mobile (≤ 390px — iPhone SE / standard) ── */
@media (max-width: 390px) {
  .logo-wrap   { width: 188px; height: 188px; }
  .logo-circle { width: 144px; height: 144px; }
  .hero-logo   { width: 124px; }

  .logo-ring--1 { inset: -10px; }
  .logo-ring--2 { inset: -20px; }
  .logo-ring--3 { inset: -30px; }

  .hero-title { letter-spacing: 0.01em; }

  .hero-lead { font-size: 15px; }

  .proof-item { font-size: 11px; }

  /* About/offerings: tighten gap further */
  .about-grid,
  .offerings-grid { gap: 24px; }
}

/* ── Wide desktop (≥ 1440px) ── */
@media (min-width: 1440px) {
  .section-inner { max-width: 820px; }

  /* Give images a bit more presence */
  .about-grid,
  .offerings-grid { gap: 72px; }
}
