

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: clamp(400px, 35vw, 600px);
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.03);
  will-change: transform;
}

/* Decorative corner */
.about-img::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 48px;
  height: 48px;
  border-top: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
  opacity: 0.4;
  pointer-events: none;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.about-detail strong {
  color: var(--white);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--dark);
  padding: clamp(100px, 12vw, 180px) clamp(24px, 4vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Large decorative circle */
.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 138, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  background: var(--accent);
  padding: 18px 40px;
  border: none;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn span {
  transition: transform 0.3s;
}

.btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(212, 184, 138, 0.2);
}

.btn:hover span { transform: translate(2px, -2px); }

/* Magnetic button */
.btn.magnetic {
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s ease-out;
}

.cta-email {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.cta-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px clamp(24px, 4vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
/* clear the fixed mobile 'Book your call' CTA so it never overlaps footer links */
@media (max-width: 900px) {
  .footer { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-links { display: flex; gap: 32px; }
.footer-links a {
  display: inline-block;
  padding: 8px 2px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.footer-nap {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-nap a {
  color: inherit;
  transition: color 0.3s;
}
.footer-nap a:hover { color: var(--white); }

/* ============================================
   HAMBURGER BUTTON
   ============================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================
   DRAWER NAV
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100vh;
  background: var(--dark);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px;
}
.drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.drawer-close:hover { opacity: 1; }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-link {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s, padding-left 0.3s;
  opacity: 0;
  transform: translateX(30px);
}
.drawer.open .drawer-link {
  opacity: 1;
  transform: translateX(0);
  transition: color 0.3s, padding-left 0.3s, opacity 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer.open .drawer-link:nth-child(1) { transition-delay: 0.1s; }
.drawer.open .drawer-link:nth-child(2) { transition-delay: 0.15s; }
.drawer.open .drawer-link:nth-child(3) { transition-delay: 0.2s; }
.drawer.open .drawer-link:nth-child(4) { transition-delay: 0.25s; }
.drawer.open .drawer-link:nth-child(5) { transition-delay: 0.3s; }

.drawer-link:hover {
  color: var(--white);
  padding-left: 12px;
}

.drawer-link--cta {
  color: var(--accent);
  margin-top: 16px;
  border-bottom: none;
}

.drawer-footer {
  display: flex;
  gap: 24px;
  margin-top: auto;
  padding-top: 48px;
}
.drawer-footer a {
  display: inline-block;
  padding: 11px 4px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.drawer-footer a:hover { color: var(--white); }

/* ============================================
   WORK TABS
   ============================================ */
.work-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: clamp(48px, 6vw, 80px);
  flex-wrap: wrap;
}

.work-tab {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.work-tab:hover {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
}
.work-tab.active {
  color: var(--black);
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   SERVICE ACCORDION
   ============================================ */
.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  color: var(--white);
  text-align: left;
  font-family: inherit;
  transition: all 0.3s;
}
.service-header:hover {
  padding-left: 8px;
}

.service-header h3 {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 500;
  flex: 1;
}

.service-toggle {
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.service-item.open .service-toggle {
  transform: rotate(45deg);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 0 0 52px;
  width: 100%;
}
.service-item.open .service-body {
  max-height: 800px;
  padding-bottom: 24px;
  overflow: visible;
}

.service-body p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.service-deliverables {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  position: relative;
  cursor: default;
}

/* ============================================
   TOOLTIPS
   ============================================ */
.service-tag[data-tooltip] {
  position: relative;
}
.service-tag[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  padding: 10px 14px;
  max-width: 260px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 50;
  border: 1px solid rgba(255,255,255,0.06);
}
.service-tag[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--charcoal);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 51;
}
.service-tag[data-tooltip]:hover::after,
.service-tag[data-tooltip]:focus::after,
.service-tag[data-tooltip]:focus-within::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.service-tag[data-tooltip]:hover::before,
.service-tag[data-tooltip]:focus::before,
.service-tag[data-tooltip]:focus-within::before {
  opacity: 1;
}

/* ============================================
   TIMELINE (APPROACH)
   ============================================ */
.timeline {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(212, 184, 138, 0.1));
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
  padding: clamp(48px, 5vw, 72px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-node {
  position: absolute;
  left: -40px;
  top: clamp(56px, 6vw, 80px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark-mid);
  transform: translateX(7px);
}

.timeline-content {
  position: relative;
}

.timeline-duration {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(212, 184, 138, 0.2);
}

.timeline-visual img {
  width: 100%;
  height: clamp(200px, 18vw, 280px);
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.1);
  opacity: 0.5;
  transition: opacity 0.5s, filter 0.5s;
}
.timeline-item:hover .timeline-visual img {
  opacity: 0.8;
  filter: grayscale(0.2) contrast(1.05);
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(80px, 10vw, 160px);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-bottom: clamp(80px, 10vw, 120px);
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  position: relative;
  padding: 0 clamp(24px, 4vw, 64px);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s;
  cursor: pointer;
  padding: 18px;
  background-clip: content-box;
  border: none;
}
.testimonial-dot.active {
  background: var(--accent);
  background-clip: content-box;
}

/* ============================================
   CTA FORM
   ============================================ */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: left;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-field {
  display: flex;
  flex-direction: column;
}

.cta-input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px; /* >=16px so iOS Safari doesn't zoom in on focus */
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.cta-input::placeholder {
  color: rgba(255,255,255,0.6);
}
.cta-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}

.cta-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cta-form .btn {
  width: 100%;
  justify-content: center;
  border: 1px solid var(--accent);
}

.cta-thankyou {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 32px;
  border: 1px solid rgba(212, 184, 138, 0.2);
  text-align: center;
}
.cta-thanks-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-thanks-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.cta-book-btn {
  display: inline-flex;
  margin-top: 24px;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.faq-inner { max-width: 860px; margin: 0 auto; padding: 96px clamp(24px, 4vw, 64px); }
.faq-header { margin-bottom: 56px; }
.faq-headline { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-top: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 24px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.9375rem; color: rgba(255,255,255,0.62); line-height: 1.8; }

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal.open .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.video-modal-close:hover { opacity: 1; }

.video-modal-player {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--black);
}

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

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  border: 1px solid rgba(212, 184, 138, 0.2);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 600;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast--error .toast-icon {
  color: #e05c5c;
}

.toast-icon {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}

.toast-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

/* ============================================
   SKELETON LOADER
   ============================================ */
.skeleton-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s 0.2s, visibility 0s 0.8s;
}
.skeleton-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.skeleton-inner {
  text-align: center;
}

.skeleton-logo {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}
.skeleton-logo span { color: var(--accent); }

.skeleton-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.06);
  margin: 0 auto 12px;
  position: relative;
  overflow: hidden;
}
.skeleton-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: skeletonShimmer 1.2s ease-in-out infinite;
}
.skeleton-bar--short { width: 100px; }

@keyframes skeletonShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].visible,
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .case-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .case-num {
    font-size: 4rem;
    margin-right: 0;
    margin-bottom: -16px;
  }
  .case--reverse .case-inner {
    grid-template-columns: 1fr;
  }
  .case--reverse .case-num { order: 0; margin-left: 0; }
  .case--reverse .case-info { order: 0; padding-right: 0; padding-left: 0; text-align: left; }
  .case--reverse .case-result { margin-left: 0; }
  .case--reverse .case-meta { align-items: flex-start; }
  .case--reverse .case-img { order: 0; }
  .case-info { padding-left: 0; }
  .case-link { opacity: 1; transform: none; }
  .case-pair { grid-template-columns: 1fr; }
  .case-small--offset { margin-top: 0; }
  .services-inner { grid-template-columns: 1fr; }
  .reel-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 24px; }
  .timeline-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img img { height: 360px; }
}

