:root {
  /* Palette per brand brief: ~70% pearl/ivory, 15% soft sand, 10% charcoal, 5% champagne gold */
  --bg: #fcfaf6;           /* Pearl */
  --bg-elevated: #f5efe6;  /* Warm Ivory */
  --bg-sand: #e7d9c7;      /* Soft Sand */
  --panel: #ffffff;
  --panel-border: rgba(23,25,28,0.12);
  --gold: #c8933d;         /* Champagne Gold */
  --gold-deep: #9e6b28;    /* Burnished Gold */
  --gold-dim: rgba(200,147,61,0.5);
  --charcoal: #17191c;
  --ink: #111214;
  --accent: #681f34;       /* Deep Burgundy — used sparingly for creative accent */
  --text: #202124;
  --text-muted: #57534c;
  --text-dim: #8a8578;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'Manrope', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-xs: 8px; --space-sm: 16px; --space-md: 24px; --space-lg: 40px; --space-xl: 64px; --space-2xl: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 10000;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-deep); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 700;
}

.shell { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-elevated); }

/* ── Top utility bar ── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 501;
  background: var(--ink); color: rgba(255,255,255,0.75);
  height: 38px; display: flex; align-items: center; overflow: hidden;
  transition: height .25s var(--ease), opacity .25s var(--ease);
}
body.nav-scrolled .top-bar { height: 0; opacity: 0; }
body.nav-scrolled .nav { top: 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact a { font-size: 0.78rem; color: rgba(255,255,255,0.75); transition: color .2s var(--ease); }
.top-bar-contact a:hover { color: #fff; }
.top-bar-lang { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; letter-spacing: 0.06em; }
.top-bar-lang .lang-active { color: var(--gold); font-weight: 700; }
.top-bar-lang .lang-inactive { color: rgba(255,255,255,0.4); cursor: default; }
.top-bar-lang .lang-divider { color: rgba(255,255,255,0.3); }

/* ── Nav ── */
.nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 500;
  background: rgba(252,250,246,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-border);
  transition: box-shadow .3s var(--ease), background .3s var(--ease), top .25s var(--ease);
}
.nav.scrolled { background: rgba(252,250,246,0.98); box-shadow: 0 4px 20px rgba(32,33,36,0.05); }
.nav-inner {
  position: relative;
  max-width: 1180px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .25s var(--ease);
}
.nav.scrolled .nav-inner { padding: 10px 28px; }
.nav.scrolled .brand-mark { font-size: 1.12rem; }
.brand-mark { transition: font-size .25s var(--ease); }
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand-mark {
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  color: var(--ink); letter-spacing: -0.02em;
}
.brand-name {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; white-space: nowrap;
  color: var(--text-muted); padding: 9px 11px; border-radius: var(--radius-sm);
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.nav-cta {
  background: var(--ink); color: #fff; margin-left: 10px; font-weight: 600; padding: 10px 20px;
}
.nav-links a.nav-cta:hover { background: var(--gold-deep); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ── Services mega-menu ── */
.nav-dropdown { position: static; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500; white-space: nowrap;
  color: var(--text-muted); padding: 9px 11px; border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer; transition: color .2s var(--ease);
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active { color: var(--ink); }
.nav-dropdown-trigger svg { transition: transform .2s var(--ease); }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: 560px; max-width: 80vw;
  background: #fff; border: 1px solid var(--panel-border); border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(32,33,36,0.14);
  padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; pointer-events: none; transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 50;
}
.nav-dropdown.open .mega-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
@media (hover: hover) {
  .nav-dropdown:hover .mega-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
}
.nav-links a.mega-menu-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: var(--radius-sm);
  transition: background .15s var(--ease); min-width: 0; white-space: normal;
}
.mega-menu-item:hover { background: var(--bg-elevated); }
.mega-menu-item > span:last-child { min-width: 0; flex: 1; }
.mega-menu-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: grid; place-items: center; background: rgba(201,148,59,0.12); color: var(--gold-deep);
}
.mega-menu-title { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.mega-menu-desc { display: block; font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; line-height: 1.4; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-sm); font-size: 0.9rem;
  font-weight: 600; transition: all .2s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn-gold { background: var(--ink); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline { border-color: var(--panel-border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--ink); }

/* ── Hero (asymmetric two-column, not a centered stack) ── */
.hero {
  padding-top: 188px; padding-bottom: 70px;
  background: var(--bg);
}
.hero .shell {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: end;
}
.hero-content { max-width: 640px; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 22px; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero p.lead { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-panel {
  background: var(--bg-elevated); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 32px; align-self: stretch; display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.hero-panel .cred-item { display: flex; gap: 12px; align-items: flex-start; }
.hero-panel .cred-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.hero-panel .cred-item span { font-size: 0.92rem; color: var(--text); font-weight: 500; }

/* ── Stats band (own section, not nested in hero) ── */
.stats-band { background: var(--ink); padding: 48px 0; }
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}
.stat-item .stat-value { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: #fff; }
.stat-item .stat-label { font-size: 0.76rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── Photo hero (homepage) ── */
.hero-photo {
  position: relative; min-height: 620px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; padding-top: 188px; padding-bottom: 0;
  overflow: hidden;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,18,20,0.25) 0%, rgba(17,18,20,0.55) 45%, rgba(17,18,20,0.92) 100%);
}
.hero-photo .shell { position: relative; z-index: 1; display: block; padding-bottom: 0; }
.hero-photo .hero-content { max-width: 720px; }
.hero-photo .eyebrow { color: var(--gold); }
.hero-photo h1 { color: #fff; }
.hero-photo h1 em { color: var(--gold); }
.hero-photo p.lead { color: rgba(255,255,255,0.82); }
.hero-photo .btn-outline { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-photo .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.14); }

.hero-stats-overlay {
  position: relative; z-index: 1; margin-top: 44px; padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px;
}
.hero-stats-overlay .stat-value { color: #fff; }
.hero-stats-overlay .stat-label { color: rgba(255,255,255,0.58); }

/* ── Mini industry photo grid (homepage) ── */
.mini-industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.mini-industry-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
}
.mini-industry-card img { width: 100%; height: 100%; object-fit: cover; }
.mini-industry-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(17,18,20,0.78), transparent 65%);
}
.mini-industry-card span {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.94rem;
}

/* ── Section headings ── */
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.section-head p { color: var(--text-muted); margin-top: 12px; font-size: 1.02rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Service list (editorial rows, not icon-in-box cards) ── */
.services-list { border-top: 1px solid var(--panel-border); }
.service-row {
  display: grid; grid-template-columns: 60px 1fr 1.4fr auto; gap: 28px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid var(--panel-border);
}
.service-row .index { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--gold-deep); }
.service-row h3 { font-size: 1.2rem; }
.service-row p { color: var(--text-muted); font-size: 0.95rem; }
.service-row a.more { font-size: 0.86rem; font-weight: 600; color: var(--ink); white-space: nowrap; align-self: center; }
.service-row a.more:hover { color: var(--gold-deep); }

/* Kept for services.php detail layout */
.service-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: rgba(201,148,59,0.12); color: var(--gold-deep);
}

/* ── Interactive service switcher (services.php overview) ── */
.service-switcher { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 0; border: 1px solid var(--panel-border); border-radius: var(--radius); overflow: hidden; }
.service-switcher-list { background: var(--bg-elevated); border-right: 1px solid var(--panel-border); }
.service-switcher-tab {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 22px 24px; background: none; border: none; border-bottom: 1px solid var(--panel-border);
  cursor: pointer; transition: background .2s var(--ease);
}
.service-switcher-tab .index { font-family: var(--display); font-weight: 800; color: var(--text-dim); font-size: 0.95rem; }
.service-switcher-tab-title { font-weight: 600; color: var(--text-muted); }
.service-switcher-tab:hover { background: rgba(200,147,61,0.08); }
.service-switcher-tab.active { background: var(--panel); }
.service-switcher-tab.active .index, .service-switcher-tab.active .service-switcher-tab-title { color: var(--ink); }
.service-switcher-panel-mobile { display: none; }

.service-switcher-panel { position: relative; min-height: 460px; background: var(--panel); }
.service-switcher-panel-content {
  display: none; grid-template-columns: 1fr 1fr; height: 100%;
}
.service-switcher-panel-content.active { display: grid; }
.service-switcher-panel-content img { width: 100%; height: 100%; object-fit: cover; }
.service-switcher-panel-text { padding: 36px; display: flex; flex-direction: column; }
.service-switcher-panel-text h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 12px; }
.service-switcher-panel-text p { color: var(--text-muted); margin-bottom: 16px; }
.service-switcher-panel-text .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) {
  .service-switcher { grid-template-columns: 1fr; }
  .service-switcher-list { border-right: none; }
  .service-switcher-panel { display: none; }
  .service-switcher-tab { border-bottom: none; }
  .service-switcher-tab .service-switcher-tab-title::after { content: '+'; float: right; color: var(--text-dim); }
  .service-switcher-tab.active .service-switcher-tab-title::after { content: '\2212'; }
  .service-switcher-panel-mobile {
    display: none; padding: 0 24px 24px; border-bottom: 1px solid var(--panel-border);
  }
  .service-switcher-tab.active + .service-switcher-panel-mobile { display: block; }
}

