:root {
  --color-black: #070707;
  --color-graphite: #111214;
  --color-graphite-soft: #191b1f;
  --color-panel: rgba(255, 255, 255, 0.055);
  --color-panel-strong: rgba(255, 255, 255, 0.09);
  --color-line: rgba(93, 173, 208, 0.18);
  --color-text: #f1f4f7;
  --color-muted: #aeb6c0;
  --color-ivory: #ffffff;
  --brand-graphite: #454c56;
  --brand-cyan: #27afd1;
  --brand-green: #86b93c;
  --brand-yellow: #f5cc18;
  --brand-orange: #ef7146;
  --brand-magenta: #d94d98;
  --brand-violet: #8b7bb9;
  --color-gold: var(--brand-yellow);
  --color-copper: var(--brand-orange);
  --shadow-gold: 0 18px 70px rgba(39, 175, 209, 0.16);
  --shadow-brand: 0 20px 80px rgba(39, 175, 209, 0.16), 0 12px 46px rgba(217, 77, 152, 0.08);
  --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --container: min(1160px, calc(100vw - 40px));
  --header-height: 74px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(39, 175, 209, 0.12), transparent 28%),
    radial-gradient(circle at 78% 4%, rgba(217, 77, 152, 0.1), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(134, 185, 60, 0.08), transparent 32%),
    linear-gradient(180deg, #050505 0%, var(--color-graphite) 45%, #080808 100%);
  font-family: var(--font-sans);
  line-height: 1.6;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--brand-cyan);
  color: #111;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.9);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  width: 182px;
  min-width: 140px;
}

.brand-mark img,
.hero-logo img {
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.55));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(245, 241, 232, 0.74);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-violet), var(--brand-magenta), var(--brand-orange), var(--brand-yellow), var(--brand-green));
  transition: transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-ivory);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  width: 34px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 241, 232, 0.72);
  font: 800 0.68rem / 1 var(--font-sans);
  letter-spacing: 0;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--color-ivory);
}

.language-switcher button.is-active {
  color: #050505;
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
  box-shadow: 0 8px 22px rgba(239, 113, 70, 0.22);
}

.language-switcher button:active {
  transform: scale(0.96);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: transparent;
  color: var(--color-text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 32px) 0 48px;
  text-align: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.58) 42%, rgba(5, 5, 5, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.72) 100%),
    url("assets/hero-corporate-pendragon.webp") center 24% / cover no-repeat;
}

.cursor-glow {
  position: fixed;
  left: var(--mouse-x);
  top: var(--mouse-y);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(39, 175, 209, 0.12), rgba(217, 77, 152, 0.06) 38%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.85;
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 42%, black 0%, transparent 76%);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 38%, rgba(39, 175, 209, 0.2), transparent 24%),
    radial-gradient(circle at 68% 42%, rgba(217, 77, 152, 0.12), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.42) 78%, rgba(5, 5, 5, 0.86) 100%);
  animation: atmosphereShift 12s ease-in-out infinite alternate;
  z-index: -2;
}

.hero-content {
  width: min(860px, calc(100vw - 40px));
}

.hero-logo {
  width: min(470px, 78vw);
  margin: 0 auto 28px;
  padding: 0 clamp(10px, 2vw, 20px);
  animation: heroFloat 6.5s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 6.8vw, 6.25rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
}

.hero-subtitle {
  margin: 22px auto 0;
  color: var(--color-ivory);
  font-size: clamp(1.22rem, 2.4vw, 1.8rem);
}

.hero-copy {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-ribbon {
  display: flex;
  width: min(780px, 92vw);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero-ribbon span {
  flex: 0 0 auto;
  padding: 12px 22px;
  color: rgba(241, 244, 247, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: ribbonMove 18s linear infinite;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(39, 175, 209, 0.72);
  color: #050607;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-green) 48%, var(--brand-yellow));
  box-shadow: var(--shadow-brand);
  animation: buttonBreath 4.8s ease-in-out infinite;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-ivory);
  background: rgba(255, 255, 255, 0.045);
}

.hero-lines span {
  position: absolute;
  width: 34vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 175, 209, 0.45), rgba(139, 123, 185, 0.32), transparent);
  animation: driftLine 9s ease-in-out infinite;
  z-index: -1;
}

