:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0c0c0c;
  --panel-soft: #111111;
  --gold: #d6aa4b;
  --gold-soft: rgba(214, 170, 75, 0.18);
  --line: rgba(214, 170, 75, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.48);
  --shadow: 0 28px 80px rgba(214, 170, 75, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(214, 170, 75, 0.2);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(210px, 18vw, 290px);
  max-height: 68px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a,
.quote-link,
.button,
.contact-list a {
  text-decoration: none;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--gold);
}

.quote-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.quote-link:hover,
.button.primary:hover {
  background: #e3bd66;
}

.quote-link:hover {
  color: #000;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 4vw, 48px) 56px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    radial-gradient(circle at 72% 22%, rgba(214, 170, 75, 0.2), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #000, #090909 46%, #020202);
  opacity: 1;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 30%, rgba(214, 170, 75, 0.16), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), #050505 88%);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 10px 16px;
  border: 1px solid rgba(214, 170, 75, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
}

.hero-logo {
  display: block;
  width: min(560px, 84vw);
  height: auto;
  margin: 0 0 22px;
  border-radius: 6px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
}

.spark {
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8.2vw, 6.9rem);
  line-height: 0.98;
}

h1 span,
.service-card h3,
.project-grid h3,
.contact-card h2 {
  color: var(--gold);
}

.lead,
.body-copy {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #050505;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.impact-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 75, 0.3);
  border-radius: 10px;
  padding: 0;
  background: url("assets/hero-tivoli-logo-ledwall-maggio18.png") center / cover;
  box-shadow: var(--shadow);
}

.impact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.impact-intro,
.impact-metrics {
  position: relative;
  z-index: 1;
}

.impact-label {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.impact-intro strong {
  display: block;
  max-width: 560px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.impact-intro p {
  max-width: 510px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.impact-metrics span {
  min-height: 92px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

.impact-metrics b {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 500;
}

.impact-metrics small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-showcase {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(214, 170, 75, 0.25);
  border-radius: 32px;
  background: linear-gradient(135deg, #1a1a1a, #000);
  padding: 12px;
  box-shadow: var(--shadow);
}

.has-wall-logo {
  position: relative;
}

.has-wall-logo::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(190px, 40%);
  aspect-ratio: 1500 / 560;
  border-radius: 4px;
  background: url("assets/logo-finoasera-final.jpg") center / contain no-repeat;
  opacity: 0.92;
  pointer-events: none;
}

.subtle-logo::after {
  opacity: 0.72;
  width: min(170px, 34%);
}

.showcase-image,
.mobile-image {
  min-height: 420px;
  border-radius: 24px;
  background: #050505 center / cover;
}

.project-badge {
  position: absolute;
  left: -24px;
  bottom: -26px;
  max-width: min(340px, calc(100% - 24px));
  border: 1px solid rgba(214, 170, 75, 0.32);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.8);
  padding: 18px 20px;
  backdrop-filter: blur(16px);
}

.project-badge span {
  display: block;
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-badge strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 500;
}

.project-badge p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 9vw, 112px) clamp(18px, 4vw, 48px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 44px;
}

.section-heading.center {
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(2.45rem, 5.3vw, 4.8rem);
  line-height: 1;
}

.service-grid,
.project-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

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

.service-card,
.project-grid article,
.feature-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.service-card {
  min-height: 300px;
  border-radius: 8px;
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 170, 75, 0.52);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(214, 170, 75, 0.1);
  color: var(--gold);
  font-size: 1.8rem;
}

.service-card h3,
.project-grid h3 {
  font-size: 1.65rem;
}

.service-card p,
.project-grid p,
.feature-grid p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.service-card p {
  margin: 18px 0 0;
  font-size: 0.94rem;
}

.mobile-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  border-block: 1px solid rgba(214, 170, 75, 0.15);
  background: #0b0b0b;
}

.mobile-section > * {
  width: min(100%, 580px);
}

.mobile-image {
  justify-self: end;
  width: 100%;
  border: 12px solid #000;
  box-shadow: var(--shadow);
}

.ledwall-space-image {
  background-image: url("assets/ledwall-metropoli.jpg");
  background-position: center;
}

.mobile-copy {
  justify-self: start;
}

