@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #f4f7fb;
  --bg-alt:    #ffffff;
  --card:      #ffffff;
  --navy:      #0d1e35;
  --blue:      #2b6cb0;
  --blue-mid:  #4a90d9;
  --blue-pale: #ebf4ff;
  --blue-muted:rgba(43, 108, 176, 0.09);
  --text:      #0d1e35;
  --gray:      #64748b;
  --gray-light:#94a3b8;
  --border:    #dde5f2;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  padding: 13px 64px;
  box-shadow: 0 2px 24px rgba(13,30,53,0.07);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: scale-down;
  flex-shrink: 0;
  /* oversized on purpose — negative margin keeps the nav bar height unchanged */
  margin: -8px 0;
}


.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.22s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 140px 60px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(43,108,176,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(74,144,217,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-title .line-blue { color: var(--blue); }

.hero-sub {
  margin-top: 26px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.04em;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-logo-mark {
  width: clamp(80px, 14vw, 135px);
  margin-bottom: 24px;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards;
}
.hero-logo-mark img { width: 100%; display: block; }

.cta-logo-clip {
  width: 140px;
  height: 110px;
  overflow: hidden;
  margin: 0 auto 12px;
  position: relative;
}
.cta-logo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  opacity: 1;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.28s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1a4f8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,108,176,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ─── TICKER ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: 16px 0;
  white-space: nowrap;
}

.ticker-wrap .ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  padding: 0 32px;
}

.ticker-item.highlight { color: var(--blue-mid); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 64px;
}

.section-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--navy);
}

.section-sub {
  font-size: 0.92rem;
  color: var(--gray);
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.75;
}

/* ─── ABOUT SPLIT (home) ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}

.about-split .section-sub { max-width: 420px; margin-bottom: 32px; }

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--blue);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 3px;
}

.about-img-badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ─── WHAT WE SHOOT ─── */
#services {
  background: var(--bg);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--blue);
  transition: width 0.35s ease;
}

.service-card:hover::after { width: 100%; }
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43,108,176,0.1);
}

.service-icon {
  margin-bottom: 16px;
  display: block;
  color: var(--blue);
}
.service-icon svg {
  display: block;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── GIGS GRID ─── */
#gigs { background: var(--white); }

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.gigs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gig-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gig-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,30,53,0.12);
}

.gig-card:nth-child(1) { grid-column: span 7; }
.gig-card:nth-child(2) { grid-column: span 5; }
.gig-card:nth-child(3) { grid-column: span 4; }
.gig-card:nth-child(4) { grid-column: span 4; }
.gig-card:nth-child(5) { grid-column: span 4; }

.gig-img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.gig-card:nth-child(1) .gig-img { min-height: 280px; }

.gig-card:hover .gig-img {
  filter: brightness(0.55);
  transform: scale(1.04);
}

.gig-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(13,30,53,0.88) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s ease;
}

.gig-card:hover .gig-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gig-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 4px;
}

.gig-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* ─── STATS ─── */
#stats {
  padding: 70px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-block {
  background: var(--navy);
  padding: 48px 36px;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  word-break: break-word;
}

.stat-desc {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  line-height: 1.4;
}

/* ─── TESTIMONIALS (home teaser + full page) ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testi-card:hover {
  box-shadow: 0 10px 32px rgba(43,108,176,0.1);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.star {
  color: var(--blue-mid);
  font-size: 0.9rem;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  display: block;
}

.testi-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.testi-org {
  font-size: 0.72rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

/* Full testimonials page — featured card */
.testi-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--navy);
  border-radius: 4px;
  padding: 48px;
  margin-bottom: 60px;
  color: var(--white);
}

.testi-featured-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-mid);
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(43,108,176,0.18);
}

.testi-featured-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.testi-featured-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}

.testi-featured-org {
  font-size: 0.72rem;
  color: var(--blue-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testi-text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ─── FAQ ─── */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.22s;
}

.faq-item.open .faq-question h3 { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--gray);
}

.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 26px;
  padding-right: 44px;
}

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 150px 64px 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(43,108,176,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── TEAM ─── */
#team { background: var(--bg); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(43,108,176,0.12);
}

.team-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%) brightness(0.96);
  transition: filter 0.4s ease;
}

