@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap");

/* ────────────────────────────────────────
   PRELOADER
──────────────────────────────────────── */
.jh-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080c10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.4s ease 0.1s,
    visibility 0.4s ease 0.1s;
}
.jh-preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.jh-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.jh-preloader-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  animation:
    jhLogoIn 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
    jhLogoPulse 2s ease-in-out 0.65s infinite;
}
.jh-preloader-logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(13, 148, 136, 0.2));
}
.jh-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.28em;
  color: #e8e0d4;
  line-height: 1.2;
  display: block;
  margin-bottom: 28px;
  opacity: 0;
  animation: jhFadeUp 0.45s ease 0.7s forwards;
}
.jh-logo-text em {
  font-style: normal;
  color: #0d9488;
  font-size: 12px;
  letter-spacing: 0.4em;
  display: block;
  margin-top: 3px;
}
.jh-preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(13, 148, 136, 0.18);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  animation: jhFadeUp 0.45s ease 0.8s forwards;
}
.jh-preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
  background-size: 200% 100%;
  animation: jhBarFill 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}
@keyframes jhLogoIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes jhLogoPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.02);
  }
}
@keyframes jhFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes jhBarFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ────────────────────────────────────────
   RESET
──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────── */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #14b8a6;
  --teal-dim: rgba(13, 148, 136, 0.15);
  --teal-ring: rgba(13, 148, 136, 0.45);

  --orange: #f97316;
  --orange-light: #faab72;

  --bg: #080c10;
  --bg2: #0d1117;
  --bg3: #111820;
  --surface: #141c26;
  --surface2: #192232;

  --text: #f5efe6;
  --text-sub: #cfc6b8;
  --text-muted: #8f98a6;
  --text-light: #b7bec9;

  --border: rgba(13, 148, 136, 0.13);
  --border-faint: rgba(255, 255, 255, 0.05);

  --nav-h: 80px;
  --radius: 0px;
  --max-w: 1200px;
  --max-wide: 1440px;
}

/* ────────────────────────────────────────
   BASE
──────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 52px;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    border-color 0.45s ease;
}

#mainNav.scrolled {
  background: rgba(8, 12, 16, 0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-logo__text {
  display: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-family: "DM Sans", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.28s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* CTA pill */
.nav-cta {
  padding: 8px 22px !important;
  border: 1px solid var(--teal) !important;
  border-radius: 4px;
  color: var(--teal) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  transition:
    background 0.28s ease,
    color 0.28s ease !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--teal) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1;
}
.mobile-nav a:hover {
  color: var(--teal);
}

.mobile-close {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 22px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  line-height: 1;
  padding: 4px;
}

/* ════════════════════════════════════════
   LAYOUT HELPERS
   ════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 52px;
}
.container-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 52px;
}
.container-ultra {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 52px;
}

section {
  padding: 120px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 22px;
}
.section-title strong {
  font-weight: 600;
  color: var(--orange);
}

.btn-primary {
  display: inline-block;
  padding: 13px 38px;
  background: var(--teal);
  border-radius: 4px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.28s ease,
    transform 0.22s ease;
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid rgba(232, 224, 212, 0.3);
  border-radius: 4px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.28s,
    color 0.28s,
    transform 0.22s;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-teal-outline {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  color: var(--teal);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.28s,
    color 0.28s,
    transform 0.22s;
}
.btn-teal-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-block;
  padding: 14px 42px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.28s;
}
.btn-dark:hover {
  background: #111;
}

.divider {
  width: 54px;
  height: 2px;
  background: var(--teal);
  margin: 24px 0;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  line-height: 1;
  color: var(--teal);
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ───────────────────────────────
       HOMEPAGE
    ─────────────────────────────── */
/* ───────────────────────────────
       HERO
    ─────────────────────────────── */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(44px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 12, 16, 0.72) 0%,
      rgba(8, 12, 16, 0.3) 50%,
      rgba(8, 12, 16, 0.72) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 12, 16, 0.55) 0%,
      rgba(8, 12, 16, 0) 40%,
      rgba(8, 12, 16, 0) 60%,
      rgba(8, 12, 16, 0.75) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  animation: heroReveal 1.6s ease 0.4s forwards;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--teal);
  opacity: 0.65;
}

.hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(64px, 11vw, 144px);
  line-height: 0.88;
  letter-spacing: 0.025em;
  color: #ffffff;
}

.hero__title em {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.5em;
  color: var(--orange);
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-top: 12px;
}

.hero__sub {
  font-weight: 300;
  font-size: 15px;
  color: rgba(232, 224, 212, 0.65);
  max-width: 480px;
  margin: 26px auto 40px;
  line-height: 1.78;
}

.hero__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────────────────────────────
       ABOUT TEASER
    ─────────────────────────────── */
.about-teaser {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--teal);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.about-img-badge__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}
.about-img-badge__lbl {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 44px;
  margin: 36px 0 42px;
}

/* ───────────────────────────────
   SERVICES PREVIEW 
─────────────────────────────── */

.services-preview {
  background: var(--bg);
  padding: 100px 0;
}

/* LAYOUT */
.services-wrap {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 64px;
  align-items: start;
}

/* LEFT */
.services-intro {
  position: sticky;
  top: 120px;
}

.services-text {
  margin: 20px 0 30px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.service-card {
  position: relative;
  background: var(--bg2);
  border-radius: 4px;
  padding: 42px 32px;
  overflow: hidden;
  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

/* TOP ACCENT LINE */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* HOVER */
.service-card:hover {
  background: var(--surface);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* NUMBER */
.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--border-faint);
  letter-spacing: 0.04em;
  transition: color 0.4s ease;
}

.service-card:hover .service-num {
  color: var(--teal-dim);
}

/* TITLE */
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

/* DESCRIPTION */
.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */

/* TABLET */
@media (max-width: 992px) {
  .services-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-intro {
    position: relative;
    top: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 36px 26px;
  }

  .service-num {
    font-size: 48px;
  }
}
/* ───────────────────────────────
       PORTFOLIO STRIP
    ─────────────────────────────── */
.portfolio-strip {
  background: var(--bg2);
}

.pf-slider-wrap {
  position: relative;
  margin-top: 56px;
}

.pf-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.pf-track::-webkit-scrollbar {
  display: none;
}
.pf-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.pf-item {
  flex: 0 0 calc((100% - 28px) / 3);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: grab;
}

.pf-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--surface), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.62s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-item:hover .pf-thumb {
  transform: scale(1.06);
}

.pf-ph {
  font-size: 52px;
  opacity: 0.18;
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 12, 16, 0.92) 0%,
    transparent 56%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.38s ease;
}
.pf-item:hover .pf-overlay {
  opacity: 1;
}

.pf-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.pf-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.pf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  opacity: 0.88;
}
.pf-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  opacity: 1;
}
.pf-arrow--prev {
  left: 8px;
}
.pf-arrow--next {
  right: 8px;
}
.pf-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* ───────────────────────────────
       RESPONSIVE 
    ─────────────────────────────── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .pf-item {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}

@media (max-width: 600px) {
  .pf-item {
    flex: 0 0 82%;
  }
  .pf-arrow {
    width: 36px;
    height: 36px;
  }
  .pf-arrow svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 768px) {
  .hero__btns {
    flex-direction: column;
    align-items: center;
  }
  .about-stats {
    gap: 28px;
    flex-wrap: wrap;
  }
  .pf-arrow--prev {
    left: 2px;
  }
  .pf-arrow--next {
    right: 2px;
  }
}

/* ───────────────────────────────
   CLIENTS STRIP
─────────────────────────────── */
.clients-strip {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-strip .section-label {
  justify-content: center;
  text-align: center;
}

.clients-strip .section-title {
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}

.client-logo {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.client-logo:hover {
  border-color: var(--teal);
}

.client-logo img {
  width: 100%;
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1);
  opacity: 0.7;
  transition:
    filter 0.35s ease,
    opacity 0.35s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.client-logo:nth-child(5n + 1) {
  border-left: none;
}

.client-logo:nth-child(5n) {
  border-right: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .client-logo:nth-child(5n + 1) {
    border-left: 1px solid var(--border);
  }
  .client-logo:nth-child(5n) {
    border-right: 1px solid var(--border);
  }
  .client-logo:nth-child(3n + 1) {
    border-left: none;
  }
  .client-logo:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-logo {
    padding: 28px 24px;
  }
  .client-logo:nth-child(3n + 1) {
    border-left: 1px solid var(--border);
  }
  .client-logo:nth-child(3n) {
    border-right: 1px solid var(--border);
  }
  .client-logo:nth-child(2n + 1) {
    border-left: none;
  }
  .client-logo:nth-child(2n) {
    border-right: none;
  }
}

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  position: relative;
  background: var(--teal-dark);
  padding: 92px 0;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "JAYDAN";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 220px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.cta-band h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 5vw, 62px);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 34px;
  position: relative;
}