.hero-lines span:nth-child(1) {
  top: 24%;
  left: -8%;
}

.hero-lines span:nth-child(2) {
  top: 66%;
  right: -6%;
  animation-delay: -2s;
}

.hero-lines span:nth-child(3) {
  top: 44%;
  left: 68%;
  transform: rotate(64deg);
  animation-delay: -4s;
}

.hero-lines span:nth-child(4) {
  top: 74%;
  left: 7%;
  transform: rotate(-42deg);
  animation-delay: -6s;
}

.particles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-cyan);
  box-shadow: 0 0 24px rgba(39, 175, 209, 0.72);
  opacity: 0.55;
  animation: floatParticle 8s ease-in-out infinite;
}

.particles i:nth-child(1) { top: 20%; left: 16%; }
.particles i:nth-child(2) { top: 30%; left: 78%; animation-delay: -1s; }
.particles i:nth-child(3) { top: 72%; left: 18%; animation-delay: -2s; }
.particles i:nth-child(4) { top: 68%; left: 84%; animation-delay: -3s; }
.particles i:nth-child(5) { top: 42%; left: 8%; animation-delay: -4s; }
.particles i:nth-child(6) { top: 18%; left: 58%; animation-delay: -5s; }
.particles i:nth-child(7) { top: 82%; left: 54%; animation-delay: -6s; }
.particles i:nth-child(8) { top: 50%; left: 92%; animation-delay: -7s; }

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--color-muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.9fr;
  gap: 18px;
  margin-top: 54px;
}

.image-band figure,
.division-media figure,
.brand-page-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-deep);
}

.image-band img,
.division-media img,
.brand-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.01);
}

.image-band figure {
  min-height: 250px;
}

.image-band figure:nth-child(2) {
  transform: translateY(28px);
}

.image-band figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--color-ivory);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(var(--brand-cyan), var(--brand-violet), var(--brand-magenta), rgba(134, 185, 60, 0.18));
}

.timeline li {
  position: relative;
  padding: 22px 22px 22px 84px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-black);
  border: 1px solid var(--brand-cyan);
  box-shadow: 0 0 0 8px rgba(39, 175, 209, 0.08);
}

.timeline span {
  display: block;
  color: var(--brand-cyan);
  font-weight: 800;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.division-grid,
.brand-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.division-card,
.brand-card,
.stat {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.division-card::after,
.brand-card::after,
.stat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(39, 175, 209, 0.16), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.division-card:hover::after,
.brand-card:hover::after,
.stat:hover::after {
  opacity: 1;
}

.division-card {
  min-height: 250px;
  padding: 26px;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.division-card:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-5deg) translateY(-8px);
  border-color: rgba(39, 175, 209, 0.62);
  box-shadow: var(--shadow-brand);
}

.icon-placeholder {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border: 1px solid rgba(39, 175, 209, 0.38);
  border-radius: 8px;
  color: var(--brand-cyan);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(39, 175, 209, 0.1), rgba(139, 123, 185, 0.07));
}

.icon-placeholder i {
  font-size: 1.55rem;
  line-height: 1;
}

.division-card:nth-child(2) .icon-placeholder {
  border-color: rgba(217, 77, 152, 0.38);
  color: var(--brand-magenta);
}

.division-card:nth-child(3) .icon-placeholder {
  border-color: rgba(134, 185, 60, 0.38);
  color: var(--brand-green);
}

.division-card:nth-child(4) .icon-placeholder {
  border-color: rgba(239, 113, 70, 0.38);
  color: var(--brand-orange);
}

.division-card p,
.brand-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

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

.brand-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 18px;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.brand-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-violet), var(--brand-magenta), var(--brand-orange), var(--brand-yellow), var(--brand-green));
  opacity: 0.82;
}

.brand-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 175, 209, 0.48);
  background:
    linear-gradient(145deg, rgba(39, 175, 209, 0.1), rgba(217, 77, 152, 0.055)),
    rgba(255, 255, 255, 0.045);
}

