@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:       #0A0A0A;
  --bg2:      #111111;
  --bg3:      #1A1A1A;
  --text:     #F0EDE6;
  --text-mid: #888880;
  --accent:   #C8956A;
  --border:   rgba(240,237,230,0.1);
  --font-display: 'Unbounded', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'DM Sans', sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:   20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s var(--ease), opacity 0.4s var(--ease);
}
nav.nav-solid {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
/* Homepage: hide nav items at top */
body.is-home nav.nav-top .nav-logo,
body.is-home nav.nav-top .nav-links { opacity: 0; pointer-events: none; }
body.is-home nav.nav-scrolled .nav-logo,
body.is-home nav.nav-scrolled .nav-links { opacity: 1; pointer-events: all; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: opacity 0.4s, color 0.3s;
  text-transform: uppercase;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 36px;
  transition: opacity 0.4s;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-static-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.01s;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.75) 80%,
    rgba(10,10,10,1) 100%);
}
.hero-logo-area {
  position: relative; z-index: 3;
  padding: clamp(72px, 11vh, 120px) 48px 0;
  width: 100%;
}
.hero-svg-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}
#heroSvgFilled {
  display: block;
  width: 100%; height: auto;
  opacity: 1;
  transition: opacity 0.25s ease;
}
#heroSvgOutlined {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 32px 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  border-top: 1px solid rgba(240,237,230,0.12);
}
.hero-statement {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300; font-style: italic;
  line-height: 1.3;
}
.hero-tagline {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.7);
  line-height: 1.9;
}
.hero-scroll {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.5);
  margin-top: 10px;
  display: flex; align-items: center; gap: 10px;
  justify-content: flex-end;
}
.hero-scroll::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: rgba(240,237,230,0.4);
}

/* ─── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-mid);
  padding: 0 36px;
  white-space: nowrap;
  text-transform: uppercase;
}
.marquee-sym { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS ─────────────────────────────────────────────── */
section { padding: 100px 48px; }
.section-label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 48px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::after {
  content: ''; display: block;
  height: 1px; width: 40px; background: var(--accent);
}

/* ─── ABOUT SNIPPET ────────────────────────────────────────── */
.about-snippet {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: center;
}
.about-snippet-label {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  color: rgba(240,237,230,0.09);
}
.about-snippet-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300; line-height: 1.55;
  color: rgba(240,237,230,0.85);
}
.about-snippet-text p { margin-bottom: 18px; }

/* ─── SERVICES ACCORDION ───────────────────────────────────── */
.services-section { background: var(--bg); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
}
.services-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300; color: rgba(240,237,230,0.65);
  max-width: 420px; line-height: 1.5;
}
.service-item { border-top: 1px solid var(--border); overflow: hidden; }
.service-item:last-child { border-bottom: 1px solid var(--border); }
.service-trigger {
  width: 100%; background: none; border: none;
  cursor: pointer; padding: 28px 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; text-align: left;
}
.service-trigger-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700; color: var(--text);
  transition: color 0.3s;
  line-height: 1;
}
.service-trigger:hover .service-trigger-name,
.service-item.open .service-trigger-name { color: var(--accent); }
.service-infinity {
  font-size: 28px; color: var(--accent);
  transition: transform 0.4s var(--ease), opacity 0.3s;
  flex-shrink: 0; opacity: 0.4;
}
.service-item.open .service-infinity { transform: rotate(90deg); opacity: 1; }
.service-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s;
}
.service-item.open .service-body { max-height: 400px; padding-bottom: 40px; }
.service-body-inner {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 56px; padding-top: 4px;
}
.service-body-text {
  font-size: 15px; line-height: 1.75;
  color: rgba(240,237,230,0.7);
}
.service-body-tags { display: flex; flex-direction: column; gap: 10px; }
.service-tag {
  font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px; border: 1px solid var(--border);
  color: var(--text-mid); border-radius: 100px;
  width: fit-content;
  transition: border-color 0.3s, color 0.3s;
}
.service-tag:hover { border-color: var(--accent); color: var(--text); }