/* ════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════ */
.testimonial-section {
  background: var(--bg3);
  text-align: center;
}

.testimonial-quote {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.68;
  color: var(--text);

  margin: 0 auto 32px;
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: -12px;
  font-size: 120px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  color: var(--teal);
  opacity: 0.18;
}

.testimonial-author {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 68px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 270px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-col span {
  font-size: 13px;
  color: var(--text-muted);
}

/* fading centred divider — replaces the old border-top on .footer-bottom */
.footer-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.footer-divider::before {
  content: "";
  display: block;
  width: 55%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 25%,
    rgba(13, 148, 136, 0.4) 50%,
    rgba(255, 255, 255, 0.07) 75%,
    transparent 100%
  );
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.22s;
}

.footer-social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.footer-social-link i {
  font-size: 14px;
}

/* ════════════════════════════════════════
   SCROLL FADE-UP ANIMATION
   ════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) {
  transition-delay: 0s;
}
.fade-up:nth-child(2) {
  transition-delay: 0.08s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.16s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.24s;
}
.fade-up:nth-child(5) {
  transition-delay: 0.32s;
}
.fade-up:nth-child(6) {
  transition-delay: 0.4s;
}

.stagger-1 {
  transition-delay: 0s !important;
}
.stagger-2 {
  transition-delay: 0.1s !important;
}
.stagger-3 {
  transition-delay: 0.2s !important;
}
.stagger-4 {
  transition-delay: 0.3s !important;
}
.stagger-5 {
  transition-delay: 0.4s !important;
}
.stagger-6 {
  transition-delay: 0.5s !important;
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #mainNav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .container,
  .container-wide {
    padding: 0 24px;
  }

  section {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    justify-content: center;
  }
  .footer-divider::before {
    width: 70%;
  }

  .page-hero-content {
    padding: 0 24px 48px;
  }
  .page-hero-title {
    font-size: clamp(44px, 12vw, 72px);
  }
}

@media (max-width: 480px) {
  .cta-band {
    padding: 64px 0;
  }
  .cta-band::before {
    font-size: 100px;
  }
}

/* ════════════════════════════════════════
   PAGES HERO  
   ════════════════════════════════════════ */

.page-hero {
  position: relative;
  height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
  padding-top: var(--nav-h);
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--teal) 0%, transparent 70%);
  z-index: 3;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 12, 16, 1) 0%,
    rgba(8, 12, 16, 0.85) 45%,
    rgba(8, 12, 16, 0.35) 100%
  );
}

/* ── Per-page background images ── */
.page-hero--about {
  background-image: url("../assets/586845746_18185990578338778_3006319828583524372_n.jpeg");
  background-size: cover;
  background-position: center 30%;
}
.page-hero--services {
  background-image: url("../assets/music-production.jpeg");
  background-size: cover;
  background-position: center 30%;
}
.page-hero--portfolio {
  background-image: url("../assets/cocacola.jpeg");
  background-size: cover;
  background-position: center 40%;
}
.page-hero--articles {
  background-image: url("../assets/587405052_18185990551338778_1332378108468848088_n.jpeg");
  background-size: cover;
  background-position: center 50%;
}
.page-hero--contact {
  background-image: url("../assets/Olive weds Elijah-108.jpg");
  background-size: cover;
  background-position: center 25%;
}

