/* ============================================================
   DRAMATEC Theme — Dark Cinematic Design System
   Palette : Void black · Deep surface · Spotlight gold · White
   Type    : Cormorant Garamond + Noto Sans JP + Space Mono
   Motion  : GSAP + ScrollTrigger (see main.js)
   ============================================================ */


/* ─── 1. CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* New design palette matched to @style.css */
  --bg:           #090909;
  --bg-warm:      #111111;
  --bg-grey:      #181818;
  --bg-dark:      #050505;      

  --surface:      #111111;
  --surface-2:    #181818;
  --surface-dark: #090909;

  --border:       #222222;
  --border-mid:   #333333;
  --border-dark:  #1c1c1c;

  /* Text — light on dark */
  --black:        #EDE8DF;   /* headline / primary text */
  --dark:         #EDE8DF;
  --mid:          #7A7570;   /* dimmed text */
  --muted:        #7A7570;
  --dim:          #5A5755;   /* faint text - made lighter for legibility */
  --pale:         #252525;
  --white:        #EDE8DF;

  /* Accent — neutral grey */
  --gold:         #DF7234;
  --gold-bright:  #F08B54;                 /* lighter tint for highlights */
  --gold-dim:     rgba(223, 114, 52, 0.15);
  --gold-bg:      rgba(223, 114, 52, 0.10);
  --gold-border:  rgba(223, 114, 52, 0.35);

  --red:          #C0373D;

  /* Typography — matched to @style.css */
  --font-display: 'Cormorant Garamond', 'YuMincho', 'Hiragino Mincho ProN', serif;
  --font-body:    'Noto Sans JP', 'YuGothic', 'Hiragino Sans', sans-serif;
  --font-label:   'Space Mono', 'Courier New', monospace;
  --font-mono:    'Space Mono', 'Courier New', monospace;
  --font-bebas:   'Bebas Neue', sans-serif;

  /* Spacing */
  --sp-1:   8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  48px;
  --sp-6:  64px;
  --sp-7:  96px;
  --sp-8: 128px;
  --sp-9: 180px;

  /* Layout */
  --container:      1200px;
  --container-wide: 1440px;
  --container-pad:  clamp(24px, 5vw, 80px);

  /* Shadows — dramatic on dark */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.6), 0 12px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.7), 0 24px 60px rgba(0,0,0,0.5);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.8), 0 48px 96px rgba(0,0,0,0.6);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
  --dur-fast:    180ms;
  --dur-med:     360ms;
  --dur-slow:    600ms;

  /* Misc */
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --z-header: 100;
  --z-modal:  200;
}


/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ─── 3. GRAIN (very subtle on light bg) ────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* ─── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.site-main { min-height: 60vh; }


/* ─── 5. TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--black);
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-headline--sm { font-size: clamp(1.5rem, 3vw, 2.5rem); }

.section-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--muted);
  margin-top: var(--sp-2);
  max-width: 55ch;
  line-height: 1.75;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.section-label__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
}

.section-label__text {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--dim);
  text-transform: uppercase;
}

.section-label--light .section-label__num  { color: var(--white); border-color: rgba(255,255,255,0.25); }
.section-label--light .section-label__text { color: rgba(255,255,255,0.5); }

.section-header { margin-bottom: clamp(var(--sp-5), 6vw, var(--sp-7)); }
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-footer { text-align: center; margin-top: clamp(var(--sp-5), 5vw, var(--sp-6)); }

/* Entry content */
.entry-content { color: var(--mid); line-height: 1.8; }
.entry-content p  { margin-bottom: var(--sp-3); }
.entry-content h2 { font-size: 1.75rem; margin-block: var(--sp-4) var(--sp-2); color: var(--black); }
.entry-content h3 { font-size: 1.35rem; margin-block: var(--sp-3) var(--sp-2); color: var(--black); }
.entry-content ul, .entry-content ol { padding-left: var(--sp-3); margin-bottom: var(--sp-3); }
.entry-content li { margin-bottom: var(--sp-1); }
.entry-content a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }
.entry-content a:hover { color: var(--gold-bright); }
.entry-content strong { color: var(--dark); font-weight: 600; }


/* ─── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast),
              border-color var(--dur-fast),
              color var(--dur-fast);
  white-space: nowrap;
  position: relative;
}

/* Gold — primary */
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(153, 153, 153,0.25);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border-mid);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-1px);
}

/* Outline dark — for dark sections */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
	.section-footer .btn--lg { margin-top:20px;}
}