.team-card:hover .team-photo { filter: grayscale(0%) brightness(1); }

.team-info { padding: 26px 28px 30px; }

.team-role {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.855rem;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 22px;
}

.team-socials { display: flex; gap: 10px; flex-wrap: wrap; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--gray);
  transition: all 0.22s ease;
}

.social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.social-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ─── INTERESTED ─── */
.interested-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.interested-info { position: sticky; top: 110px; }

.contact-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  background: var(--blue-pale);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-text { font-size: 0.855rem; color: var(--gray); }
.contact-text strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 2px;
}
.contact-text a { color: inherit; text-decoration: none; transition: color 0.22s; }
.contact-text a:hover { color: var(--blue); }

/* ─── FORM ─── */
.interest-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,108,176,0.1);
}

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }
.form-group select option { background: var(--white); color: var(--text); }

.form-success {
  display: none;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue);
  border-radius: 3px;
  padding: 18px 22px;
  color: var(--blue);
  font-size: 0.855rem;
  line-height: 1.6;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--navy);
  padding: 90px 64px;
  text-align: center;
}

.cta-banner .section-title { color: var(--white); margin-bottom: 14px; }
.cta-banner .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 36px; }

/* ─── FOOTER ─── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 52px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: .1;
}

.footer-logo-img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  flex-shrink: 0;
}


.footer-tagline {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.footer-right { text-align: right; }

.footer-links {
  display: flex;
  gap: 26px;
  justify-content: flex-end;
  list-style: none;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.22s;
}

.footer-links a:hover { color: var(--blue); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--border);
  letter-spacing: 0.06em;
}

/* ─── CAROUSEL ─── */
.carousel-outer {
  position: relative;
  padding: 0 52px;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 0 12px;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 340px;
  height: 440px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,30,53,0.12);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.carousel-card:hover img {
  filter: brightness(0.55);
  transform: scale(1.04);
}

.carousel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  background: linear-gradient(to top, rgba(13,30,53,0.9) 0%, transparent 70%);
  opacity: 1;
  transform: none;
  transition: background 0.35s ease;
}

.carousel-card:hover .carousel-overlay {
  background: linear-gradient(to top, rgba(13,30,53,0.97) 0%, rgba(13,30,53,0.15) 100%);
}

.carousel-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 4px;
}

.carousel-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  width: 42px;
  height: 58px;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
  line-height: 1;
  padding: 0;
}