/* ─── JUICE GRID ───────────────────────────────────────────── */
.work-section { padding: 0 48px 120px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-item {
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: var(--radius);
}
.work-item.feat-lg  { grid-column: span 8; aspect-ratio: 16/10; }
.work-item.feat-sm  { grid-column: span 4; aspect-ratio: 16/10; }
.work-item.std      { grid-column: span 4; aspect-ratio: 1; }
.work-item.std-wide { grid-column: span 6; aspect-ratio: 4/3; }
.work-item img, .work-item video {
  transition: transform 0.8s var(--ease), border-radius 0.5s var(--ease);
  border-radius: var(--radius);
}
.work-item:hover img, .work-item:hover video {
  transform: scale(1.06);
  border-radius: 56px;
}
/* Text BELOW image */
.work-item-caption {
  padding: 14px 4px 0;
  position: static;
}
.work-item-title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  margin-bottom: 4px; line-height: 1.2;
}
.work-item-client {
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.work-item-services {
  font-size: 11px; color: var(--text-mid); margin-top: 4px;
}
.more-juice-wrap { text-align: center; padding: 56px 0 0; }

/* ─── CTA / BUTTONS ─────────────────────────────────────────── */
.cta-strip {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; gap: 40px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 300; line-height: 1.2; max-width: 560px;
}
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 36px; background: var(--text); color: var(--bg);
  cursor: pointer; border: none;
  transition: background 0.3s, gap 0.3s;
  font-family: var(--font-sans); border-radius: 100px;
  font-weight: 500;
}
.btn:hover { background: var(--accent); gap: 22px; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 100px;
}
.btn-outline:hover { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 20px 52px; font-size: 11px; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 72px 48px 48px; }
.footer-logo-full {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 130px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(240,237,230,0.08);
  display: block; text-align: center;
  margin-bottom: 56px; line-height: 1;
  transition: color 0.5s var(--ease);
  cursor: default;
  text-transform: uppercase;
}
.footer-logo-full:hover { color: rgba(240,237,230,0.55); }
.footer-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  border-top: 1px solid var(--border); padding-top: 36px;
}
.footer-tagline { font-size: 12px; color: var(--text-mid); line-height: 1.6; }
.footer-nav {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
.footer-nav a {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-mid);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--text); }
.footer-right { text-align: center; justify-self: center; width: 100%; }
.footer-location { font-size: 12px; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.footer-copy { font-size: 10px; color: rgba(136,136,128,0.4); }

/* ─── PAGE HEADER (outlined title) ────────────────────────── */
.page-header { padding: 160px 48px 72px; border-bottom: 1px solid var(--border); }
.page-header-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--text);
  cursor: default;
}
.page-subtitle {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 300; font-style: italic;
  color: var(--text-mid); max-width: 300px;
  text-align: right; line-height: 1.5;
}

/* ─── BACK LINK ───────────────────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mid); transition: color 0.3s, gap 0.3s;
  padding: 140px 48px 0;
}
.back-link:hover { color: var(--text); gap: 16px; }

/* ─── PROJECT HERO ────────────────────────────────────────── */
.project-hero {
  height: 86vh; position: relative;
  overflow: hidden; border-radius: 0 0 28px 28px;
}
.project-hero img, .project-hero video {
  transition: transform 10s var(--ease);
}
.project-hero:hover img, .project-hero:hover video { transform: scale(1.03); }
.project-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.88) 100%);
}

/* ─── PROJECT META ────────────────────────────────────────── */
.project-meta {
  padding: 72px 48px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; border-top: 1px solid var(--border); margin-top: 56px;
}
.project-title-lg {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 66px);
  font-weight: 300; line-height: 1.1;
  grid-column: 1 / -1;
  padding-bottom: 56px; border-bottom: 1px solid var(--border);
}
.project-detail-label {
  font-size: 9px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.project-detail-value {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 300; line-height: 1.5;
}

/* ─── SCROLLING SCOPE ─────────────────────────────────────── */
.scope-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; margin: 0;
}
.scope-track {
  display: flex; width: max-content;
  animation: marquee 20s linear infinite;
  align-items: center;
}
.scope-item {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mid); padding: 0 28px;
  white-space: nowrap; line-height: 1;
}
.scope-sym {
  color: var(--accent); font-size: 16px;
  line-height: 1; display: inline-flex;
  align-items: center; margin: 0 4px;
}

