@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:          #16181C;
  --bg-raised:   #1D2025;
  --bg-card:     #22262D;
  --ink:         #EDEAE2;
  --ink-dim:     #9A9EA5;
  --ink-dimmer:  #5C6068;
  --signal:      #FF5C1A;
  --signal-dark: #C44010;
  --line:        #2C3036;
  --nav-h:       64px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(22, 24, 28, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img { width: 36px; height: 36px; }
.nav-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.nav-brand-text span { color: var(--signal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink-dim);
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

/* invisible bridge fills the gap between trigger and menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  display: none;
}
.nav-dropdown:hover::after { display: block; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink-dim);
  transition: background 0.1s, color 0.1s;
}
.dropdown-menu a:hover {
  background: var(--bg-card);
  color: var(--ink);
}
.dropdown-menu a span {
  display: block;
  font-size: 10px;
  color: var(--ink-dimmer);
  margin-top: 1px;
  letter-spacing: 0.3px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
  padding: 1rem 2rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.6rem 0;
  font-size: 15px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.indent {
  padding-left: 1rem;
  font-size: 13px;
  color: var(--ink-dimmer);
}
.nav-mobile a:hover { color: var(--ink); }

/* ── LAYOUT ──────────────────────────────────── */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── WAVEFORM SVG ────────────────────────────── */
.waveform-bg {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  opacity: 0.14;
  pointer-events: none;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.03;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  color: var(--signal);
}
.hero-sub {
  margin-top: 1.25rem;
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 560px;
  line-height: 1.65;
}

/* ── SECTION LABELS ──────────────────────────── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.625rem;
}

/* ── SERVICES LIST ───────────────────────────── */
.services-section { padding: 4rem 0; }

.service-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.service-bullet {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-body strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin-bottom: 4px;
}
.service-body p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 640px;
}

.sublist {
  list-style: none;
  margin-top: 6px;
}
.sublist li {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
  margin-bottom: 3px;
}
.sublist li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--signal);
}

/* ── TESTIMONIAL ─────────────────────────────── */
.testimonial-section { padding: 3rem 0; }
.testimonial {
  border-left: 3px solid var(--signal);
  padding-left: 1.5rem;
}
.testimonial blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--signal);
  font-style: normal;
}

/* ── CTA / CONTACT STRIP ─────────────────────── */
.cta-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.cta-text {
  font-size: 15px;
  color: var(--ink-dim);
  margin-bottom: 0.25rem;
}
.cta-contact {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ── PAGE FOOTER CTA ─────────────────────────── */
.page-footer-cta {
  padding: 2rem 0 2rem;
  border-top: 1px solid var(--line);
}
.page-footer-cta p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--ink);
}
.page-footer-cta p span { color: var(--signal); }

/* ── AUDIENCE CARDS (HOME) ───────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}
.audience-card:hover {
  border-color: var(--signal);
  border-top-color: var(--signal);
  transform: translateY(-3px);
}
.card-icon {
  width: 34px;
  height: 34px;
  color: var(--signal);
  margin-bottom: 1rem;
}
.card-icon svg { width: 100%; height: 100%; }
.card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.75rem;
}
.audience-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.audience-card p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--signal);
}

/* ── ABOUT ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 30px 0 4rem;
  align-items: start;
}
.about-copy h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.about-copy p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dimmer);
  font-size: 13px;
}

/* ── GALLERY ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 4rem 0;
}
.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dimmer);
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ── CONTACT FORM ────────────────────────────── */
.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-detail a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.15s;
}
.contact-detail a:hover { color: var(--signal); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--signal);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9EA5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  background: var(--signal);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.btn:hover {
  background: var(--signal-dark);
  transform: translateY(-1px);
}
.form-note {
  margin-top: 0.75rem;
  font-size: 12px;
  color: var(--ink-dimmer);
}

/* ── SITE FOOTER ─────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  margin-top: 0;
}
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-brand span { color: var(--signal); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  color: var(--ink-dimmer);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  font-size: 11px;
  color: var(--ink-dimmer);
  width: 100%;
}


/* ── ROTATING TESTIMONIALS ───────────────────── */
.testimonials-section {
  padding: 60px 0 4rem;
  border-top: 1px solid var(--line);
}
.testimonial-carousel {
  position: relative;
  max-width: 100%;
}
.testimonial-track {
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  animation: fadeIn 0.4s ease;
}
.testimonial-slide.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-controls.hidden { display: none; }
.t-prev, .t-next {
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-dim);
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s, color 0.15s;
}
.t-prev:hover, .t-next:hover {
  border-color: var(--signal);
  color: var(--ink);
}
.t-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active {
  background: var(--signal);
  transform: scale(1.2);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .cards-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { padding: 4rem 0 3rem; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── UNIVERSAL 1REM OBJECT PADDING ───────────── */
section, .hero, .services-section, .testimonials-section,
.cards-grid, .about-grid, .contact-section, .gallery-grid,
.audience-card, .cta-strip, .site-footer, .page-footer-cta {
  padding: 1rem !important;
}

/* services section: no bottom padding after last item */
.services-section { padding-bottom: 0 !important; }