/* Text */
.btn--text { background: none; border: none; padding-inline: 0; color: var(--gold); }
.btn--text:hover { color: var(--gold-bright); }

.btn--sm  { padding: 9px 20px; font-size: 0.8rem; }
.btn--lg  { padding: 15px 36px; font-size: 0.95rem; }
.btn--xl  { padding: 18px 44px; font-size: 1rem; letter-spacing: 0.06em; }
.btn--full { width: 100%; justify-content: center; }

.btn__arrow { transition: transform var(--dur-fast); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }


/* ─── 7. HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding-block: 22px;
  transition: padding var(--dur-med) var(--ease-out),
              background var(--dur-med),
              box-shadow var(--dur-med);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,0.5);
}

.single-works .site-header {                                                                                                background: rgba(8, 8, 8, 0.5);                                                                                        backdrop-filter: blur(16px) saturate(160%);                                                                              -webkit-backdrop-filter: blur(16px) saturate(160%);                                                                                               
  }   

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; position: relative; z-index: 101; }

.site-logo__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--black);
  text-transform: uppercase;
}

.site-logo__dot { color: var(--gold); }
.site-logo img  { height: 38px; width: auto; }

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #fff;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 15px; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover::after,
.nav-item.current-menu-item .nav-link::after,
.nav-item.current_page_item .nav-link::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-item.current-menu-item .nav-link,
.nav-item.current_page_item .nav-link {
  color: var(--black);
  background: transparent;
}

/* Header actions */
.site-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  position: relative;
  z-index: 101;
}

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 0;
  position: relative;
  background: transparent;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all var(--dur-med) var(--ease-out);
  transform-origin: center;
}

.hamburger.is-active .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile Nav */
@media (max-width: 899px) {
  .site-header {
    padding-block: 12px;
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 90; /* Lower than header elements */
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: var(--sp-8) var(--container-pad);
    visibility: hidden;
  }
  
  .site-nav.is-open { 
    transform: translateX(0); 
    visibility: visible;
  }
  
  .site-logo, 
  .site-header__actions {
    position: relative;
    z-index: 101; /* Stay above the menu */
  }
  .nav-list { 
    flex-direction: column; 
    gap: var(--sp-4); 
    text-align: center;
    width: 100%;
  }
  .nav-link { 
    font-family: var(--font-display);
    font-size: 2rem; 
    padding: 0;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 300;
    transition: color 0.3s;
  }
  .nav-link:hover { color: var(--gold); }
  .nav-link::after { display: none; }
}


/* ─── 8. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

/* Subtle paper texture / graph-paper grid */
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 85% 90% at 50% 50%, black 20%, transparent 100%);
}

/* Warm cinematic glow — upper left */
.hero__spotlight--1 {
  position: absolute;
  top: -10vw;
  left: -10vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 153, 153,0.12) 0%, transparent 65%);
}

.hero__spotlight--2 {
  position: absolute;
  bottom: -15vw;
  right: -10vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,0,36,0.08) 0%, transparent 65%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  padding-block: clamp(var(--sp-8), 14vh, 180px);
}

.hero__content { max-width: 900px; }

/* Overline */
.hero__overline {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}

.overline-bar {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
}

/* Headline — clip-reveal setup */
.hero__headline {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: var(--sp-5);
}

/* Each line sits inside a clip container */
.hero__line-wrap { overflow: hidden; }

.hero__headline-line--serif {
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.hero__headline-line--bold {
  font-weight: 900;
  color: var(--black);
}

.hero__tagline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: var(--sp-4);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Decorative rule below hero content */
.hero__rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  transform-origin: left;
}

/* Hero stats */
.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.hero__stat { display: flex; flex-direction: column; gap: 4px; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-mid);
}

/* ─── 9. OVERVIEW ────────────────────────────────────────────── */
.overview {
	position: relative;  
	z-index:1;
  padding-block: clamp(var(--sp-7), 10vw, var(--sp-9));
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-5), 6vw, var(--sp-7));
  align-items: center;
  margin-top: var(--sp-5);
}

.overview__image {
  position: relative;
  border-radius: var(--radius-md);
}

.overview__photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.overview-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  
}

.overview-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
	overflow: hidden;
}

.overview-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 0.8s ease;
  transform: scale(1.02);
}

.overview-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transform: scale(1);
}

.overview__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.overview-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.overview-carousel__dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
  transition:
    background-color 0.35s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}

.overview-carousel__dot:hover,
.overview-carousel__dot:focus-visible {
  transform: scale(1.15);
  opacity: 0.9;
}