/* ─── PROJECT CONTENT BLOCKS ──────────────────────────────── */
.project-description {
  padding: 72px 48px; max-width: 840px;
}
.project-description p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300; line-height: 1.65; color: var(--text); margin-bottom: 24px;
}
.desc-film-row {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 56px; padding: 72px 48px; align-items: start;
}
.desc-film-row .project-description { padding: 0; max-width: none; }
.text-block { padding: 56px 48px; max-width: 860px; }
.text-block h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700; margin-bottom: 20px;
  color: var(--accent);
  line-height: 1.2;
}
.text-block p {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 300; line-height: 1.7;
  color: rgba(240,237,230,0.8); margin-bottom: 18px;
}
.two-col {
  padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700; margin-bottom: 18px;
  color: var(--accent);
}
.two-col-text p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 300; line-height: 1.7;
  color: rgba(240,237,230,0.78); margin-bottom: 14px;
}
.two-col-media {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/3;
}
.two-col-media.vertical { aspect-ratio: 2/3; }
.two-col-media img, .two-col-media video {
  border-radius: var(--radius); transition: transform 0.8s var(--ease);
}
.two-col-media:hover img, .two-col-media:hover video { transform: scale(1.04); }

/* ─── VIDEO CONTAINERS ────────────────────────────────────── */
.video-full { padding: 0 48px 56px; }
.video-full-label {
  font-size: 9px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.video-full-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; border-radius: var(--radius);
  background: var(--bg2); border: 1px solid var(--border);
}
.video-full-wrap iframe, .video-full-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-portrait-wrap {
  position: relative; aspect-ratio: 9/16;
  max-width: 380px; margin: 0 auto 56px;
  overflow: hidden; border-radius: var(--radius);
  background: var(--bg2); border: 1px solid var(--border);
}
.video-portrait-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-half-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; border-radius: var(--radius);
  background: var(--bg2); border: 1px solid var(--border);
}
.video-half-wrap iframe, .video-half-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.project-gallery { padding: 0 48px 96px; display: grid; gap: 10px; }
.gallery-full { grid-column: 1/-1; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); }
.gallery-half { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.gallery-vert { aspect-ratio: 2/3; overflow: hidden; border-radius: var(--radius); }
.gallery-wide { aspect-ratio: 16/7; overflow: hidden; border-radius: var(--radius); }
.gallery-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-full img, .gallery-half img, .gallery-vert img, .gallery-wide img {
  transition: transform 0.8s var(--ease); border-radius: var(--radius);
}
.gallery-full:hover img, .gallery-half:hover img,
.gallery-vert:hover img, .gallery-wide:hover img { transform: scale(1.04); }

/* ─── GANTT CHART ─────────────────────────────────────────── */
.gantt-section {
  padding: 72px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.gantt-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 24px); font-weight: 700; margin-bottom: 6px;
}
.gantt-sub { font-size: 13px; color: var(--text-mid); margin-bottom: 40px; }
.gantt-wrap { display: flex; flex-direction: column; gap: 18px; }
.gantt-row { display: flex; align-items: center; gap: 18px; }
.gantt-label {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mid);
  width: 140px; flex-shrink: 0;
}
.gantt-track {
  flex: 1; height: 36px;
  background: rgba(240,237,230,0.03);
  border-radius: 100px; position: relative; overflow: hidden;
}
.gantt-bar {
  position: absolute; top: 0; height: 100%;
  border-radius: 100px;
  border: 1.5px solid rgba(200,149,106,0.35);
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s;
  cursor: pointer;
  display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.gantt-bar::after {
  content: attr(data-label);
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: transparent;
  transition: color 0.3s; white-space: nowrap;
  font-family: var(--font-sans); font-weight: 500;
}
.gantt-bar:hover { background: rgba(200,149,106,0.18); border-color: var(--accent); }
.gantt-bar:hover::after { color: var(--accent); }
.gantt-phases {
  display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap;
}
.gantt-phase {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--text-mid);
}