.brand-card img,
.text-logo {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(39, 175, 209, 0.14), transparent 32%),
    radial-gradient(circle at 88% 84%, rgba(217, 77, 152, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(252, 253, 255, 0.96), rgba(224, 231, 238, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.text-logo {
  display: grid;
  place-items: center;
  color: var(--brand-graphite);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.1;
  text-align: center;
}

.text-logo span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-card a::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms ease;
}

.brand-card:hover a::after {
  transform: translateX(4px);
}

.division-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(39, 175, 209, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.division-media figure {
  min-height: 270px;
}

.division-media h3 {
  max-width: 520px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  font-weight: 500;
}

.division-media p:not(.eyebrow) {
  max-width: 520px;
  color: var(--color-muted);
}

.presence-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--color-black);
}

.corporate-gallery-section {
  background:
    radial-gradient(circle at 18% 30%, rgba(39, 175, 209, 0.1), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(217, 77, 152, 0.08), transparent 30%),
    linear-gradient(180deg, #080808, var(--color-graphite));
}

.corporate-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: minmax(220px, 26vw);
  gap: 18px;
}

.corporate-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-deep);
}

.corporate-gallery .wide {
  grid-row: span 2;
}

.corporate-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 800ms ease, opacity 240ms ease;
}

.corporate-gallery figure:hover img {
  transform: scale(1.055);
  opacity: 1;
}

.corporate-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.market-map {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(39, 175, 209, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 123, 185, 0.06) 1px, transparent 1px),
    url("assets/map-background.png") center / contain no-repeat,
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  background-size: 54px 54px, 54px 54px, 92% auto, auto;
  box-shadow: var(--shadow-deep);
}

.market-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 34%, rgba(39, 175, 209, 0.24), transparent 5%),
    radial-gradient(circle at 26% 56%, rgba(134, 185, 60, 0.22), transparent 5%),
    radial-gradient(circle at 78% 56%, rgba(217, 77, 152, 0.2), transparent 6%);
  pointer-events: none;
}

.market-dot {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 160px;
  padding-left: 18px;
  color: var(--color-ivory);
}

.market-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 8px rgba(39, 175, 209, 0.14), 0 0 26px rgba(39, 175, 209, 0.62);
}

.market-dot.mexico::before {
  background: var(--brand-green);
  box-shadow: 0 0 0 8px rgba(134, 185, 60, 0.14), 0 0 26px rgba(134, 185, 60, 0.62);
}

.market-dot.usa::before {
  background: var(--brand-magenta);
  box-shadow: 0 0 0 8px rgba(217, 77, 152, 0.14), 0 0 26px rgba(217, 77, 152, 0.62);
}

