/* ============================================================
   VORTEX EG — Inner Pages Styles
   (About, Team, Projects, Clients, Contact)
   ============================================================ */

/* ═══════════════════════════
   ABOUT PAGE
═══════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-story-text .lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.about-story-text p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.95;
  margin-bottom: 1.2rem;
}

.about-img-stack {
  position: relative;
  padding-bottom: 3rem;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 4px solid var(--dark);
}

/* Vision/Mission */
.vision-mission {
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.vision-mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.vm-card {
  position: relative;
  padding: 3rem;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  transition: border-color var(--trans-med);
}
.vm-card:hover { border-color: rgba(201,168,76,0.25); }
.vm-card-num {
  font-family: var(--font-impact);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201,168,76,0.07);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  letter-spacing: 0.02em;
}
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.vm-card p { font-size: 0.95rem; color: var(--silver); line-height: 1.9; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2.5rem 2rem;
  background: var(--dark);
  border: 1px solid var(--dark-3);
  transition: border-color var(--trans-med), transform var(--trans-med) var(--ease-out);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.value-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.value-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.value-card p { font-size: 0.85rem; color: var(--light-mid); line-height: 1.8; }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 4rem;
  align-items: center;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content-left { padding-right: 3rem; text-align: right; }
.timeline-content-right { padding-left: 3rem; }
.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.timeline-year {
  font-family: var(--font-impact);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.timeline-content-left .timeline-year,
.timeline-content-right .timeline-year { }
.timeline-event {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.timeline-desc { font-size: 0.85rem; color: var(--light-mid); line-height: 1.7; }

/* Services Detail */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-detail-card {
  padding: 3rem;
  background: var(--dark);
  border: 1px solid var(--dark-3);
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans-med);
}
.service-detail-card:hover { border-color: rgba(201,168,76,0.3); }
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans-med);
}
.service-detail-card:hover::before { opacity: 1; }

.service-detail-num {
  font-family: var(--font-impact);
  font-size: 4rem;
  color: rgba(201,168,76,0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.service-detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.service-detail-card p { font-size: 0.9rem; color: var(--silver); line-height: 1.85; }
.service-detail-list { margin-top: 1.2rem; }
.service-detail-list li {
  font-size: 0.85rem;
  color: var(--light-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--dark-3);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.service-detail-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════
   TEAM PAGE
═══════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.team-card {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  overflow: hidden;
  transition: border-color var(--trans-med), transform var(--trans-slow) var(--ease-out);
}
.team-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
}
.team-card-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.9s var(--ease-out), filter 0.9s;
}
.team-card:hover .team-card-photo img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.team-card:hover .team-photo-placeholder,
.team-leader:hover .team-photo-placeholder {
  transform: scale(1.04);
}
.team-card-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(100%);
  transition: transform var(--trans-med) var(--ease-out);
}
.team-card:hover .team-card-social,
.team-leader:hover .team-card-social { transform: none; }
.team-card-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: background var(--trans-fast), border-color var(--trans-fast);
}
.team-card-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.team-card-social svg { width: 15px; height: 15px; fill: currentColor; }