.capability-list {
  columns: 2 240px; column-gap: 32px; margin-top: 18px; max-width: 720px;
}
.capability-list li {
  font-size: 0.92rem; color: var(--text-muted); padding: 7px 0 7px 16px;
  position: relative; break-inside: avoid;
}
.capability-list li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 6px; height: 1.5px; background: var(--gold-deep);
}

/* ── Simple content cards (industries, insights) ── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.simple-card {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 28px;
}
.simple-card .eyebrow { margin-bottom: 8px; }
.simple-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.simple-card p { color: var(--text-muted); font-size: 0.92rem; }
.simple-card.placeholder { opacity: 0.7; border-style: dashed; }
.simple-card .tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-dim); background: var(--bg-elevated);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 14px;
}

/* ── Showreel trigger + modal ── */
.btn-showreel {
  display: inline-flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer;
  color: #fff; font-weight: 600; font-size: 0.9rem; padding: 14px 8px;
}
.btn-showreel-icon {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem;
}
.video-modal {
  position: fixed; inset: 0; z-index: 900; background: rgba(10,10,12,0.94);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; }
.video-modal-inner video { width: 100%; border-radius: var(--radius); max-height: 70vh; }

/* ── Credibility strip ── */
.credibility-strip {
  background: var(--bg-elevated); border-bottom: 1px solid var(--panel-border); padding: 22px 0;
}
.credibility-strip .shell { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
.credibility-strip span { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; }

/* ── Dark section (used selectively, per brief) ── */
.section-dark { background: var(--ink); color: #fff; padding: 100px 0; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark h2 { font-family: var(--serif); color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,0.6); }

.guest-journey { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; margin-top: 20px; }
.guest-journey-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 90px; }
.guest-journey-num {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; color: var(--gold);
}
.guest-journey-step span:last-child { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-align: center; }
.guest-journey-arrow { color: rgba(255,255,255,0.3); font-size: 1.1rem; }
@media (max-width: 700px) {
  .guest-journey { flex-direction: column; }
  .guest-journey-arrow { transform: rotate(90deg); }
}

/* ── Planner teaser ── */
.planner-teaser {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: var(--bg-elevated); border: 1px solid var(--panel-border); border-radius: var(--radius); padding: 40px;
}
.planner-teaser h2 { font-family: var(--serif); font-size: 1.6rem; margin: 8px 0; }
.planner-teaser p { color: var(--text-muted); max-width: 480px; }

/* ── Smart Project Planner ── */
.planner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.planner-questions { display: grid; gap: 22px; }
.planner-q label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dim); margin-bottom: 8px; }
.planner-q select, .planner-q input[type="text"], .planner-q input[type="number"] {
  width: 100%; background: #fff; border: 1px solid var(--panel-border); border-radius: var(--radius-sm);
  padding: 12px 14px; font-family: var(--sans); font-size: 0.95rem; color: var(--text);
}
.planner-toggle { display: flex; gap: 8px; }
.planner-toggle-btn {
  flex: 1; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--panel-border);
  background: #fff; cursor: pointer; font-weight: 600; font-size: 0.88rem; color: var(--text-muted);
  transition: all .15s var(--ease);
}
.planner-toggle-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.planner-result {
  background: var(--bg-elevated); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 32px; position: sticky; top: 100px;
}
.planner-result h3 { font-family: var(--serif); font-size: 1.4rem; margin: 8px 0 16px; }
.planner-result .btn { margin-top: 20px; width: 100%; }