/* ── Overlay for pages with background images ── */
.page-hero--about .page-hero-bg,
.page-hero--portfolio .page-hero-bg,
.page-hero--services .page-hero-bg,
.page-hero--articles .page-hero-bg,
.page-hero--contact .page-hero-bg {
  background:
    linear-gradient(
      to bottom,
      rgba(8, 12, 16, 0.85) 0%,
      rgba(8, 12, 16, 0) 22%
    ),
    linear-gradient(
      to right,
      rgba(8, 12, 16, 0.95) 0%,
      rgba(8, 12, 16, 0.65) 45%,
      rgba(8, 12, 16, 0.15) 100%
    );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 60px;
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  box-sizing: border-box;
}

.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--teal);
}

.page-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 9vw, 100px);
  letter-spacing: 0.025em;
  line-height: 0.88;
  color: #fff;
}
.page-hero-title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
}

.page-hero-line {
  width: 54px;
  height: 2px;
  background: var(--teal);
  margin-top: 22px;
}

/* ════ ABOUT PAGE  ════ */

/* ─── 01 COMPANY ─── */
.about-company {
  background: var(--bg2);
  padding: 120px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: start;
}

.company-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.company-pillars {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.company-pillar {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
}

.company-pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.company-pillar h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.company-pillar p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ─── STATS BAND ─── */
.about-stats-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.about-stat-block {
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.about-stat-block:last-child {
  border-right: none;
}

/* ─── 02 FOUNDER ─── */
.about-founder {
  background: var(--bg3);
  padding: 120px 0;
}

.about-founder .section-title {
  margin-bottom: 64px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
}

.founder-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--teal);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.founder-badge__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}
.founder-badge__lbl {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.founder-role {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.founder-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 28px;
}

.founder-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 32px;
}

.founder-tags span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal-ring);
  border-radius: 4px;
  padding: 5px 14px;
  background: var(--teal-dim);
}

/* ─── 03 TEAM ─── */
.about-team {
  background: var(--bg2);
  padding: 120px 0;
}

.team-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.82;
  max-width: 620px;
  margin: 16px 0 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.team-card {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  transition: background 0.32s ease;
}

.team-card:hover {
  background: var(--surface);
}

.team-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.team-card:hover .team-card-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder-icon {
  font-size: 52px;
  color: var(--border);
}

.team-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.team-card-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.team-card-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.team-card-socials {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.team-card-socials a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s;
}

.team-card-socials a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ─── 04 TEAM AT WORK (PREMIUM GRID) ─── */
.team-work {
  background: var(--bg3);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.team-work-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 720px;
  margin: 18px 0 56px;
}

/* ─── GRID ─── */
.team-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

/* ─── ITEM ─── */
.team-work-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16 / 10;
  min-height: 240px;
  border-radius: 4px;
  transform: translateZ(0);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.team-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── HOVER DEPTH ─── */
.team-work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.team-work-item:hover img {
  transform: scale(1.06);
}

/* ─── OVERLAY ─── */
.team-work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.team-work-item:hover .team-work-overlay {
  opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .team-work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 700px) {
  .team-work {
    padding: 100px 0;
  }

  .team-work-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-work-item {
    aspect-ratio: 16 / 11;
    min-height: 220px;
  }

  .team-work-intro {
    margin-bottom: 40px;
  }
}

/* ═══ BTS REELS ═══ */
.bts-reels {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

/* ─── Cards grid ─── */
.reels-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: var(--surface);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

/* Playful staggered rotations */
.reel-card:nth-child(1) {
  transform: rotate(-1.5deg);
}
.reel-card:nth-child(2) {
  transform: rotate(0.8deg);
}
.reel-card:nth-child(3) {
  transform: rotate(-0.5deg);
}
.reel-card:nth-child(4) {
  transform: rotate(1.2deg);
}
.reel-card:nth-child(5) {
  transform: rotate(-1deg);
}

.reel-card:hover {
  transform: rotate(0deg) scale(1.04) translateY(-8px) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1.5px var(--teal),
    0 0 36px var(--teal-dim);
  z-index: 2;
}

/* Thumbnail layer */
.reel-card__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--card-thumb, none);
  background-color: #0a0e14;
}

.reel-card[data-platform="tiktok"] .reel-card__thumb {
  background-color: #010101;
}