.carousel-btn:hover { background: var(--blue); border-color: var(--blue); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 600px) {
  .carousel-outer { padding: 0 36px; }
  .carousel-card  { flex: 0 0 240px; height: 320px; }
  .carousel-btn   { width: 30px; height: 44px; font-size: 1.3rem; }
  .hero-logo-mark { width: clamp(64px, 18vw, 100px); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  section, .cta-banner { padding: 72px 24px; }
  .page-header { padding: 120px 24px 56px; }
  #stats { padding: 56px 24px; }
  footer { padding: 40px 24px; }

  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { bottom: 16px; left: 16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .gigs-grid { grid-template-columns: 1fr 1fr; }
  .gig-card:nth-child(n) { grid-column: span 2; }
  .gig-card:nth-child(2),
  .gig-card:nth-child(3) { grid-column: span 1; }

  #stats { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .stat-block { padding: 36px 20px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testi-text-grid { grid-template-columns: 1fr; }
  .testi-featured { grid-template-columns: 1fr; text-align: center; justify-items: center; }

  .team-grid { grid-template-columns: 1fr; max-width: 440px; }

  .interested-wrap { grid-template-columns: 1fr; gap: 40px; }
  .interested-info { position: static; }
  .form-row { grid-template-columns: 1fr; }

  footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-links { justify-content: flex-start; }

  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  /* span full width on the home gigs grid, but NOT on the work page albums grid */
  .gigs-grid:not(#albums-grid) .dyn-card { grid-column: span 2 !important; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ─── DYNAMIC PAGES: LOADER ─── */
.loader {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── DYNAMIC PAGES: EMPTY / ERROR STATE ─── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ─── DYNAMIC PAGES: BACK LINK ─── */
.back-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 22px;
  transition: opacity 0.2s;
}

.back-link:hover { opacity: 0.7; }

/* ─── DYNAMIC PAGES: DYNAMIC CARD GRID ─── */
.dyn-card { cursor: pointer; }

/* ─── EVENT PAGE: PHOTO GRID ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  background: var(--bg);
}

.photo-item.landscape {
  grid-column: span 2;
}

.photo-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--bg);
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.photo-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.photo-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-hover { opacity: 1; }

.photo-hover span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
  border-radius: 2px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.97);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  width: 48px;
  height: 64px;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.lightbox-counter {
  position: absolute;
  bottom: 22px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 480px) {
  /* Stats: 2 cols are too tight on very small phones — keep 2 but reduce font further */
  .stat-num { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .stat-block { padding: 28px 12px; }
  .stat-desc { font-size: 0.6rem; letter-spacing: 0.1em; }
}

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(18px);
    padding: 72px 32px 36px;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.28s ease;
    z-index: 99;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(13,30,53,0.12);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 15px 0; font-size: 0.95rem; letter-spacing: 0.08em; }
  .nav-links a::after { display: none; }
  .hero-title { font-size: 3.2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  #stats { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-photo { height: 280px; }
}

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  transform: translateY(6px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 4px;
  list-style: none;
  padding: 6px 0;
  min-width: 195px;
  box-shadow: 0 8px 32px rgba(13,30,53,0.1);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease 0.4s, transform 0.22s ease 0.4s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.22s, background 0.22s;
  white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    min-width: auto;
    padding: 0;
    margin: 0;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease;
    /* force text to pre-paint before animation */
    will-change: max-height;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* defeat desktop :hover/:focus-within that applies translateX(-50%),
     which shifts the static-positioned dropdown off-screen on mobile */
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    pointer-events: none;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    max-height: 400px;
    pointer-events: auto;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .nav-dropdown-menu li {
    border-bottom: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 13px 0 13px 28px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--gray);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-dropdown-menu a:active,
  .nav-dropdown-menu a.active {
    color: var(--blue);
  }

  .nav-dropdown-menu a::after {
    display: none;
  }

  .nav-dropdown.dropdown-open > a svg {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
  }
}

/* ─── PHOTO TICKER ─── */
.ticker-wrapper { overflow: hidden; width: 100%; }
.ticker-wrapper .ticker-track { display: flex; gap: 16px; width: max-content; animation: ticker-scroll 45s linear infinite; will-change: transform; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-wrapper .ticker-track img { height: 360px; width: 360px; object-fit: cover; border-radius: 4px; flex-shrink: 0; display: block; }
.ticker-wrapper .ticker-track:hover { animation-play-state: paused; }

/* ─── NAV CTA BUTTON ─── */
.nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 3px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover {
  background: #1a4f8a;
  color: var(--white);
}

/* Anchored offer cards must clear the fixed nav */
#offers, #websites, #branding-kits, #launch-kits, #content, #proof, #mockups {
  scroll-margin-top: 96px;
}

/* ─── SPLIT HERO (split layout) ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
  padding: 150px 64px 90px;
  min-height: auto;
}

.hero-split .hero-eyebrow { letter-spacing: 0.22em; }

.hero-split .hero-title {
  font-size: clamp(3rem, 6.2vw, 5.8rem);
}

.hero-split .hero-sub { margin-top: 22px; max-width: 460px; }

.hero-split .hero-cta {
  margin-top: 34px;
  justify-content: flex-start;
}

.hero-micro {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

/* ─── BEFORE / AFTER SLIDER ─── */
.ba-slider {
  --ba-pos: 56%;
  position: relative;
  aspect-ratio: 19 / 10;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy);
  box-shadow: 0 24px 64px rgba(13,30,53,0.16);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.ba-before {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  margin-left: -1px;
  background: var(--white);
  box-shadow: 0 0 14px rgba(13,30,53,0.4);
  pointer-events: none;
}

.ba-divider::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,30,53,0.35);
}

.ba-divider::before {
  content: '\2039\a0\a0\203A';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -56%);
  z-index: 1;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.ba-range:focus-visible ~ .ba-divider::after {
  box-shadow: 0 0 0 3px var(--blue-mid), 0 2px 12px rgba(13,30,53,0.35);
}

.ba-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  pointer-events: none;
}

