/* ==========================================================================
   JADY DESIGN — Site CSS v1.0
   Built: June 28, 2026
   Typography: Instrument Serif + Oswald + Inter Tight + Roboto Mono
   ========================================================================== */


/* ==========================================================================
   0. FONTS
   ========================================================================== */

@font-face {
  font-family: 'Instrument Serif';
  src: url('../assets/fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif Italic';
  src: url('../assets/fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400; font-style: normal;
  font-display: swap;
}


/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  /* ── Colors ──────────────────────────────────────────────────────── */
  --black:        #1a1a1a;
  --white:        #f8f8f6;
  --pure-white:   #ffffff;
  --charcoal:     #4a4a4a;
  --gray-medium:  #718096;
  --gray-soft:    #e8e8e6;
  --beige:        #f5f1e8;
  --yellow:       #FFFF99;
  --teal:         #2C5F5D;
  --teal-bright:  #5BBFBA;
  --blue-accent:  #7AC8E8;
  --navy:         #2d3748;
  --red:          #e63946;
  --orange:       #ec7336;
  --blue-light:   #d0e0f3;
  --gray-cool:    #edeef0;
  --blue-soft:    #f7faff;

  /* ── Typography ──────────────────────────────────────────────────── */
  --font-serif:      'Instrument Serif', Georgia, serif;
  --font-serif-i:    'Instrument Serif Italic', Georgia, serif;
  --font-impact:     'Oswald', sans-serif;
  --font-body:       'Inter Tight', sans-serif;
  --font-mono:       'Roboto Mono', monospace;

  /* ── Spacing ─────────────────────────────────────────────────────── */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   120px;
  --space-xxl:  200px;

  /* ── Layout ──────────────────────────────────────────────────────── */
  --content-width:  1200px;
  --narrow-width:   720px;
  --side-padding:   80px;
}

@media (max-width: 980px) {
  :root {
    --side-padding: 40px;
    --space-xl: 80px;
    --space-xxl: 120px;
  }
}
@media (max-width: 767px) {
  :root {
    --side-padding: 20px;
    --space-xl: 60px;
    --space-xxl: 80px;
  }
}


/* ==========================================================================
   2. RESET + BASE
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.78;
  color: var(--charcoal);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }


/* ==========================================================================
   3. TYPOGRAPHY CLASSES
   ========================================================================== */

.t-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--black);
}

.t-serif-i {
  font-family: var(--font-serif-i);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.t-impact {
  font-family: var(--font-impact);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--black);
}

.t-label {
  font-family: var(--font-impact);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  line-height: 1.2;
  color: var(--gray-medium);
}

/* Section labels in mono — for [ THE POINT ], [ WHAT I DO ] etc. */
.t-label-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 1.2;
  color: var(--teal);
}
.bg-black .t-label-mono { color: var(--yellow); }
.bg-beige .t-label-mono { color: var(--teal); }

/* Large decorative quote mark */
.quote-mark {
  font-family: var(--font-serif);
  font-size: 140px;
  line-height: 1;
  color: var(--yellow);
  display: block;
  margin-top: 16px;
  opacity: 0.8;
}

/* Testimonial carousel arrows */
.testimonial-arrows {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.testimonial-arrow:hover {
  background: var(--yellow);
  color: var(--black);
}

.t-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.78;
  color: var(--charcoal);
}

.t-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-medium);
}

/* ── Tracked-out serif lowercase — rare accent moments ───────────── */
.t-serif-tracked {
  font-family: var(--font-serif-i);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: var(--gray-medium);
  text-transform: lowercase;
}


/* ==========================================================================
   4. TYPOGRAPHIC SEPARATORS
   ========================================================================== */

.label-bracket::before { content: '[ '; }
.label-bracket::after  { content: ' ]'; }


/* ==========================================================================
   5. LAYOUT
   ========================================================================== */

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

