:root {
  --bg: #0a0a0a;
  --bg-soft: #0d1410;
  --bg-card: #121612;
  --text: #f5f1ea;
  --muted: #8a8578;
  --line: #2a2e28;
  --accent: #d4a574;              /* warm gold */
  --accent-soft: rgba(212, 165, 116, 0.12);
  --accent-2: #3a5a48;            /* deep forest green */
  --accent-2-soft: rgba(58, 90, 72, 0.15);
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

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

a { color: inherit; text-decoration: none; }

img, video { display: block; max-width: 100%; height: auto; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ---------- NAV ---------- */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

header.nav.scrolled,
header.nav.solid {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.logo::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-2px);
  margin-right: 6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
nav a:hover,
nav a.active { color: var(--text); }
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
nav a:hover::after,
nav a.active::after { transform: scaleX(1); transform-origin: left; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.4s var(--ease);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.cta-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.cta-btn .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  padding: 8px;
}

@media (max-width: 980px) {
  nav ul { display: none; }
  .cta-btn { display: none; }
  .hamburger { display: block; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-drawer.open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text);
}
.mobile-drawer a.active { color: var(--accent); font-style: italic; }
.mobile-drawer .close {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero.short { min-height: 70vh; padding: 180px 0 100px; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(212, 165, 116, 0.14), transparent 55%),
    radial-gradient(ellipse at 82% 68%, rgba(58, 90, 72, 0.28), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(30, 50, 40, 0.25), transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #101412 50%, #0a0a0a 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: 0;
  display: block;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, var(--bg) 100%);
  z-index: 1;
}

.hero-inner { position: relative; z-index: 2; width: 100%; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 9.5vw, 150px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.3s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  max-width: 580px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeIn 1s 0.7s var(--ease) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s 0.9s var(--ease) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease);
}
.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}
.btn-primary svg { transition: transform 0.4s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.4s var(--ease);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-ghost .play {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.btn-ghost:hover .play { transform: scale(1.1); }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s 1.3s var(--ease) forwards;
}
.scroll-hint .bar {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: drop 2s var(--ease) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- CLIENTS STRIP ---------- */
.clients {
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(58, 90, 72, 0.08), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.clients .eyebrow {
  display: flex;
  justify-content: center;
  margin: 0 auto 44px;
  color: var(--accent-2);
}
.clients .eyebrow::before {
  background: var(--accent-2);
}
.clients-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}
.clients-track {
  display: flex;
  gap: 0;
  align-items: center;
  width: max-content;
  animation: scroll-clients 65s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }

/* shared cell style for both logos and text */
.client-name,
.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 48px;
  border-right: 1px solid rgba(58, 90, 72, 0.22);
  cursor: default;
  min-width: 160px;
}

/* text-only clients */
.client-name {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 234, 0.32);
  white-space: nowrap;
  transition: color 0.5s var(--ease);
}
.client-name:hover { color: rgba(245, 241, 234, 0.7); }

/* logo image clients */
.client-logo img {
  height: 38px;
  width: 140px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.38;
  transition: opacity 0.5s var(--ease);
}
.client-logo:hover img { opacity: 0.82; }

/* compact/square logos need more height to read properly */
.client-logo img[alt="Oli Carter"],
.client-logo img[alt="Elizabeth Gage"],
.client-logo img[alt="Optimum Structures"],
.client-logo img[alt="The Helicopter Girls"] {
  height: 58px;
  width: 100px;
}

@keyframes scroll-clients { to { transform: translateX(-50%); } }

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.marquee span::after {
  content: "*";
  color: var(--accent);
  font-style: normal;
  font-size: 18px;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- SECTION SHARED ---------- */
section { padding: 140px 0; position: relative; }
@media (max-width: 640px) { section { padding: 90px 0; } }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 820px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.section-head .meta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.8;
}
.section-head .meta::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 16px;
}