.team-card-info { padding: 1.8rem; }
.team-card-role {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.team-card-bio { font-size: 0.9rem; color: var(--silver); line-height: 1.85; }

/* Featured leader card */
.leadership-grid {
  grid-template-columns: repeat(2, 1fr);
}
.team-leader {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  align-items: stretch;
  gap: 0;
}
.team-leader .team-card-photo {
  background: var(--black);
  overflow: hidden;
  position: relative;
  align-self: stretch;
}
.team-leader .team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 42%, rgba(201,168,76,0.16), transparent 34%),
    linear-gradient(135deg,#101010,#2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s var(--ease-out);
}
.team-photo-placeholder span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  color: rgba(201,168,76,.18);
  letter-spacing: 0.08em;
}
.team-leader-text {
  padding: 3.5rem;
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.team-leader-text .team-card-role { font-size: 0.68rem; }
.team-leader-text .team-card-name { font-size: clamp(2rem, 4vw, 3rem); }
.team-leader-text p { font-size: 1rem; color: var(--silver); line-height: 1.95; }

/* ═══════════════════════════
   PROJECTS PAGE
═══════════════════════════ */
.projects-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--dark-3);
  color: var(--light-mid);
  background: transparent;
  cursor: none;
  transition: border-color var(--trans-fast), color var(--trans-fast), background var(--trans-fast);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.filter-btn.active { background: rgba(201,168,76,0.1); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.project-item.hidden { opacity: 0; transform: scale(0.94); pointer-events: none; height: 0; overflow: hidden; }
.project-item.entering { animation: project-enter 0.5s var(--ease-out) both; }
@keyframes project-enter {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Featured project (full-width) */
.project-featured {
  grid-column: 1 / -1;
}
.project-featured .project-card-thumb {
  aspect-ratio: 21 / 9;
}
.project-featured .project-card-title { font-size: 2.5rem; }

/* ═══════════════════════════
   CLIENTS PAGE
═══════════════════════════ */
.clients-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.clients-intro-text p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.95;
  margin-bottom: 1rem;
}

.clients-category { margin-bottom: 5rem; }
.clients-category-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.clients-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dark-3);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--dark-3);
}
.logo-cell {
  background: var(--dark);
  aspect-ratio: 3 / 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: background var(--trans-fast);
  position: relative;
  overflow: hidden;
}
.logo-cell:hover { background: var(--dark-2); }
.logo-cell-inner {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--mid);
  text-align: center;
  transition: color var(--trans-fast);
  letter-spacing: 0.05em;
}
.logo-cell:hover .logo-cell-inner { color: var(--silver); }

/* Infinite logo ticker */
.logo-ticker {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
  padding: 2rem 0;
}
.logo-ticker-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: ticker-scroll 25s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-ticker-track:hover { animation-play-state: paused; }
.ticker-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--trans-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-logo:hover { color: var(--silver); }

/* Testimonials */
.testimonials { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.testimonial-card {
  padding: 2.8rem;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  position: relative;
  transition: border-color var(--trans-med);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.25); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}
.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--light-mid);
}

/* ═══════════════════════════
   CONTACT PAGE
═══════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  display: block;
}

.contact-info-items { margin: 2.5rem 0; }
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--dark-3);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--dark-3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.contact-info-body strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 0.3rem;
}
.contact-info-body span, .contact-info-body a {
  font-size: 0.95rem;
  color: var(--silver);
  transition: color var(--trans-fast);
}
.contact-info-body a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  padding: 3.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group { position: relative; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 0.6rem;
  transition: color var(--trans-fast);
}
.form-group:focus-within .form-label { color: var(--gold); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color var(--trans-fast), background var(--trans-fast);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  background: var(--dark-3);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--mid); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select option { background: var(--dark-2); }

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  transition: background var(--trans-fast), transform var(--trans-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit:active { transform: scale(0.98); }
.form-submit.loading { pointer-events: none; }
.form-submit .btn-text { transition: opacity var(--trans-fast); }
.form-submit.loading .btn-text { opacity: 0; }
.form-submit-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.form-submit.loading .form-submit-loader { opacity: 1; }
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10,10,10,0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.form-success.visible { display: block; }

.form-error-msg {
  font-size: 0.75rem;
  color: #e05a5a;
  margin-top: 0.4rem;
  display: none;
}
.form-group.error .form-input,
.form-group.error .form-textarea { border-color: #e05a5a; }
.form-group.error .form-error-msg { display: block; }

/* Map */
.map-section {
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(10,10,10,0.6), rgba(10,10,10,0.6)),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.map-pin {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
}
.map-pin::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map-address {
  transform: none;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--silver);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-img-stack { max-width: 500px; }
  .reel-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .team-leader { grid-template-columns: 1fr 1.5fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--dark-3); }
  .stat-item:nth-child(2n) { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { border-right: 1px solid var(--dark-3); }
  .service-item:nth-child(2n) { border-right: none; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .about-teaser-grid { grid-template-columns: 1fr; }
  .about-teaser-visual { max-width: 400px; }
  .vision-mission-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
  .clients-intro-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex: 0 0 calc(50% - 0.75rem); }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 36px 1fr; }
  .timeline-content-left {
    display: none;
  }
  .timeline-content-right { padding-left: 1.5rem; }
}