.overview-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .overview__inner { grid-template-columns: 1fr; }
  .overview__image { order: -1; }
}

.overview__headline {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: var(--sp-3);
}

.overview__body {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
  max-width: 60ch;
}

.overview__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-4);
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark);
}

.pillar__icon { color: var(--gold); font-size: 0.7rem; }


/* ─── 10. SERVICES GRID ───────────────────────────────────────── */
.services-section {
  padding-block: clamp(var(--sp-7), 10vw, var(--sp-9));
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.service-card__icon-wrap { margin-block: var(--sp-1); }

.service-card__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.7;
}

.service-card__icon-svg {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.service-card:hover .service-card__icon-svg { opacity: 1; }
.service-card__icon-svg svg { width: 100%; height: 100%; }

.service-card__icon-default {
  font-size: 1.8rem;
  color: var(--pale);
  display: block;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.service-card__footer {
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}

.service-card__cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast), color var(--dur-fast);
}

.service-card:hover .service-card__cta { gap: 10px; color: var(--gold-bright); }

/* Gold top border reveal on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.service-card:hover::before { transform: scaleX(1); }

/* remove glow element from dark theme */
.service-card__glow { display: none; }


/* ─── 11. SERVICES FULL PAGE ──────────────────────────────────── */
.services-full {
  padding-block: clamp(var(--sp-7), 10vw, var(--sp-9));
  background: var(--bg);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-5), 6vw, var(--sp-8));
  align-items: center;
  padding-block: clamp(var(--sp-5), 6vw, var(--sp-7));
  border-bottom: 1px solid var(--border);
}

.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }

@media (max-width: 768px) { .service-row, .service-row--reverse { grid-template-columns: 1fr; direction: ltr; } }

.service-row__image-wrap,
.service-row__image-placeholder {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-grey);
  box-shadow: var(--shadow-md);
}

.service-row__image { width: 100%; height: 100%; object-fit: cover; }

.service-row__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.service-row__icon { width: 80px; height: 80px; object-fit: contain; opacity: 0.3; }
.service-row__icon-default { font-size: 4rem; color: var(--pale); }

.service-row__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.service-row__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-row__short {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: var(--sp-3);
  line-height: 1.65;
}

.service-row__full { margin-bottom: var(--sp-4); font-size: 0.9rem; }

.services-grid-section {
  padding-block: clamp(var(--sp-7), 8vw, var(--sp-8));
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}


/* ─── 12. WORKS GRID (homepage) ───────────────────────────────── */
.works-section {
  padding-block: clamp(var(--sp-7), 10vw, var(--sp-9));
  background: var(--bg-grey);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

/* Mosaic layout:
   Row 1: large (2 cols, 2 rows) + medium (1 col, 1 row)
   Row 2: large continues         + medium (1 col, 1 row)
   Row 3: small × 3                                       */

.works-card { position: relative; overflow: hidden; border-radius: var(--radius-sm); }

.works-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.works-card__link { display: block; height: 100%; }

.works-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  height: 100%;
  background: var(--bg-warm);
}

.dt-work-mask {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: left;
  z-index: 3;
}

.works-card--large .works-card__image-wrap { aspect-ratio: auto; }
.works-card--medium .works-card__image-wrap { aspect-ratio: 4/3; }
.works-card--small .works-card__image-wrap { aspect-ratio: 16/10; }

@media (max-width: 900px) {
  .works-grid { grid-template-columns: 1fr 1fr; }
  .works-card--large { grid-column: span 2; grid-row: span 1; }
  .works-card--large .works-card__image-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .works-grid { grid-template-columns: 1fr; }
  .works-card--large { grid-column: span 1; grid-row: span 1; }
  .works-card--large .works-card__image-wrap { aspect-ratio: 16/9; }
}

.works-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
  display: block;
}

.works-card:hover .works-card__image { transform: scale(1.05); }

.works-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-grey), var(--border));
}

.works-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.9) 0%, rgba(9,9,9,0.4) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
  opacity: 1;
  z-index: 5;
  transition: background 0.4s var(--ease-out);
}

.works-card:hover .works-card__overlay { 
  background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.6) 60%, transparent 100%);
}

.works-card__overlay-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  transition: transform 0.6s var(--ease-out);
}

.works-card:hover .works-card__overlay-inner { transform: translateY(0); }