/* ---------- WORK GRID ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.work-item.large { grid-column: span 7; aspect-ratio: 16/10; }
.work-item.small { grid-column: span 5; }
.work-item.third { grid-column: span 4; aspect-ratio: 3/4; }
.work-item.half { grid-column: span 6; aspect-ratio: 16/10; }
.work-item.full { grid-column: span 12; aspect-ratio: 21/9; }

@media (max-width: 900px) {
  .work-item.large, .work-item.small, .work-item.third, .work-item.half {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
}

.work-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
  filter: grayscale(40%) brightness(0.85);
}
.work-item:hover .work-thumb {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.thumb-1 { background-image: linear-gradient(135deg, #2a1f18 0%, #6b4a2e 50%, #1a1410 100%); }
.thumb-2 { background-image: linear-gradient(160deg, #1a1d24 0%, #3a4a5c 50%, #0e1116 100%); }
.thumb-3 { background-image: linear-gradient(145deg, #3a2520 0%, #8b5a3c 50%, #1f1512 100%); }
.thumb-4 { background-image: linear-gradient(125deg, #1a1a20 0%, #4a4458 50%, #0e0e12 100%); }
.thumb-5 { background-image: linear-gradient(150deg, #2a1814 0%, #a8613e 50%, #1a0d08 100%); }
.thumb-6 { background-image: linear-gradient(165deg, #14181a 0%, #3a5458 50%, #0a0d0e 100%); }
.thumb-7 { background-image: linear-gradient(135deg, #1e1a14 0%, #5a4030 50%, #0f0c08 100%); }
.thumb-8 { background-image: linear-gradient(140deg, #14181e 0%, #3a4860 50%, #080a0e 100%); }

.work-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  transition: background 0.5s;
}
.work-item:hover .work-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.3) 100%);
}
.work-cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.work-cat::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.work-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
  margin-bottom: 6px;
}
.work-year {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
}

/* ---------- SERVICES LIST ---------- */
.services-block {
  background:
    radial-gradient(ellipse at 80% 15%, rgba(58, 90, 72, 0.22), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(40, 70, 55, 0.18), transparent 50%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* decorative green corner graphic */
.services-block::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(58, 90, 72, 0.18);
  pointer-events: none;
  z-index: 0;
}
.services-block::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(58, 90, 72, 0.12);
  pointer-events: none;
  z-index: 0;
}
.services-block .container { position: relative; z-index: 1; }
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.5s var(--ease);
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-left: 16px; }
.service-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  transform: scaleY(0);
  transition: transform 0.5s var(--ease);
}
.service-row:hover::before { transform: scaleY(1); }
.service-row:hover { background: rgba(58, 90, 72, 0.04); }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
}
.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.01em;
}
.service-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.service-price {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.service-price strong { color: var(--accent); font-weight: 500; }

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .service-desc, .service-price { grid-column: 2; }
  .service-price { margin-top: 4px; }
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

.about-img {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2018 0%, #6b4a2e 40%, #1a1410 100%);
  background-size: cover;
  background-position: center center;
  align-self: stretch;
}
/* gradient fade right edge into page background so text pops */
.about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 45%, var(--bg) 100%),
    linear-gradient(to bottom, transparent 65%, rgba(10,10,10,0.6) 100%);
  z-index: 1;
}
@media (max-width: 900px) {
  .about-img::before {
    background:
      linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  }
}
.about-img::after { content: none; }