.ba-label-before {
  left: 14px;
  background: rgba(13,30,53,0.78);
  color: rgba(255,255,255,0.85);
}

.ba-label-after {
  right: 14px;
  background: var(--blue);
  color: var(--white);
}

.ba-caption {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--gray-light);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ─── POSITIONING STRIP ─── */
.positioning {
  background: var(--navy);
  text-align: center;
  padding: 84px 64px;
}

.positioning-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--white);
}

.positioning-title span { color: var(--blue-mid); }

.positioning-sub {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ─── OFFER LADDER ─── */
#offers { background: var(--bg); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--blue);
  transition: width 0.35s ease;
}

.offer-card:hover::after { width: 100%; }
.offer-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43,108,176,0.1);
}

.offer-num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.offer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 10px;
}

.offer-hook {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
}

.offer-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 22px;
}

.offer-link {
  margin-top: auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
}

.offer-link:hover { opacity: 0.7; }

/* ─── FLAGSHIP CALLOUT ─── */
.flagship {
  margin-top: 18px;
  background: var(--navy);
  border-radius: 4px;
  padding: 54px 56px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.flagship::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 110% at 88% 0%, rgba(74,144,217,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.flagship-copy, .flagship-action { position: relative; }

.flagship-chip {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-mid);
  border: 1px solid rgba(74,144,217,0.45);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.flagship-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}

.flagship-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
}

.flagship-micro {
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  max-width: 260px;
}

/* ─── PROOF / CASE-STUDY TEASER ─── */
#proof { background: var(--white); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,30,53,0.12);
  border-color: var(--blue);
}

.proof-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.proof-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.proof-card:hover .proof-media > img { transform: scale(1.03); }

.proof-before {
  position: absolute;
  left: 14px; bottom: 14px;
  width: 34%;
  border: 2px solid var(--white);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(13,30,53,0.35);
}

.proof-before img { width: 100%; display: block; }

.proof-before em {
  position: absolute;
  top: 6px; left: 6px;
  font-style: normal;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 3px 7px;
  border-radius: 2px;
}

.proof-chip {
  position: absolute;
  left: 14px; bottom: 14px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(13,30,53,0.82);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 3px;
}

.proof-info { padding: 22px 26px 26px; }

.proof-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.proof-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}

.proof-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── BRANDING MOCKUP STRIP ─── */
#mockups { background: var(--bg); }

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mockup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.mockup-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.mockup-card figcaption {
  padding: 12px 16px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  border-top: 1px solid var(--border);
}

.mockup-note {
  margin-top: 18px;
  font-size: 0.72rem;
  color: var(--gray-light);
  letter-spacing: 0.03em;
  text-align: center;
}

.mockup-cta {
  text-align: center;
  margin-top: 28px;
}

/* ─── OFFER PAGES (shared template) ─── */

/* Truth-in-labeling flags */
.proof-flag {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.tag-live {
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(43,108,176,0.3);
}

.tag-concept {
  background: #eef1f6;
  color: var(--gray);
  border: 1px solid var(--border);
}

/* Offer-page hero CTA row (page-header context: no entrance animation) */
.offer-cta-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.offer-micro {
  margin-top: 12px;
  font-size: 0.74rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

/* What you get */
.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.include-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 26px;
}

.include-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}

.include-item p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 26px;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(43,108,176,0.22);
  margin-bottom: 10px;
}

.step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Featured case block (websites page) */
.case-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 48px;
}

.case-feature-info .proof-name { font-size: 1.9rem; }

/* Ad showcase (launch-kits page) */
.ad-group { margin-bottom: 64px; }
.ad-group:last-child { margin-bottom: 0; }

.ad-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.ad-group-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.ad-group-sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 6px 0 22px;
  line-height: 1.65;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.ad-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,30,53,0.12);
  border-color: var(--blue);
}

.ad-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ad-card.ad-story img { aspect-ratio: 9 / 16; }

.ad-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}

.ad-chip {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 2px;
}

/* Content-page category covers */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.cover-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.cover-card:hover img {
  filter: brightness(0.6);
  transform: scale(1.04);
}