.works-card__year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.works-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.works-card__summary {
  font-size: 0.85rem;
  color: rgba(237, 232, 223, 0.7);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.works-card__location {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1em;
}

.works-card__location-icon { color: var(--gold); }
.works-card__arrow { 
  font-size: 1.25rem; 
  color: var(--gold); 
  align-self: flex-end; 
  margin-top: auto;
  transition: transform 0.3s var(--ease-out);
}

.works-card:hover .works-card__arrow { transform: translateX(5px); }


/* ─── 13. WORKS ARCHIVE ───────────────────────────────────────── */
.archive-filter {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-3);
  position: sticky;
  top: 68px;
  z-index: 50;
}

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast);
  white-space: nowrap;
}

.filter-btn:hover { color: var(--dark); border-color: var(--border-mid); }

.filter-btn--active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-bg);
}

.archive-works {
  padding-block: clamp(var(--sp-6), 8vw, var(--sp-8));
  background: var(--bg);
}

.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 1000px) { .works-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .works-archive-grid { grid-template-columns: 1fr; } }

.works-archive-card.is-hidden { display: none; }

.works-archive-card__link { display: block; }

.works-archive-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-grey);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2);
  box-shadow: var(--shadow-sm);
}

.works-archive-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.works-archive-card:hover .works-archive-card__image { transform: scale(1.04); }

.works-archive-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-grey), var(--border));
}

.works-archive-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.works-archive-card:hover .works-archive-card__overlay { opacity: 1; }

.works-archive-card__view {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.works-archive-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.works-archive-card__year,
.works-archive-card__location {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: uppercase;
}

.works-archive-card__sep { color: var(--pale); }

.works-archive-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-1);
  line-height: 1.25;
  transition: color var(--dur-fast);
}

.works-archive-card:hover .works-archive-card__title { color: var(--gold); }

.works-archive-card__summary {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

.works-archive-card__services { display: flex; flex-wrap: wrap; gap: 4px; }

.archive-pagination {
  margin-top: var(--sp-7);
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links { display: flex; gap: 8px; align-items: center; }

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  transition: all var(--dur-fast);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

.archive-pagination .prev,
.archive-pagination .next { width: auto; padding-inline: var(--sp-2); }


/* ─── 14. SINGLE WORK ─────────────────────────────────────────── */
.work-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-grey);
}

.work-hero__image-wrap {
  position: absolute;
  inset: 0;
}

.work-hero__image { width: 100%; height: 100%; object-fit: cover; }
.work-hero__image-wrap--empty { background: var(--bg-grey); }

.work-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
}

.work-hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-7) var(--sp-6);
}

.work-hero__meta { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-2); }

.work-hero__year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.work-hero__location { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.work-hero__title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}

.work-hero__summary {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  line-height: 1.65;
}

.work-body { padding-block: clamp(var(--sp-6), 8vw, var(--sp-8)); background: var(--bg); }

.work-body__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(var(--sp-5), 6vw, var(--sp-7));
  align-items: start;
}

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

.work-section-title {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}

.work-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

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

.work-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.work-gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-med); }
.work-gallery__item:hover .work-gallery__img { transform: scale(1.05); }

.work-gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.work-gallery__item:hover .work-gallery__zoom { opacity: 1; }

.work-video { margin-block: var(--sp-5); }
.work-video__embed { position: relative; padding-top: 56.25%; border-radius: var(--radius-md); overflow: hidden; }
.work-video__embed iframe,
.work-video__embed video { position: absolute; inset: 0; width: 100%; height: 100%; }

.work-meta-panel {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
}

@media (min-width: 901px) {
  .work-meta-panel {
    position: sticky;
    top: 120px;
    z-index: 10;
  }
}

.work-meta-panel__title {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  text-transform: uppercase;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-3);
}

.work-meta-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-4); }

.work-meta-item dt {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.work-meta-item dd { font-size: 0.9rem; color: var(--dark); }
.work-meta-item a { color: var(--gold); }
.work-meta-item a:hover { color: var(--gold-bright); }

.work-meta-services { display: flex; flex-direction: column; gap: 4px; list-style: none; }
.work-tags { display: flex; flex-wrap: wrap; gap: 4px; }

.work-sidebar-cta {
  margin-top: var(--sp-3);
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  text-align: center;
}

.work-sidebar-cta__text {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: var(--sp-2);
}

.related-works { padding-block: clamp(var(--sp-6), 8vw, var(--sp-8)); background: var(--bg-warm); border-top: 1px solid var(--border); }

.related-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 900px) { .related-works__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .related-works__grid { grid-template-columns: 1fr; } }