.reel-card[data-platform="instagram"] .reel-card__thumb {
  background-image: linear-gradient(
    150deg,
    #405de6 0%,
    #833ab4 50%,
    #fd1d1d 100%
  );
}

.reel-card__iframe-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
  border-radius: 4px;
}

/* Dark gradient scrim */
.reel-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.14) 55%,
    transparent 100%
  );
}

/* Platform badge */
.reel-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reel-card__badge--tt {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.reel-card__badge--ig {
  background: linear-gradient(135deg, #405de6, #833ab4, #fd1d1d);
  color: #fff;
}

/* Play button */
.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.22s,
    transform 0.22s;
  text-decoration: none;
  padding-left: 3px;
}

.reel-card:hover .reel-card__play {
  background: var(--teal);
  transform: translate(-50%, -50%) scale(1.15);
}

/* ─── Lightbox modal ─── */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.reel-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.reel-modal__stage {
  width: min(88vw, 390px);
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
}

.reel-modal__stage iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.reel-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.reel-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ─── Responsive ─── */

/* Tablet landscape → 3 columns */
@media (max-width: 960px) {
  .reels-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Mobile: kill rotations (they overflow narrow screens),
   tighten spacing, shrink badge + play button */
@media (max-width: 600px) {
  .bts-reels {
    margin-top: 64px;
    padding-top: 48px;
  }
  .reels-strip {
    gap: 8px;
  }
  .reel-card:nth-child(1),
  .reel-card:nth-child(2),
  .reel-card:nth-child(3),
  .reel-card:nth-child(4),
  .reel-card:nth-child(5) {
    transform: none;
  }
  .reel-card:hover {
    transform: scale(1.02) translateY(-4px) !important;
  }
  .reel-card__play {
    width: 38px;
    height: 38px;
    font-size: 13px;
    padding-left: 2px;
  }
  .reel-card__badge {
    width: 24px;
    height: 24px;
    font-size: 10px;
    top: 7px;
    right: 7px;
    border-radius: 6px;
  }
  /* Cap modal height so the close button stays reachable */
  .reel-modal__stage {
    width: 92vw;
    max-height: 80vh;
  }
  .reel-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* Small phone portrait → 2 columns, centre the orphaned 5th card */
@media (max-width: 480px) {
  .reels-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .reel-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 4px); /* same width as a normal 2-col card */
  }
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-block:nth-child(2) {
    border-right: none;
  }
  .about-stat-block:nth-child(3) {
    border-right: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ════ SERVICES PAGE  ════ */

/* Intro */
.svc-intro-section {
  background: var(--bg2);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.svc-intro-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-sub);
  line-height: 1.72;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Detail rows */
.svc-detail-section {
  background: var(--bg);
  padding: 100px 0;
}

.svc-detail-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  position: relative;
}

.svc-detail-row.reverse {
  direction: rtl;
}
.svc-detail-row.reverse > * {
  direction: ltr;
}

.svc-divider {
  height: 1px;
  background: var(--border);
}

.svc-detail-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--border-faint);
  user-select: none;
}

.svc-detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.svc-detail-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 26px;
}

.svc-detail-list {
  list-style: none;
  margin-bottom: 36px;
}

.svc-detail-list li {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-faint);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-detail-list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.svc-detail-img {
  position: relative;
  overflow: visible;
}

.svc-detail-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.svc-detail-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 48%;
  height: 48%;
  border: 1px solid var(--teal);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

/* Process */
.svc-process {
  background: var(--bg3);
  padding: 120px 0;
}

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.svc-process-step {
  background: var(--bg3);
  padding: 44px 32px;
  transition: background 0.35s ease;
}

.svc-process-step:hover {
  background: var(--surface);
}

.svc-process-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.35;
  margin-bottom: 18px;
  transition: opacity 0.35s;
}

.svc-process-step:hover .svc-process-num {
  opacity: 1;
}

.svc-process-step h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.svc-process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.78;
}

/* Responsive */
@media (max-width: 1100px) {
  .svc-detail-row {
    grid-template-columns: 60px 1fr 1fr;
    gap: 40px;
  }
  .svc-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .svc-detail-row,
  .svc-detail-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
    padding: 52px 0;
  }
  .svc-detail-num {
    display: none;
  }
  .svc-detail-img {
    order: -1;
  }
  .svc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   PORTFOLIO PAGE
   ════════════════════════════════════════ */