.market-dot strong {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.market-dot small {
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.market-dot.italy { left: 47%; top: 28%; }
.market-dot.mexico { left: 21%; top: 54%; }
.market-dot.usa { left: 72%; top: 55%; }

.technology-section {
  background:
    radial-gradient(circle at 74% 28%, rgba(39, 175, 209, 0.12), transparent 26%),
    radial-gradient(circle at 24% 78%, rgba(134, 185, 60, 0.08), transparent 28%),
    linear-gradient(180deg, var(--color-graphite), var(--color-black));
}

.technology-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.technology-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

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

.stat {
  min-height: 220px;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  text-align: center;
}

.stat strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  width: 100%;
  color: var(--color-ivory);
  font-family: var(--font-serif);
  font-size: clamp(5.1rem, 7vw, 7.4rem);
  font-weight: 500;
  line-height: 0.82;
  white-space: nowrap;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.stat strong span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.stat strong small {
  color: var(--brand-cyan);
  font-size: 0.52em;
  line-height: 1;
}

.stat .stat-word {
  font-size: clamp(2.7rem, 3.9vw, 4.2rem);
}

.stat > span:last-child {
  display: block;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-page-main {
  padding-top: var(--header-height);
}

.brand-page-hero {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: 84px 0;
}

.brand-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.brand-page-logo {
  width: min(420px, 100%);
  margin-bottom: 32px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 16%, rgba(39, 175, 209, 0.14), transparent 32%),
    radial-gradient(circle at 88% 84%, rgba(217, 77, 152, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(252, 253, 255, 0.96), rgba(224, 231, 238, 0.9));
}

.brand-page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.brand-page-hero p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.brand-page-media {
  min-height: 430px;
}

.brand-page-photo {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.brand-page-photo img {
  opacity: 0.98;
}

.brand-page-cover {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(39, 175, 209, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.brand-page-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 26px;
}

.brand-page-360-cover img {
  max-height: 560px;
}

.brand-page-yuma-cover img {
  padding: 12px;
  object-fit: contain;
  opacity: 0.98;
  transform: none;
}

.brand-page-ipnosi-cover img,
.brand-page-mac-cover img {
  padding: 16px;
  object-fit: contain;
  opacity: 0.98;
  transform: none;
}

.brand-page-video {
  display: grid;
  place-items: center;
}

.brand-page-video video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 0;
  background: #050505;
}

.brand-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.brand-page-detail {
  background: var(--color-black);
}

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

.brand-info-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.brand-info-card p {
  color: var(--color-muted);
}

.brand-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
}

.brand-gallery figure {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 16%, rgba(39, 175, 209, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
}

.brand-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 300ms ease;
}

.brand-gallery figure:hover img {
  transform: scale(1.045);
}

.video-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.brand-page-video,
.brand-video-card {
  position: relative;
}

.brand-video-card {
  aspect-ratio: 16 / 9;
  min-height: auto;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(39, 175, 209, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.brand-page-video::before,
.brand-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 50% 50%, rgba(39, 175, 209, 0.18), transparent 24%);
}

.brand-page-video::after,
.brand-video-card::after {
  content: attr(data-video-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px 0 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle 14px at 28px 50%, var(--brand-cyan) 0 42%, transparent 44%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.44));
  color: var(--color-ivory);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.brand-page-video.is-playing::before,
.brand-page-video.is-playing::after,
.brand-video-card.is-playing::before,
.brand-video-card.is-playing::after {
  opacity: 0;
}

.brand-video-card video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #050505;
}

.blackburs-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.blackburs-gallery figure {
  min-height: auto;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 36%, rgba(139, 123, 185, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.blackburs-gallery img {
  opacity: 0.98;
}

.bursbox-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.bursbox-gallery figure {
  min-height: auto;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 42%, rgba(239, 113, 70, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.brand-gallery.bursbox-gallery .contain-media img {
  object-fit: contain;
  padding: clamp(12px, 2vw, 22px);
  opacity: 0.98;
  transform: none;
}

.brand-gallery.bursbox-gallery figure:hover img {
  transform: none;
}

.lust-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.lust-gallery figure {
  min-height: auto;
  aspect-ratio: 1 / 1;
}

.lust-gallery img {
  opacity: 0.96;
}

.ipnosi-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.ipnosi-gallery figure {
  min-height: auto;
  aspect-ratio: 4 / 5;
}

.ipnosi-gallery .wide {
  grid-column: span 3;
  aspect-ratio: 21 / 8;
}

.ipnosi-gallery img {
  opacity: 0.96;
}

.brand-gallery.ipnosi-gallery .contain-media img {
  object-fit: contain;
  padding: 16px;
  transform: none;
}

.brand-gallery.ipnosi-gallery figure:hover img {
  transform: scale(1.025);
}

.surgiti-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.surgiti-gallery figure {
  min-height: auto;
  aspect-ratio: 4 / 3;
}

.surgiti-gallery img {
  opacity: 0.97;
}

.yuma-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.yuma-gallery figure {
  min-height: auto;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 204, 24, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.yuma-gallery .tall {
  aspect-ratio: 4 / 5;
}

.brand-gallery.yuma-gallery .contain-media img {
  object-fit: contain;
  padding: 16px;
  opacity: 0.98;
  transform: none;
}

.brand-gallery.yuma-gallery figure:hover img {
  transform: scale(1.025);
}

.mac-gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 32px;
}

.mac-gallery figure {
  min-height: auto;
  background:
    radial-gradient(circle at 50% 36%, rgba(245, 204, 24, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.mac-gallery .book-portrait {
  grid-column: span 2;
  aspect-ratio: 2 / 3;
}

.mac-gallery .book-portrait:first-child {
  grid-column: 2 / span 2;
}

.mac-gallery .book-portrait:nth-child(2) {
  grid-column: 4 / span 2;
}

.mac-gallery .book-square {
  grid-column: span 3;
  aspect-ratio: 1 / 1;
}

.mac-gallery .book-wide {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}

.brand-gallery.mac-gallery .contain-media img {
  object-fit: contain;
  padding: 14px;
  opacity: 0.98;
  transform: none;
}

.brand-gallery.mac-gallery figure:hover img {
  transform: none;
}

.brand-gallery .contain-media img {
  object-fit: contain;
  padding: 18px;
  transform: scale(1.08);
}

[data-tilt],
[data-parallax] {
  will-change: transform;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 42% 0%, rgba(39, 175, 209, 0.15), transparent 30%),
    radial-gradient(circle at 58% 0%, rgba(217, 77, 152, 0.1), transparent 32%),
    #050505;
}

.final-cta .section-inner {
  max-width: 800px;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px auto 30px;
  color: var(--color-muted);
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 34px;
  color: var(--color-muted);
  font-style: normal;
  font-size: 0.88rem;
}

.site-footer {
  padding: 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 232, 0.54);
  background: #050505;
  text-align: center;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftLine {
  0%, 100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.7;
    transform: translate3d(24px, -14px, 0);
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(12px, -20px, 0) scale(1.45);
    opacity: 0.82;
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes ribbonMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes atmosphereShift {
  0% {
    opacity: 0.78;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.08) translate3d(2%, -1%, 0);
  }
}

@keyframes buttonBreath {
  0%, 100% {
    box-shadow: var(--shadow-brand);
  }
  50% {
    box-shadow: 0 24px 90px rgba(39, 175, 209, 0.26), 0 12px 50px rgba(217, 77, 152, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-toggle {
    display: block;
    order: 3;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(7, 7, 7, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 0;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .two-column,
  .division-grid,
  .stats-grid,
  .brand-page-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid,
  .image-band,
  .division-media,
  .brand-page-grid,
  .corporate-gallery,
  .brand-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-gallery {
    grid-auto-rows: minmax(220px, 34vw);
  }

  .ipnosi-gallery .wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .mac-gallery .book-portrait,
  .mac-gallery .book-portrait:first-child,
  .mac-gallery .book-portrait:nth-child(2),
  .mac-gallery .book-square,
  .mac-gallery .book-wide {
    grid-column: span 1;
  }

  .mac-gallery .book-portrait {
    aspect-ratio: 2 / 3;
  }

  .mac-gallery .book-square,
  .mac-gallery .book-wide {
    aspect-ratio: 4 / 3;
  }

  .brand-page-grid {
    align-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 28px, 1160px);
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 136px;
    min-width: 124px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .language-switcher button {
    width: 30px;
    height: 26px;
    font-size: 0.62rem;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero-logo {
    margin-bottom: 28px;
    padding: 0 12px;
  }

  .hero-actions,
  address {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .two-column,
  .division-grid,
  .brand-grid,
  .stats-grid,
  .image-band,
  .division-media,
  .brand-page-grid,
  .brand-page-columns,
  .brand-gallery,
  .corporate-gallery {
    grid-template-columns: 1fr;
  }

  .corporate-gallery {
    grid-auto-rows: minmax(230px, 68vw);
  }

  .corporate-gallery .wide {
    grid-row: auto;
  }

  .ipnosi-gallery .wide {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }

  .mac-gallery .book-portrait,
  .mac-gallery .book-portrait:first-child,
  .mac-gallery .book-portrait:nth-child(2),
  .mac-gallery .book-square,
  .mac-gallery .book-wide {
    grid-column: auto;
  }

  .mac-gallery .book-portrait {
    aspect-ratio: 2 / 3;
  }

  .mac-gallery .book-square,
  .mac-gallery .book-wide {
    aspect-ratio: 4 / 3;
  }

  .image-band figure,
  .division-media figure,
  .brand-page-media,
  .brand-gallery figure {
    min-height: 240px;
  }

  .brand-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .image-band figure:nth-child(2) {
    transform: none;
  }

  .division-media {
    padding: 16px;
  }

  .stat strong {
    font-size: clamp(4.2rem, 24vw, 6.8rem);
  }

  .division-card,
  .brand-card {
    min-height: auto;
  }

  .timeline li {
    padding-right: 18px;
  }

  .market-map {
    min-height: 460px;
    background-size: 62px 62px, 62px 62px, 150% auto, auto;
  }

  .market-dot.italy { left: 46%; top: 20%; }
  .market-dot.mexico { left: 12%; top: 55%; }
  .market-dot.usa { left: 52%; top: 70%; }
}