/* ─── 15. CLIENTS ─────────────────────────────────────────────── */
.clients-section {
  padding-block: clamp(var(--sp-7), 10vw, var(--sp-9));
  background: var(--bg);
}

.clients-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-block: var(--sp-5);
}

@media (max-width: 900px) { .clients-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .clients-strip { grid-template-columns: 1fr 1fr; } }

.client-logo {
  background: var(--bg);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: background var(--dur-fast);
}

.client-logo:hover { background: var(--bg-warm); }

.client-logo a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.client-logo__img {
  max-width: clamp(100px, 12vw, 160px);
  max-height: clamp(40px, 6vw, 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: opacity var(--dur-fast), filter var(--dur-fast);
}

.client-logo:hover .client-logo__img { opacity: 0.75; filter: grayscale(0%); }

.client-logo__text-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.client-logo__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pale);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast);
}

.client-logo:hover .client-logo__name { color: var(--dark); }
.client-logo__industry { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }

/* Clients full page */
.clients-full { padding-block: clamp(var(--sp-7), 10vw, var(--sp-9)); background: var(--bg); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .clients-grid { grid-template-columns: 1fr; } }

.client-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-med) var(--ease-out);
}

.client-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-card--featured { border-color: var(--gold-border); }

.client-card__logo-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-3);
}

.client-card__logo {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity var(--dur-fast), filter var(--dur-fast);
}

.client-card:hover .client-card__logo { opacity: 0.85; filter: grayscale(0%); }

.client-card__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.client-card__name { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }

.client-card__industry {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.client-card__summary { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: var(--sp-2); }
.client-card__link { font-size: 0.78rem; font-weight: 500; color: var(--gold); }
.client-card__link:hover { color: var(--gold-bright); }

.client-card__badge {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 2px;
}


/* ─── 16. TRAINING CALLOUT (DARK CONTRAST) ────────────────────── */
/* ─── 17. CONTACT ─────────────────────────────────────────────── */
.contact-body { padding-block: clamp(var(--sp-7), 10vw, var(--sp-9)); background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(var(--sp-5), 6vw, var(--sp-8));
  align-items: start;
}

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

.contact-col-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}

/* Form */
.dramatec-form { display: flex; flex-direction: column; gap: var(--sp-3); }
.form-row { display: flex; gap: var(--sp-3); }
.form-row--half .form-group { flex: 1; }
@media (max-width: 600px) { .form-row { flex-direction: column; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: var(--font-mono);
}

.required { color: var(--gold); }

.form-input {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 11px 15px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-bg); }
.form-input::placeholder { color: var(--pale); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5820A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg-warm);
  padding-right: 36px;
}

.form-textarea { resize: vertical; min-height: 130px; }
.form-group--submit { align-items: flex-start; gap: var(--sp-2); }
.form-note { font-size: 0.76rem; color: var(--dim); }
.form-submit { min-width: 180px; }

/* Contact Info */
.contact-info-col { display: flex; flex-direction: column; gap: var(--sp-4); }

.contact-info-block {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.contact-info-block__icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; width: 24px; text-align: center; }
.contact-info-block__label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); font-family: var(--font-mono); margin-bottom: 4px; }
.contact-info-block__value { font-size: 0.88rem; color: var(--dark); }
.contact-link { color: var(--gold); }
.contact-link:hover { color: var(--gold-bright); }

.contact-quick-title { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); font-family: var(--font-mono); margin-bottom: var(--sp-2); }
.contact-quick-links { display: flex; flex-wrap: wrap; gap: 8px; }

.contact-quick-link {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.contact-quick-link:hover,
.contact-quick-link.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

.contact-trust__label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); font-family: var(--font-mono); margin-bottom: var(--sp-2); }
.contact-trust__clients { display: flex; flex-direction: column; gap: var(--sp-1); }
.contact-trust__client { font-size: 0.83rem; color: var(--muted); }
.contact-trust__client::before { content: '· '; color: var(--gold); }


/* ─── 18. ABOUT ────────────────────────────────────────────────── */
.about-mission { padding-block: clamp(var(--sp-7), 10vw, var(--sp-9)); background: var(--bg); }

.about-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(var(--sp-5), 8vw, var(--sp-8));
  align-items: center;
}

@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; } }

.about-headline {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
}

.about-quote {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}

.about-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: var(--sp-3);
}

.about-quote__cite { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; }