.about-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.about-content h3 em { font-style: italic; color: #f5f1ea; font-weight: 500; }

.about-content p {
  color: #c8c4bc;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content p strong { color: #f5f1ea; font-weight: 500; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- PROCESS / JOURNEY ---------- */
#journey {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(58, 90, 72, 0.20), transparent 60%),
    var(--bg);
  position: relative;
}
#journey::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(58, 90, 72, 0.6) 30%, rgba(212, 165, 116, 0.4) 50%, rgba(58, 90, 72, 0.6) 70%, transparent);
}
#journey::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(58, 90, 72, 0.3) 50%, transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-2) 15%, var(--accent) 50%, var(--accent-2) 85%, transparent);
  opacity: 0.5;
  z-index: 0;
}
@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(3, 1fr); } .process-grid::before { display: none; } }
@media (max-width: 760px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.5s, transform 0.5s var(--ease), background 0.5s;
  background: var(--bg-card);
  position: relative;
  z-index: 1;
}
.process-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-4px);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(58, 90, 72, 0.14) 100%);
  box-shadow: 0 12px 40px rgba(58, 90, 72, 0.15), 0 0 0 1px rgba(58, 90, 72, 0.3);
}
.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.process-num::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(58, 90, 72, 0.2);
}
.process-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ---------- PORTAL NAV LINK ---------- */
.portal-nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(212,165,116,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.portal-nav-link:hover {
  background: rgba(212,165,116,0.1);
  border-color: rgba(212,165,116,0.6);
}
@media (max-width: 900px) { .portal-nav-link { display: none; } }

/* ---------- CLIENT PORTAL SECTION ---------- */
.portal-section {
  padding: 120px 0 100px;
  border-top: 1px solid var(--line);
  position: relative;
}
.portal-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.portal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) {
  .portal-inner { grid-template-columns: 1fr; gap: 48px; }
}
.portal-content .eyebrow { justify-content: flex-start; }
.portal-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
}
.portal-content h2 em { font-style: italic; color: var(--accent); }
.portal-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 36px;
}
.portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.portal-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.portal-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.portal-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.portal-feature:hover { border-color: rgba(212,165,116,0.25); }
.portal-feature-icon {
  width: 42px; height: 42px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.portal-feature h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.portal-feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- CONTACT BLOCK ---------- */
.contact-block {
  position: relative;
  padding: 180px 0 120px;
  text-align: center;
  overflow: hidden;
}
.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 10%, rgba(212, 165, 116, 0.10), transparent 55%),
    radial-gradient(ellipse at 70% 90%, rgba(58, 90, 72, 0.28), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(40, 70, 55, 0.20), transparent 45%);
  z-index: 0;
}

/* green arc graphic behind contact section */
.contact-block::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(58, 90, 72, 0.14);
  pointer-events: none;
  z-index: 0;
}
.contact-inner { position: relative; z-index: 1; }

.contact-block .eyebrow { margin: 0 auto 36px; justify-content: center; }

.contact-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contact-block h2 em { font-style: italic; color: var(--accent); font-weight: 500; }

.contact-block .lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 56px;
}

.contact-email {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--accent);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.3s;
  margin-bottom: 60px;
}
.contact-email:hover { opacity: 0.7; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  padding: 16px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- CONTACT FORM ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: 60px; }
}

.form-side h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.form-side h3 em { font-style: italic; color: var(--accent); font-weight: 500; }

.form-side p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-detail .value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  transition: color 0.3s;
}
.contact-detail:hover .value { color: var(--accent); }

form.enquiry {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  padding: 10px 0;
  transition: border-color 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field select { appearance: none; background-image: none; color: var(--text); }
.field select option { background: var(--bg); color: var(--text); }

form.enquiry button {
  align-self: flex-start;
  margin-top: 12px;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
.footer-brand .logo { font-size: 22px; margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  max-width: 340px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ---------- SINGLE COL TEXT BLOCK ---------- */
.text-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.text-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.text-block h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.text-block p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  padding: 180px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 1100px;
}
.page-header h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.page-header .lead {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 620px;
  line-height: 1.7;
}
.page-header .eyebrow { margin-bottom: 36px; }

/* ---------- SHOWREEL PLAYER ---------- */
.showreel-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: #0a0806;
  border: 1px solid var(--line);
  cursor: pointer;
}
.showreel-vid {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showreel-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(0,0,0,0.45);
  transition: background 0.4s var(--ease), opacity 0.4s var(--ease);
}
.showreel-cover.hidden { opacity: 0; pointer-events: none; }
.showreel-play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.showreel-play-btn:hover { transform: scale(1.1); background: var(--text); }
.showreel-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- WORK GRID VIDEO HOVER ---------- */
.work-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: 1;
}
.work-item:hover .work-video { opacity: 1; }
.work-item:hover .work-thumb { filter: grayscale(0%) brightness(1); }
.work-overlay { z-index: 2; }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
