:root {
  --black: #000;
  --charcoal: #111;
  --ink: #171717;
  --surface: #101010;
  --surface-2: #1f1f1f;
  --panel: var(--surface-2);
  --line: rgba(200, 169, 110, 0.24);
  --gold: #c8a96e;
  --gold-soft: #ead6a7;
  --text: #fff;
  --muted: #c9c9c9;
  --muted-2: #8f8f8f;
  --header-bg: rgba(0, 0, 0, 0.82);
  --footer-bg: #070707;
  --hero-overlay-start: rgba(0, 0, 0, 0.82);
  --hero-overlay-mid: rgba(0, 0, 0, 0.54);
  --hero-overlay-end: rgba(0, 0, 0, 0.18);
  --hero-bottom-fade: rgba(0, 0, 0, 0.92);
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
}

.logo img {
  width: auto;
  height: 46px;
  max-width: 180px;
  object-fit: contain;
}

.logo span {
  color: var(--gold);
}

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

.nav a,
.dropbtn {
  border: 0;
  background: transparent;
  color: #e9e9e9;
  font: 700 12px/1 Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 12px;
  cursor: pointer;
}

.nav a:hover,
.dropbtn:hover,
.nav a.active {
  color: var(--gold-soft);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px;
  background: #080808;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font: 800 12px/1 Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 180ms ease;
}

.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.nav a.btn {
  padding: 0 22px;
  color: #000;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.nav a.btn:hover,
.nav a.btn.active {
  color: #000;
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn.ghost {
  background: transparent;
  color: #fff;
}

.btn.ghost:hover {
  color: #000;
  background: var(--gold);
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, var(--hero-overlay-start), var(--hero-overlay-mid), var(--hero-overlay-end)), var(--hero-image) center/cover;
}

.page-hero {
  min-height: 430px;
  background-position: center;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, var(--hero-bottom-fade));
  pointer-events: none;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font: 800 12px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: var(--home-eyebrow-size, 16px);
}

h1,
h2,
h3 {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.02;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 94px);
  font-weight: 900;
  text-transform: uppercase;
}

.gold-text {
  color: var(--gold-soft);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #e4e4e4;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 105px 0;
  background: var(--black);
}

.section.alt {
  background: var(--charcoal);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p,
.copy p,
.card p,
.footer p {
  color: var(--muted);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.trust-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.94);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.stat {
  color: var(--gold-soft);
  font: 900 34px/1 Montserrat, Inter, sans-serif;
}

.label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: 300ms ease;
}

.media-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.08);
}

.media-card .card {
  border: 0;
  background: transparent;
}

.about-service-card {
  display: flex;
  flex-direction: column;
}