.about-stats { padding-block: clamp(var(--sp-6), 8vw, var(--sp-7)); background: var(--bg-grey); border-block: 1px solid var(--border); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  background: var(--bg-grey);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-item__label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.about-values { padding-block: clamp(var(--sp-7), 10vw, var(--sp-8)); background: var(--bg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-fast);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.value-card__icon { display: block; font-size: 1.6rem; color: var(--gold); margin-bottom: var(--sp-2); opacity: 0.65; }
.value-card__title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: var(--sp-1); }
.value-card__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }


/* ─── 19. PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(80px + clamp(var(--sp-7), 10vw, var(--sp-9)));
  padding-bottom: clamp(var(--sp-6), 8vw, var(--sp-8));
  background: var(--bg-warm);
  overflow: hidden;
}

.page-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(153, 153, 153,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(155,31,36,0.03) 0%, transparent 60%);
}

/* Thin decorative top border, gold */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.page-hero__content { position: relative; z-index: 1; max-width: 900px; }
.page-hero__content--narrow { max-width: 680px; }

.page-hero__headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-3);
}

.page-hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.page-hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }


/* ─── 20. CTA SECTIONS ─────────────────────────────────────────── */
.cta-banner {
  padding-block: clamp(var(--sp-6), 8vw, var(--sp-7));
  background: var(--bg-grey);
  border-block: 1px solid var(--border);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.cta-banner__overline {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.cta-banner__headline {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); flex-shrink: 0; }

/* Final CTA */
.cta-final {
  padding-block: clamp(var(--sp-8), 15vw, 200px);
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-final__inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }

.cta-final__overline {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.cta-final__headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.02;
  margin-bottom: var(--sp-3);
}

.cta-final__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: var(--sp-5);
}

.cta-final__actions { display: flex; justify-content: center; gap: var(--sp-2); flex-wrap: wrap; }

/* Watermark text behind CTA */
.cta-final__bg-text {
  position: absolute;
  bottom: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-bebas);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-mid);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  opacity: 0.45;
}


/* ─── 21. TAGS ──────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 8px;
  background: var(--bg-grey);
  border-radius: 2px;
  border: 1px solid var(--border);
}

.tag--outline { background: transparent; }
.tag--more { color: var(--gold); background: var(--gold-bg); border-color: var(--gold-border); }


/* ─── 22. BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--dim);
  margin-bottom: var(--sp-3);
}

.breadcrumb a { color: var(--dim); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--gold); font-size: 0.7rem; }


/* ─── 23. FOOTER (dark contrast) ───────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.55);
}

.footer-top { padding-block: clamp(var(--sp-6), 8vw, var(--sp-8)); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: clamp(var(--sp-4), 4vw, var(--sp-6));
}

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-2);
}

.footer-logo__dot { color: var(--gold); }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }

.footer-col__heading {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--border-dark);
}

.footer-nav { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-nav li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--dur-fast); }
.footer-nav li a:hover { color: var(--gold); }

.footer-address p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.75; }
.footer-link { color: var(--gold); }
.footer-link:hover { color: var(--gold-bright); }
.footer-cta { margin-top: var(--sp-3); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-block: var(--sp-3);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.28); letter-spacing: 0.03em; }
.footer-sub { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(153, 153, 153,0.5); text-transform: uppercase; }


/* ─── 24. GSAP INITIAL STATES ───────────────────────────────────── */
/*
   Elements that GSAP animates start invisible.
   GSAP sets opacity: 0 / transform via JS — these are just
   fallbacks for no-JS / print.
*/
@media (prefers-reduced-motion: reduce) {
  /* Skip all animations */
  * { animation: none !important; transition-duration: 0.001ms !important; }
}


/* ─── 25. MISC / WORDPRESS ──────────────────────────────────────── */
.alignleft  { float: left; margin: 0 var(--sp-3) var(--sp-3) 0; }
.alignright { float: right; margin: 0 0 var(--sp-3) var(--sp-3); }
.aligncenter { text-align: center; margin-inline: auto; display: block; }
.alignwide  { max-width: calc(var(--container-wide) + var(--container-pad) * 2); margin-inline: calc(0px - var(--container-pad)); }
.alignfull  { max-width: 100%; margin-inline: calc(0px - var(--container-pad)); }

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.no-content, .no-results {
  text-align: center;
  padding: var(--sp-7);
  color: var(--dim);
}

/* CF7 overrides — light theme */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 11px 15px;
  outline: none;
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-bg);
}

.wpcf7-form input[type="submit"] {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  padding: 13px 32px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  transition: background var(--dur-fast);
}