/* Tablet breakpoint */
@media (max-width: 768px) {
  .reel-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .reel-stat:last-child { grid-column: 1 / -1; }
  .case-num { font-size: 3rem; }
  .testimonial blockquote p { font-size: clamp(1.125rem, 4vw, 1.5rem); }
  .approach-heading { font-size: clamp(1.75rem, 5vw, 2.5rem); }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor { display: none; }
  a, button { cursor: auto; }

  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-burger { display: flex; }
  .hero-top { flex-direction: column; gap: 8px; }
  .hero-tag-right { display: none; }
  .hero-line { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-bottom { flex-direction: column; gap: 32px; align-items: flex-start; }
  .hero-scroll-indicator { display: none; }
  .logos-row { gap: 20px; }
  .logo-item img { height: 30px; max-width: 130px; }
  .reel-stats { grid-template-columns: 1fr; gap: 20px; }
  .reel-stat:last-child { grid-column: auto; }
  .cta-row { grid-template-columns: 1fr; }
  .timeline { padding-left: 32px; }
  .timeline-node { left: -32px; }
  .toast-text { white-space: normal; font-size: 0.8125rem; }
  .toast { width: calc(100% - 32px); padding: 14px 20px; }
}

/* ---- GIVING BACK ---- */
.giving { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.giving-inner { max-width: 1200px; margin: 0 auto; padding: 96px clamp(24px, 4vw, 64px); }
.giving-header { margin-bottom: 56px; }
.giving-headline { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-top: 24px; margin-bottom: 24px; }
.giving-sub { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 480px; margin-top: 0; line-height: 1.7; }
.giving-cards { display: grid; grid-template-columns: 1fr; max-width: 600px; gap: 2px; background: transparent; }
.giving-card { display: block; background: var(--dark); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; transition: background 0.3s, border-color 0.3s; }
.giving-card:hover { background: var(--dark-mid); border-color: rgba(255,255,255,0.16); }
.giving-card-inner { padding: 48px; height: 100%; display: flex; flex-direction: column; gap: 16px; }
.giving-tag { font-family: var(--mono); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.giving-name { font-family: var(--mono); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.03em; color: var(--white); }
.giving-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.62); line-height: 1.75; flex: 1; }
.giving-link { font-family: var(--mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); transition: color 0.3s; margin-top: auto; }
.giving-card:hover .giving-link { color: var(--accent); }
.giving-logo { height: 72px; width: auto; max-width: 280px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.3s; margin-bottom: 16px; }
.giving-logo--square { height: 72px; max-width: 280px; }
.giving-card:hover .giving-logo { opacity: 0.85; }

@media (max-width: 768px) {
  .giving-cards { display: flex !important; flex-direction: column !important; gap: 2px; background: transparent; }
  .giving-card { width: 100% !important; display: block !important; }
  .giving-card-inner { padding: 32px 24px; height: auto; }
}

/* ---- HONEYPOT (spam trap; hidden from humans + AT) ---- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }


/* ---- SUBPAGES (clear fixed nav; first section sits under it) ---- */
.subpage { padding-top: 84px; }
.subpage > section:first-child, .subpage > header:first-child { padding-top: 40px; }

/* ============================================
   NORTHSHORE LIVE DASHBOARD + AGENT FEED (product UI, green/teal)
   ============================================ */
.ns { --dg:#34d399; --dt:#2dd4bf; --da:#fbbf24; --dr:#f87171; --dp:#a78bfa; --dblue:#7dd3fc;
  --dbg:#0d1117; --dcard:#161b22; --dline:rgba(255,255,255,0.08); --dmut:rgba(255,255,255,0.42); --dtxt:rgba(255,255,255,0.72); }
@keyframes nspulse { 0%{box-shadow:0 0 0 0 rgba(52,211,153,.5)} 70%{box-shadow:0 0 0 7px rgba(52,211,153,0)} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0)} }
.ns-dot { width:7px; height:7px; border-radius:50%; background:var(--dg); display:inline-block; animation:nspulse 2.4s infinite; }
@media(prefers-reduced-motion:reduce){ .ns-dot{ animation:none; } }

/* --- Agent feed (CMO seat) --- */
.nsfeed { background:var(--dbg); border:1px solid rgba(255,255,255,0.1); border-radius:14px; overflow:hidden; box-shadow:0 30px 70px -40px rgba(0,0,0,0.8); }
.nsfeed-head { display:flex; justify-content:space-between; align-items:center; padding:15px 20px; border-bottom:1px solid var(--dline); }
.nsfeed-title { font-family:var(--mono); font-size:0.7rem; letter-spacing:0.06em; color:var(--dg); display:flex; align-items:center; gap:8px; }