:root {
  --bg: radial-gradient(circle at 20% 20%, rgba(229, 57, 53, 0.08), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(0, 187, 255, 0.08), transparent 28%),
    #f6f7f9;
  --ink: #0c0c0d;
  --text: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #e53935;
  --accent-alt: #ff5f52;
  --accent-blue: #4cc9f0;
  --accent-gold: #f1c40f;
  --border: rgba(0, 0, 0, 0.06);
  --card: #ffffff;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --space: clamp(1.5rem, 2vw, 2.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto Flex", "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.5), transparent 35%),
    linear-gradient(120deg, rgba(229, 57, 53, 0.05), rgba(76, 201, 240, 0.06));
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: 0;
}

@font-face {
  font-family: "Roboto Flex";
  src: url("fonts/RobotoFlex-Variable.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Rounded";
  src: url("fonts/MaterialSymbolsRounded.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

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

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}

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

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
  color: var(--text);
}

section {
  padding: calc(var(--space) * 2) var(--space);
  position: relative;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--space);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.55), rgba(255,255,255,0.86));
  backdrop-filter: blur(26px);
  z-index: -1;
}

.nav a {
  padding: 0.35rem 0.15rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.cta {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(229, 57, 53, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 46px rgba(229, 57, 53, 0.35);
  filter: saturate(1.05);
}

.cta:hover::after {
  transform: translateX(120%);
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.gallery, .panorama {
  background: #fff;
  border-radius: calc(var(--radius) * 1.4);
  margin: var(--space);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.06);
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(12, 12, 13, 0.06);
}

.pill.ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.06);
  font-weight: 600;
  border: 1px solid rgba(12, 12, 13, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.services {
  background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4)),
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(229, 57, 53, 0.05));
  border-radius: calc(var(--radius) * 1.6);
  margin: var(--space);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 20%, rgba(76, 201, 240, 0.22), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(229, 57, 53, 0.14), transparent 40%);
  opacity: 0.7;
  pointer-events: none;
  filter: blur(40px);
}

.services-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

.services-intro {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  backdrop-filter: blur(16px);
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.stat {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.015em;
}

.stat span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.services-hero {
  position: relative;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
    url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.services-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  color: #fff;
  max-width: 520px;
  display: grid;
  gap: 0.35rem;
}

.hero-copy h3 {
  margin: 0;
  font-size: 1.6rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.service-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 0.75rem;
  align-items: start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.service-card h3 {
  margin: 0;
}

.service-card.accent {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.service-card.accent p,
.service-card.accent .service-list li,
.service-card.accent .service-list span {
  color: #f2f4f7;
}

.icon-circle {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 18px 30px rgba(0, 0, 0, 0.08);
}

.service-card.accent .icon-circle {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 18px 30px rgba(0, 0, 0, 0.18);
}

.icon-dot {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.icon-mark {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.chip .material-symbols-rounded {
  color: var(--accent);
  font-size: 18px;
}

.icon-circle .material-symbols-rounded {
  font-size: 22px;
  color: var(--accent);
}

.service-list .material-symbols-rounded {
  color: var(--accent);
  font-size: 20px;
  background: rgba(229, 57, 53, 0.08);
  border-radius: 8px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card.accent .material-symbols-rounded {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
}

.chip-dot,
.list-bullet {
  display: inline-block;
}

.chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.45rem;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.18);
}

.list-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.14);
  border: 1px solid rgba(229, 57, 53, 0.3);
  margin-top: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.gallery-card {
  position: relative;
  min-height: 220px;
  border-radius: calc(var(--radius) * 1.1);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45));
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 1;
}

.gallery-card.active {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 52px rgba(0,0,0,0.16);
  filter: saturate(1.08);
}

.panorama {
  padding: 0;
}

.parallax-banner {
  position: relative;
  min-height: clamp(320px, 40vw, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("https://images.pexels.com/photos/6044234/pexels-photo-6044234.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1") center/cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(229,57,53,0.18), rgba(76,201,240,0.16)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 32%);
  backdrop-filter: blur(4px);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  color: #fff;
  text-align: center;
  display: grid;
  gap: 0.75rem;
  background: rgba(0,0,0,0.42);
  border-radius: calc(var(--radius) * 1.6);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 68px rgba(0,0,0,0.35);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--space) * 3.2) var(--space) calc(var(--space) * 2);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: #f7f7f7;
  background: radial-gradient(circle at 12% 20%, rgba(229, 57, 53, 0.12), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(76, 201, 240, 0.12), transparent 32%), #03040a;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(3, 4, 10, 0.6), rgba(3, 4, 10, 0.95));
  transform: scale(1.04);
}