@media (max-width: 900px) {
  .planner { grid-template-columns: 1fr; }
  .planner-result { position: static; }
}

/* ── Multi-step project brief form ── */
.brief-form { max-width: 820px; }
.brief-progress { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.brief-progress-step {
  flex: 1; min-width: 140px; padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); color: var(--text-dim); font-size: 0.8rem; font-weight: 600;
  text-align: center; border: 1px solid var(--panel-border);
}
.brief-progress-step.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.brief-progress-step.done { background: rgba(200,147,61,0.15); color: var(--gold-deep); border-color: var(--gold-dim); }

.brief-step { display: none; }
.brief-step.active { display: block; }
.brief-step h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 20px; }

.option-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.option-cards-compact { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.option-card {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border); cursor: pointer; transition: all .15s var(--ease); font-size: 0.92rem;
}
.option-card-sm { padding: 10px 14px; font-size: 0.86rem; }
.option-card input { accent-color: var(--gold-deep); width: auto; }
.option-card:has(input:checked) { border-color: var(--gold); background: rgba(200,147,61,0.08); }
.option-card:hover { border-color: var(--gold-dim); }

.brief-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }

.brief-success {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 48px; text-align: center; max-width: 560px; margin: 0 auto;
}
.brief-success h2 { font-family: var(--serif); font-size: 1.8rem; margin: 10px 0 20px; }
.brief-ref {
  display: inline-block; font-family: var(--display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: 0.04em; color: var(--gold-deep); background: rgba(200,147,61,0.1);
  padding: 12px 28px; border-radius: var(--radius-sm); margin: 8px 0 16px;
}

@media (max-width: 700px) {
  .brief-progress-step { font-size: 0.72rem; padding: 10px 8px; }
}

/* ── Film | Photo switch (visual-storytelling.php) ── */
.film-photo-switch { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 48px; }
.film-photo-tab {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800; letter-spacing: 0.04em;
  background: none; border: none; cursor: pointer; color: var(--text-dim); transition: color .2s var(--ease);
}
.film-photo-tab.active { color: var(--ink); }
.film-photo-divider { color: var(--panel-border); font-size: 1.4rem; }
.film-photo-panel { display: none; }
.film-photo-panel.active { display: block; }

/* ── Industry solutions reveal ── */
.industry-reveal-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 16px; padding: 0; background: none; border: none; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: var(--gold-deep);
}
.industry-reveal-toggle svg { transition: transform .2s var(--ease); }
.industry-card.open .industry-reveal-toggle svg { transform: rotate(180deg); }
.industry-reveal-list { max-height: 0; overflow: hidden; transition: max-height .25s var(--ease); }
.industry-card.open .industry-reveal-list { max-height: 220px; margin-top: 12px; }
.industry-reveal-list li {
  font-size: 0.85rem; color: var(--text-muted); padding: 6px 0 6px 16px; position: relative;
}
.industry-reveal-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 1.5px; background: var(--gold-deep); }