.pf-page-section {
  background: var(--bg);
  padding: 120px 0 140px;
}

.pf-page-intro {
  margin-bottom: 88px;
}

.pf-cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pf-cat-pill {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 2px;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}
.pf-cat-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.pf-cat-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.pf-cat-empty {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.pf-cat-empty i {
  font-size: 32px;
  color: var(--teal);
  opacity: 0.6;
}

.pf-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pf-card {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.32s ease,
    transform 0.32s ease;
  position: relative;
}
.pf-card:hover {
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-4px);
}

.pf-card::before {
  counter-increment: pf-counter;
  content: counter(pf-counter, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--teal);
  padding: 3px 8px;
  line-height: 1.6;
}

.pf-page-grid {
  counter-reset: pf-counter;
}

.pf-card-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--bg3);
  overflow: hidden;
  flex-shrink: 0;
}
.pf-card-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  transition: transform 0.5s ease;
}
.pf-card:hover .pf-card-video iframe {
  transform: scale(1.02);
}

.pf-card-body {
  padding: 28px 30px 32px;
  position: relative;
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.pf-card-body::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.45s ease;
}
.pf-card:hover .pf-card-body::before {
  width: 100%;
}

.pf-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-faint);
}

.pf-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
  padding-top: 16px;
}

.pf-process-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.pf-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.pf-process-step {
  background: var(--bg2);
  padding: 44px 32px;
  transition: background 0.35s ease;
}
.pf-process-step:hover {
  background: var(--surface);
}

.pf-process-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.3;
  margin-bottom: 22px;
  transition: opacity 0.35s;
}
.pf-process-step:hover .pf-process-num {
  opacity: 1;
}

.pf-process-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pf-process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
}

@media (max-width: 1200px) {
  .pf-page-grid {
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .pf-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pf-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pf-page-section {
    padding: 80px 0 100px;
  }
  .pf-page-intro {
    margin-bottom: 56px;
  }
  .pf-page-grid {
    gap: 16px;
  }
  .pf-card:hover {
    transform: none;
  }
}

@media (max-width: 580px) {
  .pf-page-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pf-process-grid {
    grid-template-columns: 1fr;
  }
  .pf-card-body {
    padding: 22px 24px 28px;
  }
}

/* ════════════════════════════════════════
   EXPAND BUTTON 
   ════════════════════════════════════════ */
.pf-card-video {
  position: relative;
}

.pf-play-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(8, 12, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.pf-card:hover .pf-play-btn {
  opacity: 1;
  transform: translateY(0);
}

.pf-play-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* ════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════ */
.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pf-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.pf-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 8, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pf-lightbox-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.3s ease;
}

.pf-lightbox.open .pf-lightbox-inner {
  transform: scale(1) translateY(0);
}

.pf-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.pf-lightbox-close:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.pf-lightbox-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.pf-lightbox-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .pf-lightbox {
    padding: 16px;
  }
  .pf-lightbox-close {
    top: -40px;
  }

  .pf-play-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════ ARTICLES PAGE ════ */

/* Featured */
.art-featured {
  background: var(--bg2);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.art-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.art-featured-img {
  position: relative;
  overflow: hidden;
}

.art-featured-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.art-featured-img:hover img {
  transform: scale(1.03);
}

.art-featured-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: 5px 12px;
}

.art-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.art-date,
.art-read {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.art-date::after {
  content: "·";
  margin-left: 18px;
}

.art-featured-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.art-featured-excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 32px;
}

/* Filter bar */
.art-filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}

.art-filters {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.art-filters::-webkit-scrollbar {
  display: none;
}

.art-filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 26px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.25s,
    border-color 0.25s;
}

.art-filter-btn:hover,
.art-filter-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Grid */
.art-grid-section {
  background: var(--bg);
  padding: 80px 0 100px;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 60px;
}

.art-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.32s ease;
  border: 1px solid var(--border);
}

.art-card:hover {
  background: var(--surface);
}