.wpcf7-form input[type="submit"]:hover { background: var(--gold-bright); }
.wpcf7-not-valid-tip { color: #c0392b; font-size: 0.76rem; margin-top: 4px; }
.wpcf7-response-output { padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm); margin-top: var(--sp-3); font-size: 0.85rem; }
.wpcf7-mail-sent-ok { border: 1px solid var(--gold); color: var(--gold-dim); background: var(--gold-bg); }
.wpcf7-validation-errors { border: 1px solid #c0392b; color: #c0392b; background: rgba(192,57,43,0.06); }

/* ─── 26. RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__headline { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --container-pad: 20px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__meta { flex-direction: column; gap: var(--sp-3); }
  .hero__stat-divider { display: none; }
  .btn--lg { padding: 13px 22px; font-size: 0.88rem; }
}


/* ============================================================
   CURTAIN LOADER
   Two near-black panels split open on first visit.
   Transform-origin: right (left panel) and left (right panel)
   so they both shrink toward the center seam, then vanish.
   ============================================================ */

.dt-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* pointer-events blocked while visible */
  overflow: hidden;
}

.dt-curtain__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;           /* slight overlap at seam */
  background: #0C0C0C;
  will-change: transform;
}

.dt-curtain__left {
  left: 0;
  transform-origin: right center;
}

.dt-curtain__right {
  right: 0;
  transform-origin: left center;
}

/* Logo centered above both panels */
.dt-curtain__logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 30vw, 360px);
  pointer-events: none;
  user-select: none;
}

.dt-curtain__logo .dramatec-logo-svg { width: 100%; height: auto; display: block; }
.dt-curtain__logo .logo-path { fill: var(--white); }

/* Thin gold underline beneath curtain logo */
.dt-curtain__logo::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.6;
}


/* ============================================================
   SVG LOGO VARIANTS
   .dramatec-logo-svg is the inline SVG included via logo.php.
   Variant modifiers control fill color; sizing is set in context.
   ============================================================ */

/* Header logo */
.site-logo .dramatec-logo-svg {
  height: 26px;
  width: auto;
  display: block;
}

.site-logo .logo-path { fill: var(--white); }

/* Footer logo */
.footer-logo .dramatec-logo-svg {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 0;
}

.footer-logo .logo-path { fill: var(--muted); }
.footer-logo:hover .logo-path { fill: var(--gold); }

/* Variant classes */
.dramatec-logo-svg--dark  .logo-path { fill: var(--black); }
.dramatec-logo-svg--light .logo-path { fill: var(--white); }


/* ============================================================
   HERO — dt-hero__ ELEMENTS
   The outer .hero section keeps its existing layout styles.
   These classes add the specific atmosphere layers, word-split
   animation setup, vertical rules, and renamed element aliases.
   ============================================================ */

/* Ambient light glow (neutral grey, upper-center) */
.dt-hero__light {
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 90% at 50% -5%, rgba(153, 153, 153, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 25%, rgba(153, 153, 153, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(153, 153, 153, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  animation: drift 15s ease-in-out infinite alternate;
  opacity: 0.8;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(4%, 5%) scale(1.1) rotate(2deg); }
  66% { transform: translate(-3%, 4%) scale(0.95) rotate(-1deg); }
  100% { transform: translate(2%, -4%) scale(1.05) rotate(1deg); }
}

/* Crosshatch grid (matches existing .hero__grid-lines style) */
.dt-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 85% 90% at 50% 50%, black 20%, transparent 100%);
}

/* ─── Hero Slider ──────────────────────────────────────────────── */
.dt-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.dt-hero__slide {
  position: absolute;
  inset: 0;
}

.dt-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  display: block;
  filter: grayscale(100%);
}

/* Cinematic dual-layer gradient — heavy left for text readability */
.dt-hero__slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(9,9,9,0.90) 0%, rgba(9,9,9,0.55) 45%, rgba(9,9,9,0.20) 100%),
    linear-gradient(to top,    rgba(9,9,9,0.55) 0%, transparent        55%);
}