.hero-ambient {
  position: absolute;
  inset: -15% -10% auto;
  height: 420px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.28), rgba(229, 57, 53, 0));
  filter: blur(60px);
  opacity: 0.9;
  animation: floatGlow 14s ease-in-out infinite alternate;
}

.hero-carousel {
  position: absolute;
  inset: 10% 4% 8%;
  display: grid;
  place-items: center;
  perspective: 1200px;
  filter: drop-shadow(0 40px 120px rgba(0, 0, 0, 0.65));
}

.hero-slide {
  width: min(82vw, 1200px);
  aspect-ratio: 21 / 9;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), var(--bg);
  background-size: cover;
  background-position: center;
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(1.04);
  transition: opacity 1s ease, transform 1.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-slide-glow {
  position: absolute;
  inset: -25% 10% auto 10%;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  filter: blur(60px);
  opacity: 0.8;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-bokeh span {
  position: absolute;
  width: clamp(40px, 8vw, 90px);
  height: clamp(40px, 8vw, 90px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
  filter: blur(12px);
  animation: drift 18s linear infinite;
}

.hero-bokeh span:nth-child(1) { top: 10%; left: 16%; animation-delay: -4s; }
.hero-bokeh span:nth-child(2) { bottom: 18%; right: 12%; animation-delay: -9s; }
.hero-bokeh span:nth-child(3) { top: 22%; right: 32%; animation-delay: -2s; }
.hero-bokeh span:nth-child(4) { bottom: 12%; left: 24%; animation-delay: -6s; }

.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -10%;
  width: clamp(320px, 34vw, 520px);
  height: clamp(320px, 34vw, 520px);
  background: radial-gradient(circle, rgba(229, 57, 53, 0.32), rgba(229, 57, 53, 0));
  filter: blur(50px);
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3, 4, 10, 0.75), rgba(3, 4, 10, 0.2)),
    radial-gradient(circle at 22% 30%, rgba(229, 57, 53, 0.25), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,0.45), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  color: #f7f7f7;
  text-align: left;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 2.6vw, 2.3rem);
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(6, 6, 12, 0.6);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1.05;
}

.hero h1 span {
  color: #f7f7f7;
  display: block;
  background: linear-gradient(120deg, #fff, #ffe6e2, #a3e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(229,57,53,0.28), rgba(76, 201, 240, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-lede {
  max-width: 640px;
  color: rgba(245, 245, 247, 0.92);
  font-size: 1.05rem;
}

.hero-actions .cta {
  box-shadow: 0 24px 46px rgba(229, 57, 53, 0.4);
}

.hero-actions .ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.rail-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.rail-card p {
  color: rgba(245, 245, 247, 0.9);
  margin: 0.25rem 0 0;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.subtle {
  color: #d6d6d6;
}

.lede {
  max-width: 520px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space);
  right: var(--space);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.section-header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: var(--space);
  position: relative;
  padding-left: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-blue));
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.brands .lede {
  color: var(--ink);
}

.hero-content p,
.banner-content p {
  color: #f2f2f2;
}

.quote {
  font-size: 1.05rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229, 57, 53, 0.08), rgba(76, 201, 240, 0.08));
  opacity: 0.65;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.grid {
  display: grid;
  gap: var(--space);
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.image-chip {
  position: relative;
  min-height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(229,57,53,0.35), rgba(0,0,0,0.4)),
    url("https://juanitoelpintor.com/wp-content/uploads/2025/09/IMG-20210909-WA0125-1024x768.jpg") center/cover;
  display: grid;
  place-items: end start;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.chip-build {
  background: linear-gradient(160deg, rgba(229,57,53,0.35), rgba(0,0,0,0.4)),
    url("https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1") center/cover;
}

.chip-finish {
  background: linear-gradient(160deg, rgba(229,57,53,0.35), rgba(0,0,0,0.4)),
    url("https://images.pexels.com/photos/8092/pexels-photo.jpg?auto=compress&cs=tinysrgb&w=1600&h=900&dpr=1") center/cover;
}

.section.clients,
.section.brands,
.section.experience,
.section.contact {
  background: #fff;
  border-radius: calc(var(--radius) * 1.2);
  margin: var(--space);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section.clients::after,
.section.brands::after,
.section.experience::after,
.section.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(229, 57, 53, 0.06), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(76, 201, 240, 0.06), transparent 40%);
  pointer-events: none;
}

