/* ==========================================================================
   Portfolio Grégoire Baur — site styles
   Layered on top of colors_and_type.css
   ========================================================================== */

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); overflow-x: hidden; }

/* WhatsApp green for the dot accent on contact links */
:root {
  --wa-green: #25D366;
}

/* ==========================================================================
   HEADER — floating pill nav (right-aligned, with avatar)
   ========================================================================== */
.gb-header {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: flex-end;
  padding: 0 32px;
  pointer-events: none;
}
.gb-header-inner {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
}
.gb-header-brand {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 12px 4px 4px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--fg);
}
.gb-header-brand img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--line);
}
.gb-header-nav { display: flex; gap: 4px; align-items: center; padding: 0 4px; }
.gb-header-nav a {
  font-size: 14px; color: var(--fg-2); padding: 8px 14px; border-radius: 999px;
  transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.gb-header-nav a:hover { color: var(--fg); background: rgba(0,0,0,0.04); opacity: 1; }
.gb-header-cta {
  background: var(--fg); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.gb-header-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.gb-header-cta .dot { background: var(--wa-green); width: 7px; height: 7px; margin: 0; }

@media (max-width: 720px) {
  .gb-header { top: 12px; padding: 0 12px; }
  .gb-header-nav { display: none; }
  .gb-header-brand { padding: 4px 8px 4px 4px; font-size: 14px; }
  .gb-header-brand img { width: 28px; height: 28px; }
  .gb-header-cta { padding: 8px 14px; font-size: 13px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.gb-hero {
  position: relative;
  padding: 96px 32px 64px;
  max-width: var(--w-wide); margin: 0 auto;
}
.gb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  min-height: 70vh;
}
.gb-hero-copy { padding-top: 80px; max-width: 640px; }
.gb-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg-2); letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.gb-hero-eyebrow .dot { width: 7px; height: 7px; background: var(--brand-green-deep); margin: 0; }

.gb-hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 0.98;
  margin: 0 0 32px;
  text-wrap: balance;
}
.gb-hero-title .green {
  color: var(--brand-green-deep);
  /* slightly brighter pale green, but still readable */
}
.gb-hero-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5; color: var(--fg-2); max-width: 520px;
  margin: 0 0 40px;
}
.gb-hero-lead strong { color: var(--fg); font-weight: 500; }

.gb-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* big black pill with avatar — primary CTA */
.gb-cta-call {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 24px 6px 6px;
  background: var(--fg); color: #fff;
  border-radius: 999px;
  font-size: 16px; font-weight: 500;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.gb-cta-call img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.gb-cta-call:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(10,10,10,0.18); }

.gb-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-size: 15px; font-weight: 500;
  transition: background var(--dur-base) var(--ease-out);
}
.gb-cta-secondary:hover { background: var(--bg-soft); opacity: 1; }