.art-card-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.art-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.art-card:hover .art-card-img img {
  transform: scale(1.05);
}

.art-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.art-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.art-card-cat {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

.art-card-date {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.art-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.28;
  margin-bottom: 14px;
}

.art-card-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 24px;
}

.art-card-link {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.art-card-link:hover {
  gap: 14px;
}

.art-load-more {
  text-align: center;
}

#loadMoreBtn {
  color: #000000;
}

#loadMoreBtn:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Newsletter */
.art-newsletter {
  background: var(--bg3);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  border-right: none;
  padding: 13px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--teal);
}

.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--teal);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .art-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .art-featured-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .art-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
}

/* ════ ARTICLES PAGES ════ */

/* ── Hero ── */
.article-hero {
  position: relative;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 120px 0 80px;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--teal) 200%);
  opacity: 0.04;
  pointer-events: none;
}
.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Breadcrumb ── */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.article-breadcrumb a:hover {
  opacity: 0.75;
}
.article-breadcrumb span {
  color: var(--text-muted);
}

/* ── Category badge ── */
.article-cat-badge {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: 5px 14px;
  margin-bottom: 24px;
}

/* ── Hero title ── */
.article-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 28px;
}
.article-hero-title em {
  font-style: italic;
  color: var(--teal);
}

/* ── Meta row ── */
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-meta-item i {
  color: var(--teal);
  font-size: 10px;
}

/* ── Cover image ── */
.article-cover {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.article-cover-caption {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-align: left;
}

/* ── Body layout ── */
.article-body-wrap {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 60px;
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px 100px;
  align-items: start;
}
.article-body {
  min-width: 0;
}

/* ── Intro ── */
.article-intro {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* ── Sections ── */
.article-section {
  margin-bottom: 52px;
}
.article-section-num {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.article-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 18px;
}
.article-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.article-section p:last-child {
  margin-bottom: 0;
}

/* ── Tip box ── */
.article-tip {
  background: var(--surface);
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}
.article-tip-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}
.article-tip p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}

/* ── Arrow list ── */
.article-tag-list {
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-tag-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.72;
  padding-left: 18px;
  position: relative;
}
.article-tag-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
  top: 2px;
}

/* ── Divider ── */
.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 52px 0;
}

/* ── Closing box ── */
.article-closing {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 36px 32px;
  margin-top: 52px;
}
.article-closing p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-closing p:last-child {
  margin-bottom: 0;
}

/* ── Pull quote ── */
.pullquote {
  margin: 40px 0;
  padding: 32px 36px;
  border-top: 2px solid var(--teal);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.pullquote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

/* ── Sidebar ── */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h, 70px) + 30px);
}
.sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.sidebar-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-toc li a {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
  display: block;
}
.sidebar-toc li a:hover {
  color: var(--teal);
}
.sidebar-share {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-share a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-share a:last-child {
  border-bottom: none;
}
.sidebar-share a:hover {
  color: var(--teal);
}
.sidebar-share i {
  width: 16px;
  color: var(--teal);
}

/* ── Related articles ── */
.article-related {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.related-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.related-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 48px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .article-body-wrap {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-card {
    margin-bottom: 0;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .article-sidebar {
    grid-template-columns: 1fr;
  }
  .article-meta-row {
    gap: 14px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ════ CONTACT PAGE ════ */

/* Main section */
.contact-section {
  background: var(--bg2);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: start;
}

/* Info side */
.contact-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--border);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-ring);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.25s;
}

a.contact-detail-value:hover {
  color: var(--teal);
}

.contact-social-label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-socials {
  display: flex;
  gap: 10px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.22s;
}

.contact-social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Form side */
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 52px 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text-light);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

.form-input:focus {
  border-color: var(--teal);
}

.form-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='%236a7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 48px;
}

/* Success */
.form-success {
  text-align: center;
  padding: 60px 40px;
}

.form-success-icon {
  font-size: 52px;
  color: var(--teal);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
}

/* FAQ */
.contact-faq {
  background: var(--bg);
  padding: 100px 0;
}

.faq-grid {
  margin-top: 56px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-icon {
  font-size: 14px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.82;
  padding-bottom: 26px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-form-wrap {
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 32px 22px;
  }
}