.about-service-card .card {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.about-service-card .card > p {
  flex: 1;
}

.about-service-action {
  width: 100%;
  margin-top: 24px;
}

.testimonial-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  transition: transform 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 110, 0.6);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.testimonial-body {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.testimonial-body p {
  margin: 0;
  color: var(--muted);
}

.testimonial-body strong,
.testimonial-body span {
  display: block;
}

.testimonial-body strong {
  color: #fff;
  font: 800 15px/1.3 Inter, Arial, sans-serif;
}

.testimonial-body span {
  margin-top: 4px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
}

.project-story .split {
  align-items: start;
}

.project-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-visual {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.project-visual:first-child {
  grid-row: span 2;
}

.project-visual img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  object-position: var(--project-image-x, 50%) var(--project-image-y, 50%);
  filter: contrast(1.05);
}

.project-visual-caption {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: 42px 15px 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.project-gallery-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.9fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.section:has(.project-gallery-layout) {
  padding-block: clamp(52px, 7vw, 86px);
}

.project-gallery-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.project-gallery-carousel .project-visual-grid {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.project-gallery-carousel .project-visual-grid::-webkit-scrollbar {
  display: none;
}

.project-gallery-carousel .project-visual {
  flex: 0 0 clamp(130px, 20%, 210px);
  min-height: clamp(180px, 24vw, 260px);
  aspect-ratio: 3 / 4;
  opacity: 0.68;
  transform: scale(0.92);
  transition: flex-basis 220ms ease, min-height 220ms ease, opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.project-gallery-carousel .project-visual:first-child {
  grid-row: auto;
}

.project-gallery-carousel .project-visual.is-active {
  flex-basis: clamp(240px, 38%, 360px);
  min-height: clamp(260px, 34vw, 360px);
  opacity: 1;
  transform: scale(1);
  border-color: rgba(200, 169, 110, 0.68);
}

.project-visual-button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.project-visual-button img {
  display: block;
}

.project-gallery-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.project-gallery-nav:hover {
  border-color: rgba(200, 169, 110, 0.68);
  color: var(--gold-soft);
}

.project-video-section {
  border-top: 1px solid var(--line);
}

.project-video-slider {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.project-video-track {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.project-video-track::-webkit-scrollbar {
  display: none;
}

.project-video-card {
  position: relative;
  flex: 0 0 22%;
  min-width: 190px;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  opacity: 0.62;
  scroll-snap-align: center;
  transform: scale(0.88);
  transition: flex-basis 220ms ease, min-height 220ms ease, opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.project-video-card.is-active {
  flex-basis: 52%;
  min-height: 430px;
  opacity: 1;
  border-color: rgba(200, 169, 110, 0.68);
  transform: scale(1);
}

.project-video-preview {
  position: absolute;
  inset: 0;
  background: #000;
}

.project-video-preview iframe,
.project-video-preview video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  opacity: 0.74;
  pointer-events: none;
}

.project-video-button {
  position: relative;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 250px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(200, 169, 110, 0.28), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.12));
  border: 0;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.project-video-card.is-active .project-video-button {
  min-height: 430px;
}

.project-video-card:hover {
  border-color: rgba(200, 169, 110, 0.68);
}

.project-video-play {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--gold);
  color: #080808;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-video-title {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  font: 900 22px/1.05 Archivo Black, Inter, Arial, sans-serif;
}

.hce-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.hce-lightbox.is-open {
  display: flex;
}

.hce-lightbox-inner {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
}

.hce-lightbox img {
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #000;
}

.hce-lightbox iframe {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: min(64vh, 620px);
  border: 0;
  border-radius: var(--radius);
  background: #000;
}

.hce-lightbox video {
  display: none;
  width: auto;
  max-width: min(520px, 100%);
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  border-radius: var(--radius);
  background: #000;
}

.hce-lightbox.is-video img {
  display: none;
}

.hce-lightbox.is-video iframe,
.hce-lightbox.is-video video {
  display: block;
}

.hce-lightbox.is-video iframe[src=""],
.hce-lightbox.is-video video[src=""] {
  display: none;
}

.hce-lightbox-caption {
  color: #fff;
  font-weight: 800;
}

.hce-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.region-card {
  display: grid;
  justify-items: center;
  min-height: 100%;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.region-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 110, 0.68);
}

.region-card img,
.region-feature-icon {
  width: min(190px, 80%);
  aspect-ratio: 1;
  object-fit: contain;
}

.region-card h3 {
  margin-top: 16px;
}

.region-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.region-feature-icon {
  justify-self: center;
  width: min(360px, 100%);
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}

.region-spot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.region-spot-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.region-spot-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.region-spot-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.region-spot-body p {
  margin: 0;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.social-pill span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
}

.social-pill:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.14);
}

.coming-soon-panel {
  max-width: 760px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.coming-soon-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.portrait,
.wide-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.portrait {
  aspect-ratio: 4 / 5;
}

.wide-image {
  aspect-ratio: 16 / 10;
}

.list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
  color: #e8e8e8;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery-choice-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0f0f;
  color: var(--text);
}

.gallery-choice-card img,
.gallery-choice-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-choice-card:hover img,
.gallery-choice-card:hover video {
  transform: scale(1.035);
  opacity: 0.9;
}

.gallery-choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.12));
}