.container-narrow {
  max-width: var(--narrow-width);
  margin: 0 auto;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section-loose {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.bg-white      { background: var(--white); }
.bg-black      { background: var(--black); color: var(--white); }
.bg-beige      { background: var(--beige); }
.bg-teal       { background: var(--teal); color: var(--white); }
.bg-blue-light { background: var(--blue-light); }
.bg-cool-gray  { background: var(--gray-cool); }
.bg-blue-soft  { background: var(--blue-soft); }

.bg-black .t-body   { color: #999; }
.bg-black .t-label  { color: var(--yellow); }
.bg-black .t-serif  { color: var(--white); }
.bg-black .t-impact { color: var(--white); }
.bg-teal .t-label   { color: var(--yellow); }


/* ==========================================================================
   6. RULE DIVIDERS
   ========================================================================== */

.rule {
  border: none;
  height: 1px;
  background: var(--gray-soft);
  margin: var(--space-lg) 0;
}

.rule-yellow {
  border: none;
  height: 3px;
  background: var(--yellow);
  width: 80px;
  margin: var(--space-md) 0;
}

.rule-labeled {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: var(--space-lg) 0;
}
.rule-labeled::before,
.rule-labeled::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-soft);
}
.rule-labeled span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-medium);
  text-transform: uppercase;
  white-space: nowrap;
}

.bg-black .rule { background: #333; }
.bg-black .rule-labeled::before,
.bg-black .rule-labeled::after { background: #333; }


/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 45px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 32px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}
.btn-yellow:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.bg-black .btn-yellow:hover {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.bg-black .btn-outline {
  color: var(--white);
  border-color: #555;
}
.bg-black .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ── Arrow reveal on hover ───────────────────────────────────────── */
.btn .btn-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Slide-in buttons (left + right entrance) ────────────────────── */
.btn-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-slide-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.btn-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition-delay: 0.15s;
}
.btn-slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Hover: word color change ────────────────────────────────────── */
.btn .btn-highlight {
  transition: color 0.25s ease;
}
.btn:hover .btn-highlight {
  color: var(--yellow);
}
.btn-outline:hover .btn-highlight {
  color: var(--yellow);
}


/* ==========================================================================
   8. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px var(--side-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  transition: box-shadow 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
}

.nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav.scrolled {
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav .nav-logo img {
  filter: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--yellow);
}

/* Contact link — serif italic, sized to align x-height with nav cap height */
.nav-contact {
  font-family: var(--font-serif-i) !important;
  font-size: 20px !important;
  letter-spacing: 0.03em;
  transition: color 0.25s ease !important;
}
.nav-contact:hover {
  color: var(--yellow) !important;
}

/* Mobile: logo + contact + plus-square toggle */
.nav-mobile-contact {
  display: none;
  font-family: var(--font-serif-i);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #999;
  transition: color 0.25s ease;
}
.nav-mobile-contact:hover { color: var(--white); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: var(--black);
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  background: var(--white);
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
}
.nav-toggle::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.nav-toggle::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
}
.nav-toggle:hover { background: var(--yellow); }
.nav-toggle:hover::before,
.nav-toggle:hover::after { background: var(--black); }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-mobile-contact { display: block; }
  .nav-toggle { display: block; }
  .nav-logo img { height: 28px; }
  .nav { gap: 12px; }
  .nav-mobile-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }

  /* ── Mobile menu open state ── */
  .nav.nav-open {
    background: var(--black) !important;
    backdrop-filter: none;
    flex-wrap: wrap;
    padding-bottom: 16px;
  }
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 8px;
    border-top: 1px solid #222;
    padding-top: 4px;
  }
  .nav.nav-open .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--white);
    border-bottom: 1px solid #1a1a1a;
    letter-spacing: 0.04em;
  }
  .nav.nav-open .nav-links a:hover { color: var(--yellow); }

  /* Plus → X when open */
  .nav.nav-open .nav-toggle::before {
    width: 14px; height: 1.5px;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav.nav-open .nav-toggle::after {
    width: 14px; height: 1.5px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media (min-width: 768px) {
  .nav-mobile-right { display: none; }
}


/* ==========================================================================
   9. MARQUEE TICKER
   ========================================================================== */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--gray-soft);
  border-bottom: 1px solid var(--gray-soft);
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-impact);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-medium);
  padding: 0 24px;
}
.marquee-item .sep {
  color: var(--yellow);
  margin: 0 8px;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bg-black .marquee { border-color: #333; }


/* ==========================================================================
   10. NUMBERED GRID (Services, Process)
   ========================================================================== */

.numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.numbered-grid-item {
  position: relative;
}
.numbered-grid-num {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gray-soft);
  line-height: 1;
  margin-bottom: 12px;
}
.numbered-grid-title {
  font-family: var(--font-impact);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 12px;
}
.numbered-grid-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}