.ad-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Stacked links inside offer cards (deep link + audit link) */
.offer-link + .offer-link { margin-top: 10px; }

/* ─── SPLIT-HERO RESPONSIVE ─── */
@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-grid { grid-template-columns: repeat(2, 1fr); }
  .ad-grid { grid-template-columns: repeat(3, 1fr); }
  .cover-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 130px 24px 70px;
  }
  .positioning { padding: 70px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .flagship {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 28px;
  }
  .include-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .case-feature { grid-template-columns: 1fr; gap: 28px; }
  .ad-grid, .ad-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .offers-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .nav-links a.nav-cta {
    display: block;
    text-align: center;
    margin-top: 18px;
    padding: 14px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TIER SYSTEM + CASE STUDIES
   Shared vocabulary for /websites (value ladder) and /work/* pages.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tier badges (extend .proof-flag) ── */
.tag-premium {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.tag-prototype {
  background: #f4f7fb;
  color: var(--gray-light);
  border: 1px solid var(--border);
}

/* ── Hero proof strip (logos + "drag to compare" teaser) ── */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  flex-wrap: wrap;
  padding: 26px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.proof-strip .ps-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.proof-strip .ps-clients {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  align-items: center;
}
.proof-strip .ps-client {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.72;
}
.proof-strip .ps-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
}

/* ── Three-up before/after row ── */
.ba-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ba-trio .ba-figure { margin: 0; }
.ba-trio .ba-slider {
  aspect-ratio: 16 / 10;
  box-shadow: 0 14px 40px rgba(13,30,53,0.12);
}
.ba-trio figcaption {
  margin-top: 14px;
}
.ba-figure .baf-flag { margin-bottom: 8px; }
.ba-figure .baf-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.05;
}
.ba-figure .baf-tag {
  font-size: 0.68rem;
  color: var(--gray);
  margin-top: 3px;
}
.ba-figure .baf-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ba-figure .baf-link:hover { opacity: 0.65; }

/* ── Tier ladder cards (clickable → case study) ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,30,53,0.14);
  border-color: var(--blue);
}
.tier-card--flag { border-color: var(--navy); }
.tier-card--flag:hover { border-color: var(--blue); }

.tier-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}
.tier-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.tier-card:hover .tier-media img { transform: scale(1.04); }
.tier-rank {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(13,30,53,0.82);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.tier-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier-kind {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.tier-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.tier-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.78rem;
  color: var(--navy);
  line-height: 1.4;
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.tier-list li.muted { color: var(--gray-light); }
.tier-list li.muted::before { border-color: var(--gray-light); }
.tier-cta {
  margin-top: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.tier-card:hover .tier-cta { text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════════
   CASE-STUDY PAGE  (/work/titan · hissy-chick · eot)
   Per-page accent: set --cs-accent / --cs-accent-ink on .cs-page.
   Defaults to Banter blue so it is safe if unset.
   ═══════════════════════════════════════════════════════════════ */
.cs-page { --cs-accent: var(--blue); --cs-accent-ink: #ffffff; }

/* Case-study hero */
.cs-header {
  padding: 132px 64px 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cs-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 82% 30%, rgba(43,108,176,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cs-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.cs-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cs-logo-chip img {
  height: 40px; width: auto;
  object-fit: contain;
  display: block;
}
.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: 0.04em;
  line-height: 0.98;
  color: var(--navy);
  margin: 6px 0 14px;
}
.cs-lede {
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 26px;
}
.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
}
.cs-meta-item span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.cs-meta-item strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-weight: 400;
}
.cs-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Section header inside a case study */
.cs-block-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.cs-block-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.cs-block-head p.section-sub { max-width: 640px; }

/* The brief (problem → approach) */
.cs-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-brief-col h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 10px;
}
.cs-brief-col .cs-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cs-accent);
  margin-bottom: 10px;
}
.cs-brief-col p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.72;
}

/* ── Asset-package / design-system specimens ── */
.spec-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-accent);
  margin-bottom: 12px;
}
.spec-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.spec-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.spec-card__head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.spec-card__head span {
  font-size: 0.72rem;
  color: var(--gray);
}
.spec-card__body { padding: 26px 24px; }
.spec-card__body.pad-lg { padding: 34px 32px; }