.gallery-choice-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.gallery-choice-card strong {
  font: 900 clamp(34px, 5vw, 58px)/0.94 Archivo Black, Inter, Arial, sans-serif;
}

.gallery-choice-card small {
  max-width: 58ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.gallery-item {
  position: relative;
  display: block;
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111;
}

.gallery-item img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.gallery-caption strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
}

.gallery-caption span {
  color: var(--gold-soft);
  font-size: 13px;
}

.gallery-page-switch {
  position: fixed;
  top: 50%;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(200, 169, 110, 0.64);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.76);
  color: var(--gold-soft);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-page-switch.is-right {
  right: max(22px, calc((100vw - var(--max)) / 2 - 84px));
}

.gallery-page-switch.is-left {
  left: max(22px, calc((100vw - var(--max)) / 2 - 84px));
}

.gallery-page-switch span {
  display: block;
  margin-top: -3px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.gallery-page-switch:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
  transform: translateY(-50%) scale(1.05);
}

.cinematic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cinematic-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0f0f;
}

.cinematic-preview,
.cinematic-preview iframe,
.cinematic-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cinematic-preview iframe {
  border: 0;
}

.cinematic-preview video,
.cinematic-preview iframe {
  object-fit: cover;
  opacity: 0.76;
  pointer-events: none;
}

.cinematic-card button {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 390px;
  padding: 18px;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.08));
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.cinematic-card strong {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  font: 900 22px/1.04 Archivo Black, Inter, Arial, sans-serif;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: #000;
  background: var(--gold);
  border-color: var(--gold);
}

.slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
}

.event-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 4px 0 18px;
}

.event-card {
  scroll-snap-align: start;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  color: #fff;
}

.event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.event-body {
  padding: 22px;
}

.event-body span,
.event-date {
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 13px;
}

.event-body p {
  color: var(--muted);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #090909;
  color: var(--gold-soft);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--gold);
  color: #000;
}

.hce-managed-card,
.hce-team-card,
.event-card {
  transition: transform 180ms ease, border-color 180ms ease;
}

.hce-managed-card:hover,
.hce-team-card:hover,
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 110, 0.6);
}

.team-structure-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.team-structure-column {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.team-structure-column h3 {
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 18px;
}

.team-structure-list {
  display: grid;
  gap: 12px;
}

.team-structure-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease;
}

.team-structure-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 169, 110, 0.68);
}

.team-structure-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: var(--team-photo-x, 50%) var(--team-photo-y, 35%);
  border: 1px solid rgba(200, 169, 110, 0.48);
}

.team-structure-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.team-structure-card strong,
.team-structure-card small,
.team-structure-card em {
  display: block;
  overflow-wrap: anywhere;
}

.team-structure-card strong {
  font: 800 15px/1.2 Montserrat, Inter, sans-serif;
}

.team-structure-card small {
  color: var(--gold);
  font: 800 11px/1.25 Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-structure-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.hce-project-extra .gallery-grid,
.hce-managed-gallery .gallery-grid {
  margin-top: 8px;
}

.agency-media-section .section-head {
  max-width: 920px;
}

.agency-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.agency-logo-grid.projects {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.agency-logo-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.agency-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 110, 0.62);
}

.agency-logo-frame {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background: #2f2f2f;
}

.agency-logo-frame img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.agency-logo-card strong {
  font: 800 15px/1.25 Montserrat, Inter, sans-serif;
}

.agency-logo-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 110, 0.6);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card-body {
  padding: 22px;
}

.article-card-body p {
  color: var(--muted);
}

.article-hero {
  min-height: 620px;
  display: flex;
  align-items: end;
  padding: 160px 0 90px;
  background: linear-gradient(180deg, var(--hero-overlay-end), var(--hero-bottom-fade)), var(--hero-image) center/cover;
}

.article-hero h1 {
  max-width: 920px;
}