/* ── FAQ accordion ── */
.faq-list { max-width: 780px; border-top: 1px solid var(--panel-border); }
.faq-item { border-bottom: 1px solid var(--panel-border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--text);
}
.faq-question svg { flex-shrink: 0; color: var(--gold-deep); transition: transform .2s var(--ease); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .25s var(--ease);
}
.faq-answer p { padding: 0 4px 20px; color: var(--text-muted); font-size: 0.95rem; max-width: 640px; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ── Portfolio gallery ── */
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chip {
  padding: 9px 18px; border-radius: var(--radius-sm); border: 1px solid var(--panel-border);
  font-size: 0.84rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; background: var(--panel); transition: all .2s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); color: var(--text); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Editorial portfolio (alternating large layout) ── */
.editorial-portfolio { display: flex; flex-direction: column; gap: 80px; margin-top: 20px; }
.editorial-project {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
}
.editorial-project.reverse { grid-template-columns: 1fr 1.3fr; }
.editorial-project.reverse .editorial-project-media { order: 2; }
.editorial-project.reverse .editorial-project-text { order: 1; }
.editorial-project-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--panel-border); }
.editorial-project-media img, .editorial-project-media .ph-tile { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project-type-badge {
  position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 30px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.project-type-badge.is-real { background: var(--gold); color: var(--ink); }
.project-type-badge.is-concept { background: rgba(17,18,20,0.85); color: #fff; }
.editorial-project-number { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--gold-deep); display: block; margin-bottom: 10px; }
.editorial-project-text h3 { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 6px; }
.editorial-project-location { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 14px; }
.editorial-project-desc { color: var(--text-muted); margin-bottom: 14px; }
.editorial-project-services { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 18px; }
.editorial-project-link { font-weight: 600; color: var(--ink); }
.editorial-project-link:hover { color: var(--gold-deep); }
.editorial-project.hidden { display: none; }
@media (max-width: 800px) {
  .editorial-project, .editorial-project.reverse { grid-template-columns: 1fr; }
  .editorial-project.reverse .editorial-project-media, .editorial-project.reverse .editorial-project-text { order: initial; }
  .editorial-portfolio { gap: 48px; }
}

.gallery-grid {
  columns: 3 280px; column-gap: 20px;
}
.gallery-item {
  display: block; break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden;
  position: relative; border: 1px solid var(--panel-border); cursor: pointer;
}
.gallery-item img { width: 100%; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0; padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(17,18,20,0.88), transparent);
  opacity: 0; transition: opacity .2s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption .cat { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--gold); }
.gallery-caption h4 { font-size: 1rem; margin-top: 4px; color: #fff; }
.gallery-item.hidden { display: none; }

.gallery-expand {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(17,18,20,0.55); color: #fff; display: grid; place-items: center;
  opacity: 0; transition: opacity .2s var(--ease), background .2s var(--ease);
}
.gallery-item:hover .gallery-expand { opacity: 1; }
.gallery-expand:hover { background: var(--gold); color: var(--ink); }

.ph-tile {
  width: 100%; aspect-ratio: 4/5; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 10px;
  background: var(--ink);
  padding: 24px;
}
.ph-tile .ph-icon { color: var(--gold); opacity: 0.9; }
.ph-tile .ph-cat { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--gold); }
.ph-tile .ph-title { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: rgba(255,255,255,0.75); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900; background: rgba(17,18,20,0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 84vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 28px; right: 32px; color: #fff; font-size: 2rem; cursor: pointer; background:none;border:none;
}

/* ── Industry strip ── */
.logo-strip {
  display: flex; gap: 0; flex-wrap: wrap; border: 1px solid var(--panel-border); border-radius: var(--radius);
  overflow: hidden;
}
.logo-strip span {
  font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--text-muted);
  padding: 20px 24px; flex: 1; text-align: center; border-right: 1px solid var(--panel-border);
}
.logo-strip span:last-child { border-right: none; }

/* ── Why choose us ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reasons { display: grid; gap: 22px; margin-top: 28px; }
.reason { display: flex; gap: 16px; }
.reason .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 9px; flex-shrink: 0; }
.reason h4 { font-size: 1rem; margin-bottom: 4px; font-weight: 700; }
.reason p { color: var(--text-muted); font-size: 0.92rem; }
.split img { border-radius: var(--radius); border: 1px solid var(--panel-border); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 36px; max-width: 720px; margin: 0 auto; text-align: center;
}
.testimonial-card p.quote { font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 18px; }
.testimonial-card .author { font-size: 0.85rem; color: var(--text-muted); }

/* ── CTA band ── */
.cta-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border);
  text-align: center; padding: 80px 0;
}
.cta-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); margin-bottom: 28px; }