/* Swatches */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.swatch {
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--white);
}
.swatch-chip {
  height: 84px;
  display: block;
}
.swatch-info {
  padding: 10px 12px;
}
.swatch-info b {
  display: block;
  font-size: 0.74rem;
  color: var(--navy);
  font-weight: 600;
}
.swatch-info code {
  font-size: 0.68rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Logo lockup board (light / dark panels) */
.logo-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.logo-panel {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--border);
  padding: 24px;
}
.logo-panel img { max-width: 62%; max-height: 66%; object-fit: contain; display: block; }
.logo-panel.on-light { background: var(--white); }
.logo-panel.on-cream { background: #faf9f6; }
.logo-panel.on-dark { background: var(--navy); border-color: var(--navy); }

/* Type specimen */
.type-specimen { line-height: 1; }
.type-specimen .ts-display {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.02;
  margin-bottom: 10px;
}
.type-specimen .ts-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.4;
}
.type-specimen .ts-note {
  font-size: 0.72rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}
.type-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.type-row:first-child { border-top: none; }
.type-row .tr-label { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--gray-light); white-space: nowrap; }

/* Component preview swatch pads (chips/buttons/eyebrows) */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.demo-chip {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}

/* Asset gallery caption note */
.asset-note {
  font-size: 0.74rem;
  color: var(--gray-light);
  letter-spacing: 0.03em;
  margin-top: 18px;
}

/* Case-study results / metrics band */
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.cs-metric {
  background: var(--navy);
  padding: 40px 28px;
  text-align: center;
}
.cs-metric b {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.cs-metric span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.4;
}

/* Deliverables checklist (asset package contents) */
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 26px;
  margin: 0;
  padding: 0;
}
.deliverables li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  font-size: 0.86rem;
  color: var(--navy);
  line-height: 1.5;
}
.deliverables li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--cs-accent);
  border-bottom: 2.5px solid var(--cs-accent);
  transform: rotate(-45deg);
}
.deliverables li small { display: block; color: var(--gray); font-size: 0.72rem; }

/* Prev/next case-study nav */
.cs-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  margin-top: 8px;
}
.cs-pager a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.cs-pager a:hover { color: var(--blue); }

/* ── Case-study + tier responsive ── */
@media (max-width: 1024px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cs-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ba-trio { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cs-header { padding: 116px 24px 52px; }
  .cs-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .cs-brief { grid-template-columns: 1fr; gap: 26px; }
  .logo-board { grid-template-columns: 1fr; }
  .deliverables { grid-template-columns: 1fr; }
  .proof-strip { padding: 22px 24px; }
}
@media (max-width: 600px) {
  .cs-metrics { grid-template-columns: 1fr 1fr; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════ PRICING PAGE ═══════════════ */
.pricing-header {
  background: var(--white);
  text-align: center;
  padding: 150px 64px 68px;
  position: relative;
  overflow: hidden;
}
.pricing-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43,108,176,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.pricing-header > * { position: relative; }
.pricing-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 0.94;
  color: var(--navy);
}
.pricing-header h1 .bl { color: var(--blue); }
.pricing-note {
  margin: 22px auto 0;
  max-width: 500px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Section wrapper — tighter than default section to keep a long menu calm */
.price-sec { padding: 62px 64px; }
.price-sec--alt { background: var(--bg); }
.price-sec-head { text-align: center; margin-bottom: 40px; }
.price-sec-head .k {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.price-sec-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.05em; color: var(--navy); line-height: 1;
}
.price-sec-head p { margin: 10px auto 0; max-width: 440px; font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* Core tier cards */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1080px; margin: 0 auto; align-items: stretch;
}
.pkg-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 34px 30px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(13,30,53,0.10); border-color: var(--blue); }
.pkg-card--pop { border-color: var(--blue); box-shadow: 0 10px 34px rgba(43,108,176,0.16); }
.pkg-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; white-space: nowrap;
}
.pkg-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 6px; }
.pkg-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; letter-spacing: 0.02em; color: var(--blue); line-height: 1; }
.pkg-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin: 14px 0 16px; }
.pkg-list { list-style: none; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.pkg-list li { position: relative; padding-left: 22px; font-size: 0.8rem; color: var(--navy); line-height: 1.45; }
.pkg-list li::before {
  content: ''; position: absolute; left: 2px; top: 4px; width: 11px; height: 6px;
  border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg);
}
.pkg-best { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.76rem; color: var(--gray); line-height: 1.5; }
.pkg-best b { color: var(--navy); }