.body-copy {
  margin: 26px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.feature-grid article {
  min-height: 178px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
}

.feature-grid span {
  color: var(--gold);
  font-size: 1.7rem;
}

.feature-grid h3 {
  margin-top: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 750;
}

.feature-grid p {
  margin: 8px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.local-section {
  background: #080808;
}

.local-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 0.9fr) minmax(240px, 0.95fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.local-layout figure {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(214, 170, 75, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.local-layout img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.local-copy {
  display: grid;
  align-content: center;
  gap: 26px;
  border: 1px solid rgba(214, 170, 75, 0.2);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.04);
}

.local-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.75;
}

.local-points {
  display: grid;
  gap: 10px;
}

.local-points span {
  display: block;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pedestrian-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: linear-gradient(180deg, #080808, #050505);
}

.pedestrian-copy {
  max-width: 580px;
}

.pedestrian-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pedestrian-tags span {
  border: 1px solid rgba(214, 170, 75, 0.28);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(214, 170, 75, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pedestrian-stage {
  position: relative;
  min-height: clamp(420px, 52vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(214, 170, 75, 0.22);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.pedestrian-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pedestrian-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.pedestrian-ledwall {
  position: absolute;
  left: 42%;
  bottom: 8%;
  z-index: 2;
  width: min(24%, 250px);
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.46));
}

.pedestrian-ledwall::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -20px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(13px);
}

.pedestrian-ledwall::after {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  width: calc(300% + 30px);
  height: 100%;
  border-radius: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(214, 170, 75, 0.28) 0 1px,
      rgba(0, 0, 0, 0.22) 1px calc(33.333% - 8px),
      rgba(255, 255, 255, 0.16) calc(33.333% - 8px) calc(33.333% - 7px),
      transparent calc(33.333% - 7px) 33.333%
    );
  opacity: 0.36;
  pointer-events: none;
}

.pedestrian-screen {
  position: relative;
  aspect-ratio: 1 / 2;
  overflow: hidden;
  border: 10px solid #060606;
  border-radius: 6px;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 34px rgba(214, 170, 75, 0.14);
}

.pedestrian-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px),
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
  pointer-events: none;
}

.pedestrian-screen::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 100%;
  width: 16%;
  height: 52px;
  background: #070707;
  box-shadow: 0 52px 0 18px rgba(0, 0, 0, 0.42);
}

.pedestrian-frame {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: pedestrianShow 13.5s infinite;
}

.pedestrian-cafe {
  background-image: url("assets/pedonale-spot-cafe.png");
}

.pedestrian-boutique {
  background-image: url("assets/pedonale-spot-boutique.png");
  animation-delay: 4.5s;
}

.pedestrian-services {
  background-image: url("assets/pedonale-spot-servizi.png");
  animation-delay: 9s;
}

.pedestrian-size {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes pedestrianShow {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  7%,
  31% {
    opacity: 1;
    transform: scale(1);
  }
  38%,
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

.motion-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 70% 50%, rgba(214, 170, 75, 0.12), transparent 34%),
    #050505;
}

.motion-copy {
  max-width: 620px;
}

.motion-ledwall {
  position: relative;
  border: 1px solid rgba(214, 170, 75, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: #020202;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 60px rgba(214, 170, 75, 0.12);
}

.motion-ledwall::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: -28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  filter: blur(18px);
}

.motion-screen {
  position: relative;
  min-height: clamp(340px, 42vw, 560px);
  overflow: hidden;
  border-radius: 6px;
  background: #050505;
  isolation: isolate;
}

.motion-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.07)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
}

.motion-screen::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 6;
  background: linear-gradient(110deg, transparent 0 40%, rgba(255, 255, 255, 0.22) 47%, transparent 55% 100%);
  opacity: 0.22;
  transform: translateX(-55%);
  animation: lightSweep 5s ease-in-out infinite;
  pointer-events: none;
}

.motion-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  background-position: center;
  background-size: cover;
  filter: saturate(1.24) contrast(1.08);
  animation: ledShow 15s infinite;
}

.motion-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48));
  mix-blend-mode: screen;
}

.motion-frame span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.frame-food {
  background:
    linear-gradient(120deg, rgba(255, 94, 0, 0.22), rgba(0, 0, 0, 0.04)),
    url("assets/motion-food-premium.png") center / cover;
}

.frame-event {
  animation-delay: 5s;
  background:
    linear-gradient(120deg, rgba(255, 0, 110, 0.16), rgba(0, 0, 0, 0.02)),
    url("assets/motion-culture-premium.png") center / cover;
}

.frame-fashion {
  animation-delay: 10s;
  background:
    linear-gradient(120deg, rgba(0, 206, 255, 0.18), rgba(0, 0, 0, 0.08)),
    url("assets/motion-lifestyle-premium.png") center / cover;
}