/* HERO portrait — partial reveal behind the title block */
.gb-hero-portrait {
  position: relative;
  height: 100%;
  min-height: 520px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  /* on desktop the wrapper has plenty of room — no clipping needed.
     The video's own mask handles the soft edges. */
}
.gb-hero-portrait-img,
.gb-hero-portrait-video {
  position: absolute;
  top: 0;
  left: -10%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center 22%;
  border-radius: 0;
  display: block;
  background: transparent;
  filter: saturate(0.95);
  /* +25% scale per request — symmetrical from center so it grows up/down/sideways equally */
  scale: 1.25;
  transform-origin: center center;
  /* dual mask (intersect) — radial softens the rectangle's overall edges, linear melts
     the very bottom into the page background so the cut isn't sharp */
  -webkit-mask-image:
    radial-gradient(ellipse 70% 78% at center 48%, #000 38%, transparent 82%),
    linear-gradient(to bottom, #000 0%, #000 96%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    radial-gradient(ellipse 70% 78% at center 48%, #000 38%, transparent 82%),
    linear-gradient(to bottom, #000 0%, #000 96%, transparent 100%);
          mask-composite: intersect;
}

/* small projects label that anchors the right column */
.gb-hero-side-label {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg-2);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.gb-hero-side-label .dot { background: var(--brand-green-deep); margin: 0; width: 7px; height: 7px; }

@media (max-width: 880px) {
  .gb-hero { padding: 72px 20px 32px; }
  .gb-hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .gb-hero-copy { padding-top: 0; order: 2; text-align: center; max-width: none; }
  .gb-hero-copy .gb-hero-title { text-wrap: balance; }
  .gb-hero-copy .gb-hero-lead { margin-left: auto; margin-right: auto; }
  .gb-hero-ctas { justify-content: center; }
  .gb-hero-portrait {
    order: 1; min-height: 460px; height: 460px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 96%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 96%, transparent 100%);
  }
  .gb-hero-portrait-img,
  .gb-hero-portrait-video {
    position: absolute; left: 0; top: 0; width: 100%; height: 100%;
    object-position: center 25%;
  }
}

/* ==========================================================================
   VIDEO SHOWCASE — 4 staggered project cards
   ========================================================================== */
.gb-showcase {
  padding: 24px 32px 16px;
  max-width: var(--w-wide); margin: 0 auto;
  position: relative;
  isolation: isolate;
}
/* big soft green halo behind the WHOLE showcase (heading + cards) — sits below all text */
.gb-showcase::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: min(1100px, 96vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--brand-green) 0%, var(--brand-green-soft) 40%, transparent 70%);
  opacity: 0.78;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  border-radius: 58% 42% 55% 45% / 48% 52% 48% 52%;
  animation: gbHaloMorph 18s ease-in-out infinite, gbHaloDrift 22s ease-in-out infinite;
  transform-origin: center;
}
/* Tighten the showcase → services gap specifically */
.gb-showcase + .gb-section { padding-top: 56px; }
.gb-showcase-head {
  display: flex; align-items: last baseline; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.gb-showcase-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  margin: 0;
}
.gb-showcase-head p {
  font-size: 16px; color: var(--fg-2); max-width: 360px; margin: 0;
  line-height: 1.4;
}

.gb-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: center;
  gap: 20px;
}
@keyframes gbHaloMorph {
  0%, 100% { border-radius: 58% 42% 55% 45% / 48% 52% 48% 52%; }
  25%      { border-radius: 42% 58% 38% 62% / 60% 40% 60% 40%; }
  50%      { border-radius: 50% 50% 60% 40% / 55% 45% 55% 45%; }
  75%      { border-radius: 65% 35% 50% 50% / 40% 60% 35% 65%; }
}
@keyframes gbHaloDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  33%      { transform: translate(-48%, -52%) scale(1.06) rotate(8deg); }
  66%      { transform: translate(-52%, -48%) scale(0.97) rotate(-6deg); }
}
.gb-project {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-slow) var(--ease-out);
}
/* Chain BOTH animations: one-time reveal (transform property) + continuous float (translate property).
   Higher specificity than .gb-reveal so this wins the cascade. */
.gb-project.gb-reveal {
  animation: gbReveal 600ms var(--ease-out) forwards, gbFloat 7s ease-in-out infinite;
}
.gb-project.gb-reveal:nth-child(1) { animation-delay: 80ms, 0s; }
.gb-project.gb-reveal:nth-child(2) { animation-delay: 160ms, -1.7s; }
.gb-project.gb-reveal:nth-child(3) { animation-delay: 240ms, -3.4s; }
.gb-project.gb-reveal:nth-child(4) { animation-delay: 320ms, -5.1s; }
.gb-project:hover {
  box-shadow: 0 24px 48px rgba(10,10,10,0.18);
}
/* gbFloat uses `translate` + `rotate` (CSS properties), independent of gbReveal's `transform` —
   so both animations stack visually instead of overriding each other. */
@keyframes gbFloat {
  0%, 100% { translate: 0 0;     rotate: 0deg; }
  25%      { translate: 4px -8px; rotate: 0.4deg; }
  50%      { translate: 0 -14px;  rotate: -0.3deg; }
  75%      { translate: -4px -6px; rotate: 0.2deg; }
}
@media (prefers-reduced-motion: reduce) {
  .gb-project.gb-reveal { animation: gbReveal 600ms var(--ease-out) forwards; }
}

.gb-project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
/* horizontal — own row below the 3 verticals, same dimensions as a vertical card just rotated
   (a vertical at 240w × ~427h has the same surface as a 16:9 card at ~427w × 240h).
   Explicit width + align-self: start so the grid auto-row doesn't collapse the aspect-ratio. */
.gb-project.gb-project--horizontal {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  width: calc(240px * 16 / 9);
  max-width: 100%;
  justify-self: center;
  align-self: start;
}