/* ─── PROJECT NAV ─────────────────────────────────────────── */
.project-nav {
  padding: 72px 48px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.project-nav a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mid); transition: color 0.3s;
  display: flex; align-items: center; gap: 10px;
}
.project-nav a:hover { color: var(--text); }

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.about-statement {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300; line-height: 1.2; margin-bottom: 40px;
}
.about-body { font-family: var(--font-serif); font-size: 19px; font-weight: 300; line-height: 1.7; color: rgba(240,237,230,0.8); }
.about-body p { margin-bottom: 22px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 72px; }
.value-card { background: var(--bg2); padding: 40px 32px; border: 1px solid var(--border); transition: background 0.3s, border-color 0.3s; }
.value-card:hover { background: var(--bg3); border-color: var(--accent); }
.value-title { font-family: var(--font-serif); font-size: 19px; font-weight: 500; margin-bottom: 12px; color: var(--accent); }
.value-body { font-size: 14px; line-height: 1.65; color: rgba(240,237,230,0.68); }
.vision-block { padding: 88px 48px; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.vision-text { font-family: var(--font-serif); font-size: clamp(19px, 2.5vw, 33px); font-weight: 300; font-style: italic; line-height: 1.45; max-width: 820px; margin: 0 auto; color: rgba(240,237,230,0.85); }

/* ─── SERVICES PAGE ───────────────────────────────────────── */
.services-page .service-block {
  border-top: 1px solid var(--border); padding: 52px 0;
  display: grid; grid-template-columns: 2fr 3fr; gap: 72px;
}
.services-page .service-block:last-child { border-bottom: 1px solid var(--border); }
.service-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 40px); font-weight: 300; line-height: 1.1;
}
.service-body-p { font-size: 14px; line-height: 1.75; color: rgba(240,237,230,0.68); margin-bottom: 24px; }
.service-tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-header {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px); font-weight: 900;
  line-height: 0.88; margin-bottom: 72px;
  color: var(--text);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-circle {
  width: 260px; height: 260px;
  border-radius: 50%; object-fit: cover;
  object-position: center;
  display: block; margin-bottom: 36px;
  border: 1px solid var(--border);
  transition: border-radius 0.6s var(--ease), transform 0.4s var(--ease), border-color 0.4s;
  cursor: pointer;
}
.contact-circle:hover {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  transform: scale(1.05);
  border-color: var(--accent);
}
.contact-info p { font-family: var(--font-serif); font-size: 19px; font-weight: 300; line-height: 1.65; color: rgba(240,237,230,0.75); margin-bottom: 36px; }
.contact-email { font-family: var(--font-serif); font-size: 24px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 16px; display: inline-block; transition: border-color 0.3s; }
.contact-email:hover { border-color: var(--accent); }
.form-group { margin-bottom: 26px; }
.form-label { display: block; font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 12px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border); color: var(--text);
  font-family: var(--font-sans); font-size: 15px; padding: 10px 0;
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg2); }

/* ─── SOCIAL MEDIA CLIENTS ANIMATION ─────────────────────── */
.clients-drop {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 32px 0;
}
.client-pill {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid var(--border);
  border-radius: 100px; color: var(--text);
  opacity: 0; transform: translateY(20px);
  transition: border-color 0.3s;
}
.client-pill.drop-in { animation: dropIn 0.5s var(--ease) forwards; }
.client-pill:hover { border-color: var(--accent); }
@keyframes dropIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── FADE ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITIES ───────────────────────────────────────────── */
.spacer-sm { height: 32px; }
.spacer-md { height: 56px; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  section { padding: 60px 24px; }
  .hero-logo-area { padding: 72px 24px 0; }
  .hero-bottom { padding: 24px; grid-template-columns: 1fr; }
  .hero-tagline { text-align: left; }
  .about-snippet-inner, .about-grid, .values-grid,
  .contact-grid, .two-col, .services-page .service-block,
  .service-body-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .work-item.feat-lg, .work-item.feat-sm { grid-column: span 12; }
  .work-item.std, .work-item.std-wide { grid-column: span 6; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-nav { align-items: flex-start; }
  .footer-right { grid-column: 1/-1; text-align: left; }
  .project-meta { grid-template-columns: 1fr; gap: 24px; }
  .desc-film-row { grid-template-columns: 1fr; }
  .page-header { padding: 130px 24px 48px; }
  .page-header-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .page-subtitle { text-align: left; }
  .back-link { padding: 110px 24px 0; }
  .project-description, .project-gallery, .project-meta, .project-nav,
  .desc-film-row, .text-block, .two-col, .video-full, .gantt-section { padding-left: 24px; padding-right: 24px; }
  .gallery-2col, .gallery-3col { grid-template-columns: 1fr; }
  .work-section { padding: 0 24px 72px; }
}
@media (max-width: 600px) {
  .work-item.std, .work-item.std-wide { grid-column: span 12; }
  .footer-bottom { grid-template-columns: 1fr; }
  .gantt-label { width: 90px; }
}

/* ─── HAMBURGER (mobile) ──────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
  position: relative;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-mobile-menu a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
}