@keyframes ledShow {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  6%,
  31% {
    opacity: 1;
    transform: scale(1);
  }
  37%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes lightSweep {
  0%,
  46% {
    transform: translateX(-55%);
  }
  70%,
  100% {
    transform: translateX(55%);
  }
}

.rental-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  background: linear-gradient(180deg, #050505, #0b0b0b);
}

.rental-media {
  border: 1px solid rgba(214, 170, 75, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rental-media img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.rental-copy {
  max-width: 650px;
}

.price-highlight {
  width: fit-content;
  display: grid;
  gap: 4px;
  margin-top: 24px;
  border: 1px solid rgba(214, 170, 75, 0.34);
  border-radius: 8px;
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(214, 170, 75, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.4);
  box-shadow: 0 18px 48px rgba(214, 170, 75, 0.08);
}

.price-highlight span,
.price-highlight small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-highlight strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 0.95;
}

.rental-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.rental-list article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.rental-list h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 780;
}

.rental-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.camper-section {
  background: #070707;
}

.camper-gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.city-showcase {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.city-panel {
  grid-column: span 6;
  margin: 0;
  border: 1px solid rgba(214, 170, 75, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.city-panel.wide-panel {
  grid-column: span 8;
}

.city-panel:nth-child(2),
.city-panel:nth-child(4) {
  transform: translateY(48px);
}

.city-panel img {
  display: block;
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  object-fit: cover;
}

.city-panel:not(.wide-panel) img {
  height: clamp(360px, 42vw, 540px);
}

.city-panel figcaption {
  min-height: 62px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.camper-gallery figure {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(214, 170, 75, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.camper-gallery figure.has-wall-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.camper-gallery figure.wide {
  grid-column: span 3;
}

.camper-gallery figure.slim {
  grid-column: 2 / span 2;
}

.camper-gallery img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.project-grid article {
  min-height: 244px;
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent);
}

.project-grid p {
  margin: 20px 0 0;
  font-size: 0.94rem;
}

.office-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: linear-gradient(180deg, #070707, #050505);
}

.office-copy {
  max-width: 650px;
}

.office-media {
  margin: 0;
  border: 1px solid rgba(214, 170, 75, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.office-media img {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
}

.contact-section {
  padding: 0 clamp(18px, 4vw, 48px) 82px;
}

.contact-card {
  width: min(920px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-list a:hover {
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid rgba(214, 170, 75, 0.15);
  padding: 34px 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 14px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 160ms ease;
}

.legal-links a:hover {
  color: var(--gold);
}

.legal-page {
  padding: 132px clamp(18px, 4vw, 48px) 76px;
}

.legal-hero,
.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-hero {
  padding: 48px 0 34px;
  border-bottom: 1px solid rgba(214, 170, 75, 0.18);
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.legal-content {
  padding-top: 38px;
}

.legal-content h2 {
  margin-top: 34px;
  color: var(--gold);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-content a {
  color: var(--gold);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .mobile-section,
  .rental-section,
  .motion-section,
  .pedestrian-section,
  .office-section {
    grid-template-columns: 1fr;
  }

  .media-showcase,
  .impact-panel,
  .mobile-section > * {
    width: 100%;
  }

  .mobile-image,
  .mobile-copy {
    justify-self: center;
  }

  .service-grid,
  .project-grid,
  .camper-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-showcase {
    grid-template-columns: 1fr;
  }

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

  .local-layout img {
    min-height: 360px;
  }

  .motion-copy {
    max-width: none;
  }

  .pedestrian-copy {
    max-width: none;
  }

  .city-panel,
  .city-panel.wide-panel {
    grid-column: auto;
  }

  .city-panel:nth-child(2),
  .city-panel:nth-child(4) {
    transform: none;
  }

  .rental-media img,
  .city-panel img,
  .city-panel:not(.wide-panel) img {
    height: 420px;
    min-height: 0;
  }

  .camper-gallery figure.wide {
    grid-column: span 2;
  }

  .camper-gallery figure.slim {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 150px;
  }

  .brand img {
    width: 160px;
  }

  .quote-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

  .showcase-image,
  .mobile-image {
    min-height: 280px;
  }

  .project-badge {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: 12px 0 0;
  }

  .service-grid,
  .project-grid,
  .feature-grid,
  .camper-gallery {
    grid-template-columns: 1fr;
  }

  .rental-media img,
  .city-panel img,
  .city-panel:not(.wide-panel) img {
    height: 280px;
  }

  .local-layout img {
    min-height: 260px;
  }

  .motion-screen {
    min-height: 260px;
  }

  .pedestrian-stage {
    min-height: 360px;
  }

  .pedestrian-ledwall {
    width: 34%;
    left: 34%;
    bottom: 8%;
  }

  .impact-panel {
    min-height: 430px;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .camper-gallery img {
    height: 260px;
  }

  .has-wall-logo::after {
    right: 16px;
    bottom: 16px;
    width: min(168px, 52%);
  }

  .camper-gallery figure.slim {
    grid-column: span 1;
  }

  .camper-gallery figure.wide {
    grid-column: span 1;
  }

  .contact-list {
    display: grid;
  }
}