.card, .logo-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.card::before,
.logo-card::before,
.exp-card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto;
  height: 120%;
  background: linear-gradient(120deg, rgba(229, 57, 53, 0.08), rgba(76, 201, 240, 0.06));
  transform: translateX(-40%) skewX(-16deg);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.logo-card {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-height: 48px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px) scale(1.02);
}

.card:hover::before,
.logo-card:hover::before,
.exp-card:hover::before {
  transform: translateX(30%) skewX(-8deg);
}

.clients .swiper-pagination-bullet-active {
  background: var(--accent);
}

.experience .cards-grid {
  margin-top: 1rem;
}

.exp-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--card);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(241, 196, 15, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 0, 0, 0.15);
}

.exp-card:hover::after {
  opacity: 1;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.08), rgba(255, 95, 82, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  display: grid;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229, 57, 53, 0.12), rgba(76, 201, 240, 0.12));
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.info-card h3 {
  margin: 0.25rem 0;
  font-size: 1rem;
}

.contact-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.whatsapp-link .wa-icon {
  width: 22px;
  height: 22px;
}

.form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fafafa;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.25);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 360px;
  border: none;
  border-radius: var(--radius);
  filter: grayscale(0.2);
}

@keyframes floatGlow {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(6px, -8px, 0) scale(1.02); }
  100% { transform: translate3d(-8px, 10px, 0) scale(1.01); }
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -18px, 0) scale(1.04); }
  100% { transform: translate3d(-14px, 16px, 0) scale(1); }
}

.footer {
  background: #f0f0f0;
  color: #2a2a2a;
  padding: var(--space);
  display: grid;
  gap: 0.75rem;
  text-align: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(229, 57, 53, 0.08), rgba(76, 201, 240, 0.04));
  pointer-events: none;
}

.footer-links, .social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: #2a2a2a;
  font-weight: 600;
}

.meta {
  color: #5c5c5c;
  margin: 0;
}

@media (max-width: 900px) {
  .nav {
    justify-content: center;
    gap: 0.75rem;
    z-index: 350;
    padding: max(12px, env(safe-area-inset-top)) var(--space);
    border-radius: 0 0 24px 24px;
  }
  .logo { order: 2; }
  .logo-img { height: 28px; }
  .nav-menu { flex: 1; display: flex; justify-content: flex-end; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    padding: calc(70px + var(--space)) var(--space) calc(var(--space) * 1.5);
    background:
      radial-gradient(circle at 25% 20%, rgba(229,57,53,0.22), transparent 38%),
      radial-gradient(circle at 80% 10%, rgba(255,95,82,0.2), transparent 34%),
      linear-gradient(180deg, rgba(12, 12, 16, 0.94), rgba(8, 8, 12, 0.96));
    backdrop-filter: blur(26px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    text-align: center;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    transform: translateY(-6%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    font-size: 1.2rem;
    z-index: 380;
    display: flex;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    color: #fff;
    font-weight: 700;
    padding: 0.55rem 1rem;
    width: auto;
    border-bottom: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    transition: color 0.2s ease, text-shadow 0.2s ease, background 0.2s ease;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  }
  .nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(229,57,53,0.8), rgba(255,95,82,0.8));
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  }
  .cta.ghost {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: calc(var(--space) * 1.5) var(--space);
  }
  .hero {
    padding-top: calc(var(--space) * 4);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.85rem var(--space);
  }
  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .lede {
    max-width: 100%;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .cta {
    width: min(320px, 100%);
    justify-content: center;
  }
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
  .section.clients,
  .section.brands,
  .section.experience,
  .section.contact {
    margin: var(--space) var(--space);
  }
  .image-chip {
    min-height: 140px;
  }
  .footer {
    padding: calc(var(--space) * 1.2);
    gap: 0.5rem;
  }
  .footer-links,
  .social {
    gap: 0.75rem;
  }
  .services, .gallery, .panorama {
    margin: var(--space) var(--space);
  }
  .banner-content {
    padding: 1.5rem;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.4rem 0.48rem;
  background: linear-gradient(135deg, rgba(229,57,53,0.9), rgba(255,95,82,0.9));
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 40px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  z-index: 400;
  position: relative;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    order: 1;
    margin-right: auto;
  }
  .cta.ghost {
    display: none;
  }
}