/* Specialty builds */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
.spec-card {
  background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--blue-mid);
  border-radius: 4px; padding: 22px 24px;
}
.spec-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.spec-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.spec-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--blue); letter-spacing: 0.02em; white-space: nowrap; }
.spec-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }
.spec-tag { color: var(--blue-mid); font-weight: 700; }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
.addon-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px;
  padding: 24px 22px; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.addon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(13,30,53,0.09); border-color: var(--blue); }
.addon-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 3px; }
.addon-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--blue); letter-spacing: 0.03em; margin-bottom: 10px; }
.addon-desc { font-size: 0.76rem; color: var(--gray); line-height: 1.55; margin-bottom: 14px; }
.addon-link { margin-top: auto; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }

/* Maintenance band */
.maint-band {
  max-width: 1080px; margin: 0 auto; background: var(--blue-pale); border: 1px solid var(--border);
  border-radius: 6px; padding: 26px 34px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.maint-band .mk { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.maint-band .mv { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--navy); letter-spacing: 0.04em; }
.maint-plans { font-size: 0.95rem; color: var(--navy); }
.maint-plans b { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--blue); letter-spacing: 0.02em; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.pstep { text-align: center; padding: 8px; }
.pstep .n { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--blue-mid); letter-spacing: 0.05em; margin-bottom: 6px; }
.pstep .t { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.pstep .d { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }

/* Bundle save chip (inside .flagship) */
.flagship-save { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--blue-mid); letter-spacing: 0.03em; white-space: nowrap; }

@media (max-width: 1024px) {
  .pkg-grid, .spec-grid, .addon-grid { grid-template-columns: repeat(2, 1fr); max-width: 660px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
}
@media (max-width: 900px) {
  .price-sec { padding: 52px 24px; }
}
@media (max-width: 600px) {
  .pkg-grid, .spec-grid, .addon-grid, .process-steps { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-header { padding: 122px 24px 50px; }
  .price-sec { padding: 44px 20px; }
  .maint-band { flex-direction: column; text-align: center; }
}

/* Price hook line on offer pages */
.price-hook { margin-top: 16px; font-size: 0.8rem; color: var(--gray); letter-spacing: 0.02em; }
.price-hook b { color: var(--navy); font-weight: 700; }
.price-hook a { color: var(--blue); font-weight: 600; text-decoration: none; }
.price-hook a:hover { text-decoration: underline; }

/* ═══════════════ CALM MEDIA PASS ═══════════════
   Scaled-down presentation for case-study screenshots + bilingual ad sets. */
.cs-shot { position: relative; max-width: 720px; margin: 0 auto; }
.cs-shot .shot-main {
  width: 100%; display: block; border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 34px rgba(13,30,53,0.10);
}
.cs-shot .shot-phone {
  position: absolute; right: 18px; bottom: 18px;
  width: 16%; min-width: 92px; display: block;
  border-radius: 12px; border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(13,30,53,0.22);
}
.cs-shot-caption {
  text-align: center; margin-top: 14px;
  font-size: 0.72rem; color: var(--gray-light); letter-spacing: 0.02em;
}
.cs-shot-caption a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cs-shot-caption a:hover { text-decoration: underline; }

/* Cap ad walls so squares stay card-sized, not billboard-sized */
.ad-grid { max-width: 880px; }

/* EN/ES toggle for bilingual ad sets (JS in script.js; cards carry .lang-en / .lang-es) */
.lang-toggle {
  display: inline-flex; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; background: var(--white);
}
.lt-btn {
  font-family: 'Inter', sans-serif; font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 18px; background: var(--white); color: var(--gray);
  border: none; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.lt-btn + .lt-btn { border-left: 1px solid var(--border); }
.lt-btn.active { background: var(--blue); color: var(--white); }
.ad-card.lang-hidden { display: none; }