/* one-click mute toggle, top-right corner of every video card */
.gb-project-mute {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  pointer-events: auto;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.gb-project-mute:hover {
  background: rgba(0, 0, 0, 0.78);
  transform: scale(1.06);
}
.gb-project-mute:active { transform: scale(0.96); }
.gb-project-mute svg { display: block; }

/* tag/title pinned to the TOP so the native video controls bar at the bottom stays clear */
.gb-project-overlay {
  position: absolute; inset: 0 0 auto 0;
  padding: 12px 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  display: flex; align-items: start; justify-content: space-between;
  gap: 12px;
  pointer-events: none;
  z-index: 2;
  transition: opacity var(--dur-base) var(--ease-out);
}
.gb-project:hover .gb-project-overlay { opacity: 0; }
.gb-project-overlay .pl-title {
  font-size: 13px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.3;
}
.gb-project-overlay .pl-tag {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .gb-projects { grid-template-columns: repeat(2, minmax(0, 240px)); gap: 16px; }
  .gb-project.gb-project--horizontal { grid-column: 1 / -1; width: calc(240px * 16 / 9); max-width: 100%; }
}
@media (max-width: 600px) {
  .gb-showcase { padding: 16px 16px 12px; }
  .gb-showcase + .gb-section { padding-top: 40px; }
  .gb-projects {
    grid-template-columns: repeat(2, minmax(0, 160px));
    justify-content: center;
    gap: 14px;
  }
  /* video 3 alone on its row, centered */
  .gb-project:nth-child(3) {
    grid-column: 1 / -1;
    width: 160px;
    justify-self: center;
    align-self: start;
  }
  .gb-project.gb-project--horizontal {
    grid-column: 1 / -1;
    width: calc(160px * 16 / 9);
    max-width: 92%;
    justify-self: center;
    align-self: start;
  }
}

/* ==========================================================================
   SECTIONS — generic
   ========================================================================== */
.gb-section { padding: 96px 32px; max-width: var(--w-wide); margin: 0 auto; }
.gb-section--soft-wrap { background: var(--bg-soft); }
.gb-section--soft-wrap .gb-section { padding-top: 96px; padding-bottom: 96px; }

.gb-section-head {
  margin-bottom: 56px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: last baseline;
}
.gb-section-eyebrow {
  font-size: 13px; color: var(--fg-3); letter-spacing: 0.06em;
  text-transform: uppercase; margin: 0;
  display: inline-flex; align-items: center; gap: 10px;
}
.gb-section-eyebrow .dot { background: var(--brand-green-deep); width: 7px; height: 7px; margin: 0; }

.gb-section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0; max-width: 720px;
}
.gb-section-head .gb-section-aside {
  font-size: 16px; color: var(--fg-2); max-width: 320px; margin: 0;
  text-align: right;
}

@media (max-width: 720px) {
  .gb-section { padding: 64px 20px; }
  .gb-section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .gb-section-head .gb-section-aside { text-align: left; }
}

/* ==========================================================================
   SERVICES — 4 horizontal rows
   ========================================================================== */