/* ── Forms ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-dim); }
.form-field input, .form-field select, .form-field textarea {
  background: #fff; border: 1px solid var(--panel-border); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-family: var(--sans); font-size: 0.95rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--text-dim); margin-top: 18px; }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 28px; font-size: 0.92rem; }
.alert-success { background: rgba(60,150,60,0.1); border: 1px solid rgba(60,150,60,0.3); color: #2f7a2f; }
.alert-error { background: rgba(200,60,60,0.1); border: 1px solid rgba(200,60,60,0.3); color: #b23a3a; }

/* ── Contact info cards ── */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1px; margin-bottom: 50px; background: var(--panel-border); border: 1px solid var(--panel-border); border-radius: var(--radius); overflow: hidden; }
.contact-card { background: var(--panel); padding: 24px; }
.contact-card .label { font-size: 0.72rem; font-weight: 700; color: var(--gold-deep); margin-bottom: 8px; display:block; }

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 600;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18); transition: transform .2s var(--ease);
}
.wa-fab:hover { transform: scale(1.06); }

/* ── Footer ── */
.site-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); padding: 64px 0 0; color: rgba(255,255,255,0.85); }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 14px; max-width: 320px; font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-col h4 { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 14px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold); }
@media (max-width: 720px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero .shell { grid-template-columns: 1fr; }
  .hero-panel { margin-top: 20px; }
  .split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 220px; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row p, .service-row a.more { grid-column: 2; }
  .logo-strip span { flex: 1 1 40%; border-bottom: 1px solid var(--panel-border); }
}
@media (max-width: 720px) {
  .top-bar { display: none; }
  .nav { top: 0; }
  .hero { padding-top: 110px; }
  .hero-photo { padding-top: 110px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 64px; left: 12px; right: 12px;
    background: rgba(252,250,246,0.99); border: 1px solid var(--panel-border); border-radius: var(--radius);
    flex-direction: column; align-items: stretch; padding: 12px; gap: 2px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .2s var(--ease);
    box-shadow: 0 16px 40px rgba(32,33,36,0.1);
    max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { text-align: center; padding: 14px; color: var(--text-muted); }

  .nav-dropdown-trigger { width: 100%; justify-content: center; padding: 14px; }
  .mega-menu {
    position: static; transform: none; width: auto; max-width: none; box-shadow: none;
    border: none; border-radius: 0; grid-template-columns: 1fr; padding: 0 0 8px;
    display: none; opacity: 1; pointer-events: auto;
  }
  .nav-dropdown.open .mega-menu { display: grid; transform: none; }
  .mega-menu-item { padding: 10px 14px; }

  .gallery-grid { columns: 1; }
  section { padding: 70px 0; }
}