@media (max-width: 980px) {
  .numbered-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .numbered-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ==========================================================================
   10b. SERVICE CARDS (with icons + hover)
   ========================================================================== */

.service-card {
  background: var(--pure-white);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--yellow);
}

/* Service cards on dark backgrounds */
.bg-black .service-card {
  background: #222;
  border-color: #333;
}
.bg-black .service-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.bg-black .service-card-title {
  color: var(--white);
}
.bg-black .service-card-text {
  color: #999;
}
.bg-black .service-card-icon {
  filter: invert(1);
  opacity: 0.5;
}
.bg-black .service-card:hover .service-card-icon {
  opacity: 0.8;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.service-card:hover .service-card-icon {
  opacity: 1;
}

.service-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #555;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.service-card:hover .service-card-num {
  color: var(--yellow);
}

.service-card-title {
  font-family: var(--font-impact);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 12px;
}
.service-card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Vertical grid (default) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Horizontal scroll strip */
.service-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  margin-left: calc(-1 * var(--side-padding));
  margin-right: calc(-1 * var(--side-padding));
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}
.service-scroll::-webkit-scrollbar {
  height: 3px;
}
.service-scroll::-webkit-scrollbar-track {
  background: #333;
}
.bg-white .service-scroll::-webkit-scrollbar-track,
.bg-beige .service-scroll::-webkit-scrollbar-track,
.bg-cool-gray .service-scroll::-webkit-scrollbar-track {
  background: var(--gray-soft);
}
.service-scroll::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}
.service-scroll .service-card {
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .service-scroll .service-card {
    min-width: 280px;
  }
}


/* ==========================================================================
   10c. PROCESS GRID (Define / Design / Refine / Build)
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  border-top: 2px solid var(--black);
  padding: 32px 32px 32px 0;
  position: relative;
  transition: background 0.3s ease;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--gray-soft);
  padding-right: 32px;
  margin-right: 32px;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.process-step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.85;
}

.process-step-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}

.process-step p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-step:not(:last-child) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .process-step:nth-child(odd) {
    border-right: 1px solid var(--gray-soft);
    padding-right: 32px;
    margin-right: -1px;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-step:nth-child(odd) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}


/* ==========================================================================
   11. PORTFOLIO GRID
   ========================================================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
}
.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-card:hover img {
  transform: scale(1.03);
}
.portfolio-card-num {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--pure-white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.portfolio-card-info {
  padding: 16px 0;
}
.portfolio-card-title {
  font-family: var(--font-impact);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 4px;
}
.portfolio-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-medium);
}

@media (max-width: 767px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   11b. WORK CARDS — Option A (mono num / Oswald title / serif-i category)
   ========================================================================== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.work-grid .span-full { grid-column: 1 / -1; }

.work-card {
  border: 1px solid var(--gray-soft);
  border-radius: 4px;
  padding: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover {
  border-color: var(--charcoal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.work-card-photo { position: relative; }
.work-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.work-card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pure-white);
  background: rgba(0,0,0,0.55);
  padding: 4px 9px;
  border-radius: 3px;
}
.work-card-info { padding: 20px 0 8px; }
.work-card-title {
  font-family: var(--font-impact);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.05;
}
.work-card-category {
  font-family: var(--font-serif-i);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: lowercase;
  color: var(--charcoal);
}

@media (max-width: 767px) {
  .work-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   12. PARALLAX
   ========================================================================== */