@media (max-width: 640px) {
  :root { --gutter: 1.2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .team-leader { grid-template-columns: 1fr; }
  .team-leader .team-card-photo { min-height: 380px; }
  .team-leader-text { border-left: 1px solid var(--dark-3); border-top: none; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--dark-3); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: 1; }
  .project-featured .project-card-thumb { aspect-ratio: 16 / 9; }
  .carousel-slide { flex: 0 0 calc(100%); }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-logo { width: min(220px, 70vw); }
  .about-img-accent { display: none; }
}

/* ═══════════════════════════
   MUSIC — Shared Styles
═══════════════════════════ */

/* Waveform accent used alongside section labels on About/Projects */
.label-waveform {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 14px;
  color: var(--gold);
  opacity: 0.4;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.label-waveform b {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: currentColor;
  animation: wf-pulse 1.5s ease-in-out infinite alternate;
}
.label-waveform b:nth-child(1) { height: 4px;  animation-delay: 0s;   }
.label-waveform b:nth-child(2) { height: 9px;  animation-delay: .12s; }
.label-waveform b:nth-child(3) { height: 14px; animation-delay: .24s; }
.label-waveform b:nth-child(4) { height: 7px;  animation-delay: .18s; }
.label-waveform b:nth-child(5) { height: 11px; animation-delay: .06s; }

/* Service detail card — music accent colour on top bar */
.service-detail-card.music-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.service-detail-card.music-card .service-detail-num {
  color: rgba(232, 201, 109, 0.07);
}

/* Music project card visual (used in projects grid) */
.proj-music-visual {
  aspect-ratio: 2 / 3;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1205 55%, #111 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.proj-music-vinyl {
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #222 22%, transparent 22%),
    repeating-radial-gradient(circle at 50% 50%,
      #181818 0px, #222 2px, #181818 4px, #222 6px,
      #181818 8px, #222 10px, #181818 12px
    );
  border: 1px solid rgba(201,168,76,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  animation: vinyl-spin 14s linear infinite;
  animation-play-state: paused;
  position: relative;
}
.project-item:hover .proj-music-vinyl { animation-play-state: running; }
.proj-music-vinyl::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(201,168,76,0.15);
}

.proj-music-waveform {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0;
  transition: opacity 0.35s;
}
.project-item:hover .proj-music-waveform { opacity: 1; }
.proj-music-waveform b {
  display: block;
  width: 2px;
  background: rgba(201,168,76,0.55);
  border-radius: 1px;
  animation: wf-pulse 1.3s ease-in-out infinite alternate;
}
.proj-music-waveform b:nth-child(1)  { height: 6px;  animation-delay: 0s;    }
.proj-music-waveform b:nth-child(2)  { height: 14px; animation-delay: .10s;  }
.proj-music-waveform b:nth-child(3)  { height: 22px; animation-delay: .20s;  }
.proj-music-waveform b:nth-child(4)  { height: 10px; animation-delay: .15s;  }
.proj-music-waveform b:nth-child(5)  { height: 18px; animation-delay: .05s;  }
.proj-music-waveform b:nth-child(6)  { height: 26px; animation-delay: .28s;  }
.proj-music-waveform b:nth-child(7)  { height: 12px; animation-delay: .08s;  }
.proj-music-waveform b:nth-child(8)  { height: 20px; animation-delay: .18s;  }

/* Music upcoming card accent */
.upcoming-card.music-upcoming::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,201,109,0.35), transparent);
}