.gb-services {
  display: grid; gap: 0;
  border-top: 1px solid var(--fg);
}
.gb-service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding var(--dur-base) var(--ease-out);
}
.gb-service-row:hover {
  padding-left: 12px;
}
.gb-service-num {
  font-size: 14px; color: var(--fg-3); letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.gb-service-name {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.gb-service-name .t-italic-serif { font-weight: 400; }
.gb-service-desc {
  font-size: 16px; color: var(--fg-2); line-height: 1.5;
  margin: 0; max-width: 480px;
}
.gb-service-tag {
  font-size: 13px; color: var(--fg-2); letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 999px;
  background: rgb(240, 240, 240);
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-flex; align-items: center;
  line-height: 1;
  width: auto;
  min-width: max-content;
}
.gb-service-tag--green {
  background: var(--brand-green); border-color: transparent; color: var(--fg);
  font-weight: 500;
}
.gb-service-tag--white {
  background: #ffffff; border-color: var(--line-strong); color: var(--fg);
}

@media (max-width: 880px) {
  .gb-service-row {
    grid-template-columns: 40px 1fr;
    gap: 8px 16px;
    padding: 24px 0;
  }
  .gb-service-row:hover { padding-left: 0; }
  .gb-service-desc {
    grid-column: 2;
    margin-top: 8px;
  }
  .gb-service-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

/* ==========================================================================
   ABOUT — photo + paragraph
   ========================================================================== */
.gb-about {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.gb-about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-2);
  /* same gentle float as the project cards */
  animation: gbFloat 7s ease-in-out infinite;
  animation-delay: -2.2s;
}
@media (prefers-reduced-motion: reduce) {
  .gb-about-photo { animation: none; }
}
.gb-about-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gb-about-photo-caption {
  position: absolute; left: 16px; bottom: 16px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  font-size: 12px; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.gb-about-photo-caption .dot { width: 6px; height: 6px; margin: 0; background: var(--brand-green-deep); }

.gb-about-copy { padding-top: 0; }
.gb-about-copy h3 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 0 28px; max-width: 600px;
  text-wrap: balance;
}
.gb-about-copy h3 .t-italic-serif { font-weight: 400; }
.gb-about-copy p {
  font-size: 19px; color: var(--fg-2); line-height: 1.65;
  margin: 0 0 18px; max-width: 580px;
}
.gb-about-copy p strong { color: var(--fg); font-weight: 500; }

.gb-about-stats {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.gb-about-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.gb-about-stat-num {
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1;
}
.gb-about-stat-label {
  font-size: 13px; color: var(--fg-3); letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .gb-about { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
  .gb-about-photo { max-width: 320px; width: 100%; }
  .gb-about-copy { padding-top: 0; max-width: 600px; }
}

/* ==========================================================================
   PRICING — single transparent block, WhatsApp CTA
   ========================================================================== */
.gb-pricing-wrap {
  background: var(--bg-inverse);
  color: var(--fg-on-inverse);
  border-radius: 32px;
  margin: 0 32px 96px;
  padding: 80px 64px;
  max-width: calc(var(--w-wide) - 64px);
  margin-left: auto; margin-right: auto;
  position: relative;
  overflow: hidden;
}
.gb-pricing-wrap::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: var(--brand-green); opacity: 0.18;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.gb-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.gb-pricing-eyebrow {
  font-size: 13px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.gb-pricing-eyebrow .dot { background: var(--brand-green); width: 7px; height: 7px; margin: 0; }

.gb-pricing-grid h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 24px;
  color: #fff;
  text-wrap: balance;
}
.gb-pricing-grid h2 .green { color: var(--brand-green); }
.gb-pricing-grid h2 .t-italic-serif { font-weight: 400; }

.gb-pricing-grid p {
  font-size: 17px; color: var(--fg-on-inverse-2); line-height: 1.6;
  margin: 0 0 20px; max-width: 480px;
}

.gb-pricing-side {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
}
.gb-pricing-side-label {
  font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 16px;
}
.gb-pricing-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.gb-pricing-list li {
  display: flex; align-items: start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.4;
}
.gb-pricing-list li .dot {
  background: var(--brand-green); width: 7px; height: 7px; margin: 8px 0 0; flex: none;
}

.gb-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px 14px 14px;
  background: var(--wa-green); color: #fff;
  border-radius: 999px;
  font-size: 16px; font-weight: 500;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.gb-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(37,211,102,0.3); opacity: 1; }
.gb-whatsapp-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; color: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
}

.gb-email-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 16px;
  color: rgba(255,255,255,0.75); font-size: 15px;
}
.gb-email-link:hover { color: #fff; opacity: 1; }

@media (max-width: 880px) {
  .gb-pricing-wrap { padding: 48px 28px; margin: 0 16px 64px; border-radius: 24px; }
  .gb-pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .gb-email-link { margin-left: 0; margin-top: 12px; display: flex; }
}

/* ==========================================================================
   FOOTER — minimal
   ========================================================================== */
.gb-footer {
  border-top: 1px solid var(--line);
  padding: 40px 32px;
  max-width: var(--w-wide); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--fg-3);
}
.gb-footer .gb-wordmark {
  font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--fg);
}
.gb-footer-nav { display: flex; gap: 24px; }
.gb-footer-nav a { color: var(--fg-2); }
.gb-footer-nav a:hover { color: var(--fg); opacity: 1; }

@media (max-width: 720px) {
  .gb-footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Reveal on entry — light fade+rise (one-time on load)
   ========================================================================== */
.gb-reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: gbReveal 600ms var(--ease-out) forwards;
}
.gb-reveal.delay-1 { animation-delay: 80ms; }
.gb-reveal.delay-2 { animation-delay: 160ms; }
.gb-reveal.delay-3 { animation-delay: 240ms; }
.gb-reveal.delay-4 { animation-delay: 320ms; }

@keyframes gbReveal {
  to { opacity: 1; transform: translateY(0); }
}