/* Fallback gradient when no images are uploaded */
.dt-hero__slide--fallback {
  background: linear-gradient(135deg, #111111 0%, #090909 100%);
}

/* ── Navigation dots ───────────────────────────────────── */
.dt-hero__slider-dots {
  position: absolute;
  bottom: clamp(28px, 5vh, 48px);
  right: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.dt-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(237, 232, 223, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: width 0.45s var(--ease-out), background 0.45s;
}

.dt-slider-dot.is-active {
  width: 28px;
  background: var(--gold);
}

/* ── Arrows ────────────────────────────────────────────── */
.dt-slider-prev,
.dt-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(9, 9, 9, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0; 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    opacity      var(--dur-med),                                                                                                   
    background   var(--dur-fast),
    border-color var(--dur-fast);  
}

.hero:hover .dt-slider-prev,                                                                                                       
.hero:hover .dt-slider-next { opacity: 1; }    

.dt-slider-prev { left:  var(--container-pad); }
.dt-slider-next { right: var(--container-pad); }

.dt-slider-prev:hover,
.dt-slider-next:hover {
  background: rgba(153, 153, 153, 0.2);
  border-color: var(--gold);
}

/* ── Slide counter ─────────────────────────────────────── */
.dt-hero__slider-counter {
  position: absolute;
  bottom: clamp(28px, 5vh, 50px);
  left: var(--container-pad);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(237, 232, 223, 0.38);
  z-index: 10;
  user-select: none;
}

/* ── Progress bar ──────────────────────────────────────── */
.dt-hero__slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(237, 232, 223, 0.08);
  z-index: 10;
  overflow: hidden;
}

.dt-hero__slider-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .dt-slider-prev,
  .dt-slider-next { width: 40px; height: 40px; font-size: 0.9rem; }
  .dt-hero__slider-counter { display: none; }
}
/* ─── End Hero Slider ─────────────────────────────────── */

/* Vertical edge rules */
.dt-hero__vert-l,
.dt-hero__vert-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--border) 15%,
    var(--border) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  transform-origin: top center;
  will-change: transform, opacity;
}

.dt-hero__vert-l { left:  var(--container-pad); }
.dt-hero__vert-r { right: var(--container-pad); }

/* Main inner container */
.dt-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  padding-block: clamp(var(--sp-8), 14vh, 180px);
}

.dt-hero__content { max-width: 900px; }

/* Eyebrow (replaces .hero__overline) */
.dt-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}

/* Headline — sized like .hero__headline */
.dt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: var(--sp-5);
}

.dt-hero__title-line--light {
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.dt-hero__title-line--bold {
  font-weight: 900;
  color: var(--black);
}

/* Word-split containers — overflow:hidden clips the reveal */
.dt-hero__title .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1;
}

/* Each .word starts translated down; GSAP animates to y:0 */
.dt-hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

/* Space between word-wraps (lost in inline-block flow) */
.dt-hero__title-line {
  display: block;
  white-space: nowrap;
}

/* Subtitle (replaces .hero__tagline) */
.dt-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: var(--sp-4);
  max-width: 52ch;
}

/* CTA group (replaces .hero__actions) */
.dt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Scroll indicator (replaces .hero__scroll-cta) */
.dt-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
}

.hero__scroll-line::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(153, 153, 153, 0.3);
  border-radius: 50%;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--mid);
  text-transform: uppercase;
  margin-top: 10px;
}

/* Responsive hero tweaks */
@media (max-width: 768px) {
  .dt-hero__title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .dt-hero__vert-l,
  .dt-hero__vert-r { display: none; }
}

@media (max-width: 480px) {
  .dt-hero__cta  { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CUSTOM CURSOR — MATCHED FROM @STYLE.CSS
   ============================================================ */
.dt-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}

.dt-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(153, 153, 153, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  will-change: transform;
}

@media (hover: none) {
  body { cursor: auto !important; }
  a, button, input, textarea { cursor: auto !important; }
  .dt-cursor, .dt-cursor-ring { display: none; }
}

body { cursor: none; }
a, button, input, textarea, label, select { cursor: none; }

/* ============================================================
   ABOUT SECTION SPECIAL REVEAL — MATCHED FROM @STYLE.CSS
   ============================================================ */
.dt-about__visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.dt-about__visual-bg {
  width: 100%; height: 100%;
  background: linear-gradient(150deg, #0d0d0d 0%, #141008 50%, #0a0a12 100%);
  position: relative;
  overflow: hidden;
}

.dt-about__visual-bg::before {
  content: '';
  position: absolute; inset: -50%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(153, 153, 153, 0.025) 80px, rgba(153, 153, 153, 0.025) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(153, 153, 153, 0.025) 80px, rgba(153, 153, 153, 0.025) 81px);
}

.dt-about__kanji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(153, 153, 153, 0.055);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.dt-about__mask {
  position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: left;
  z-index: 2;
}