.parallax-photo {
  height: 700px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.parallax-overlay-section {
  position: relative;
  z-index: 2;
  background: var(--white);
}

@media (max-width: 767px) {
  .parallax-photo {
    background-attachment: scroll;
    height: 550px;
  }
}


/* ==========================================================================
   13. SCROLL REVEAL (JS adds .revealed class)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-image.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slow { transition-duration: 1s; }

.reveal-stagger:nth-child(1) { transition-delay: 0s; }
.reveal-stagger:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger:nth-child(6) { transition-delay: 0.60s; }


/* ==========================================================================
   14. YELLOW TAPE ACCENT
   ========================================================================== */

.tape {
  display: inline-block;
  background: var(--yellow);
  height: 8px;
  width: 180px;
}
.tape-sm  { height: 4px; width: 80px; }
.tape-full { width: 100%; height: 4px; }


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-xl) var(--side-padding);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  max-width: var(--content-width);
  margin: 0 auto;
}
.footer-divider {
  width: 1px;
  background: #333;
  align-self: stretch;
}
.footer a { transition: color 0.2s ease; }
.footer a:hover { color: var(--yellow); }
.footer-label {
  font-family: var(--font-impact);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 10px;
}
.footer-bottom {
  max-width: var(--content-width);
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-divider { display: none; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}


/* ==========================================================================
   16. UTILITY
   ========================================================================== */

/* ==========================================================================
   LINK WITH DIAGONAL ARROW (Vertora-style)
   ========================================================================== */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
  transition: color 0.25s ease, gap 0.25s ease;
}
.link-arrow:hover {
  color: var(--black);
  gap: 12px;
}
.link-arrow img {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.link-arrow:hover img {
  transform: translate(2px, -2px);
}
.bg-black .link-arrow { color: #999; }
.bg-black .link-arrow:hover { color: var(--yellow); }
.bg-black .link-arrow img { filter: invert(1); opacity: 0.5; }
.bg-black .link-arrow:hover img { opacity: 1; }


/* ==========================================================================
   VERTORA-STYLE SERVICE LIST (alternative to cards)
   ========================================================================== */

.service-list-item {
  display: flex;
  align-items: center;
  padding: 28px 32px;
  border-top: 1px solid #333;
  transition: background 0.35s ease, padding 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.service-list-item:last-child {
  border-bottom: 1px solid #333;
}
.service-list-item:hover {
  background: var(--black);
  padding: 32px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 6px;
}
.service-list-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #555;
  min-width: 60px;
  transition: color 0.3s ease;
}
.service-list-item:hover .service-list-num {
  color: var(--yellow);
}
.service-list-name {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #999;
  transition: color 0.3s ease;
}
.service-list-item:hover .service-list-name {
  color: var(--white);
}
.service-list-arrow {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: invert(1);
}
.service-list-item:hover .service-list-arrow {
  opacity: 1;
  transform: translate(0, 0);
}


/* ==========================================================================
   WORD-BY-WORD SCROLL REVEAL (IIFE #4 in jady-site.js toggles .lit)
   ========================================================================== */

.jd-body-p .word { color: var(--gray-soft); transition: color 0.15s ease; }
.jd-body-p .word.lit { color: var(--charcoal); }


/* ==========================================================================
   FAQ HOVER VARIANTS (pick one, delete the others)
   ========================================================================== */

/* OPTION A: hover changes bar color */
.faq-option-a {
  border-bottom: 1px solid var(--gray-soft);
  padding: 24px 0;
  transition: border-color 0.3s ease;
}
.faq-option-a:hover {
  border-color: var(--yellow);
}

/* OPTION B: dark bar default, expands on hover */
.faq-option-b {
  background: var(--black);
  color: var(--white);
  padding: 24px 32px;
  margin-bottom: 8px;
  border-radius: 4px;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.faq-option-b:hover {
  padding: 28px 32px;
}
.faq-option-b summary {
  color: var(--white);
}
.faq-option-b .t-body {
  color: #999;
}

/* OPTION C: drop shadow on hover + 32px H padding + open/close icon */
.faq-option-c {
  border-bottom: 1px solid var(--gray-soft);
  padding: 24px 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-option-c:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.faq-option-c summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
}
.faq-option-c summary::-webkit-details-marker { display: none; }
.faq-option-c summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 20px;
}
details[open].faq-option-c summary::after {
  content: '\2212';
}

/* FAQ question text — lighter weight across all variants */
.faq-option-a summary,
.faq-option-b summary,
.faq-option-c summary {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
}


/* ==========================================================================
   16. UTILITY
   ========================================================================== */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-white  { color: var(--white) !important; }
.text-teal   { color: var(--teal) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-muted  { color: var(--gray-medium) !important; }
.mt-xs  { margin-top: var(--space-xs); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-xs  { margin-bottom: var(--space-xs); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