.article-content {
  max-width: 820px;
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.article-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.article-gallery {
  margin-top: 46px;
}

.article-gallery .section-head {
  margin-bottom: 22px;
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-gallery-item {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.article-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.article-gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.career-card .article-card-body {
  min-height: 220px;
}

.career-apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.career-apply-form {
  position: sticky;
  top: 110px;
}

.career-apply-form h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.career-empty-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.career-empty-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.career-empty-panel p {
  color: var(--muted);
}

.career-empty-panel p:last-of-type {
  margin-bottom: 0;
}

.career-email-form h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 34px;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 8px;
  color: #f2f2f2;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #090909;
  color: #fff;
  padding: 14px 15px;
  font: 15px/1.4 Inter, Arial, sans-serif;
}

.form textarea {
  min-height: 145px;
  resize: vertical;
}

.form-note {
  color: var(--gold-soft);
  min-height: 24px;
  margin: 0;
}

.map {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b0b0b, #24201a);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.card,
.media-card .card,
.region-card,
.region-spot-card,
.coming-soon-panel,
.article-card,
.team-structure-column,
.team-structure-card,
.event-card,
.career-empty-panel,
.form input,
.form select,
.form textarea {
  background-color: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.slider-btn,
.dropdown-menu {
  background-color: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.site-footer {
  background: var(--footer-bg);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7)), url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.site-footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.footer h3 {
  font-size: 15px;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}

.copyright {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
  font-size: 14px;
}

@media (max-width: 920px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 28px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a,
  .dropbtn {
    width: 100%;
    text-align: left;
    padding: 16px 0;
  }

  .dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0 18px;
  }

  .nav .btn {
    margin-top: 10px;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .region-grid,
  .region-spot-grid,
  .article-grid,
  .article-gallery-grid,
  .gallery-choice-grid,
  .team-structure-grid,
  .split,
  .split.reverse,
  .contact-layout,
  .career-apply-layout,
  .career-empty-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .career-apply-form {
    position: static;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-shell {
    grid-template-columns: 1fr;
  }

  .project-gallery-layout {
    grid-template-columns: 1fr;
  }

  .project-gallery-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .project-video-slider {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .project-video-card {
    flex-basis: 66%;
    min-width: 0;
    min-height: 260px;
  }

  .project-video-card.is-active {
    flex-basis: 86%;
    min-height: 340px;
  }

  .project-video-button {
    min-height: 260px;
  }

  .project-video-card.is-active .project-video-button {
    min-height: 340px;
  }

  .cinematic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-page-switch {
    width: 52px;
    height: 52px;
  }

  .gallery-page-switch.is-right {
    right: 16px;
  }

  .gallery-page-switch.is-left {
    left: 16px;
  }

  .project-visual-grid {
    grid-template-columns: 1fr;
  }

  .project-visual:first-child {
    grid-row: auto;
  }

  .project-gallery-carousel .project-visual {
    flex-basis: 64%;
    min-height: 240px;
  }

  .project-gallery-carousel .project-visual.is-active {
    flex-basis: 78%;
    min-height: 300px;
  }

  .project-gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .region-spot-card {
    grid-template-columns: 1fr;
    background: rgba(0, 0, 0, 0.75);
  }

  .region-spot-body {
    background: rgba(0, 0, 0, 0.75);
  }

  .slider-btn {
    display: none;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .container,
  .hero-inner,
  .page-hero-inner,
  .trust-grid {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-actions .btn,
  .actions .btn,
  .form .btn {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-choice-grid,
  .cinematic-grid {
    grid-template-columns: 1fr;
  }

  .gallery-choice-card,
  .cinematic-card,
  .cinematic-card button {
    min-height: 360px;
  }

  .gallery-page-switch {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .gallery-page-switch:hover {
    transform: scale(1.05);
  }

  .region-spot-card {
    position: relative;
    min-height: 520px;
  }

  .region-spot-card img {
    min-height: 520px;
  }

  .region-spot-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 22px;
    border-top: 1px solid rgba(200, 169, 110, 0.22);
    backdrop-filter: blur(4px);
  }

  .region-spot-body p {
    color: rgba(255, 255, 255, 0.88);
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}
