@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Trocchi&display=swap');

:root {
  --black: #000000;
  --black-soft: #0b0610;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.16);

  --purple: #370054;
  --purple-soft: #4c0a70;
  --purple-deep: #180022;

  --red: #FF3131;
  --dark-red: #8B0000;

  --cream: #fff8f1;
  --floor-1: #caa89c;
  --floor-2: #9a7168;
  --wood: #dab089;
  --chair: #736a73;

  --shadow: 0 24px 70px rgba(0,0,0,0.30);
  --sans: 'Inter', Arial, sans-serif;
  --serif: 'Trocchi', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at 14% 6%, rgba(55,0,84,0.36), transparent 30%),
    linear-gradient(180deg, #000 0%, #100716 42%, #000 100%);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-wrap {
  min-height: 100vh;
}

/* HEADER */
.header {
  height: 122px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
  z-index: 50;
  background: rgba(0,0,0,0.96);
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.logo-main {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.72;
  letter-spacing: -0.12em;
  color: var(--red);
  text-transform: lowercase;
}

.logo-sub {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--red);
  margin-bottom: 4px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-btn {
  background: var(--white);
  color: #000;
  padding: 16px 23px;
  border-radius: 22px;
  font-weight: 850;
  transition: 0.25s ease;
}

.contact-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

/* HERO */
.hero {
  padding-bottom: 34px;
}

.hero-box {
  width: calc(100% - 96px);
  height: calc(100vh - 156px);
  min-height: 700px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #6f514d;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 34px 100px rgba(0,0,0,0.45);
}

/* SCENE */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 8% 22%, rgba(255,255,255,0.40) 0 70px, transparent 71px),
    radial-gradient(circle at 84% 16%, rgba(55,0,84,0.34) 0 240px, transparent 241px),
    radial-gradient(circle at 94% 82%, rgba(255,49,49,0.18) 0 230px, transparent 231px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, var(--floor-1), var(--floor-2));
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.12;
}

.scene-left,
.scene-right {
  position: absolute;
  top: 0;
  bottom: 0;
}

.scene-left {
  left: 0;
  width: 18%;
  background: rgba(255,255,255,0.08);
}

.scene-right {
  right: 0;
  width: 18%;
  background:
    linear-gradient(180deg, rgba(55,0,84,0.24), rgba(139,0,0,0.08)),
    rgba(255,255,255,0.04);
}

.table {
  position: absolute;
  left: 36%;
  width: 38%;
  height: 16%;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,0.05) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent),
    var(--wood);
  box-shadow: var(--shadow);
}

.table-top {
  top: 29%;
}

.table-bottom {
  top: 66%;
}

.chair {
  position: absolute;
  width: 54px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent),
    var(--chair);
  box-shadow: 0 10px 20px rgba(0,0,0,0.20);
  z-index: 2;
}

.chair-1 { left: 41%; top: 18%; }
.chair-2 { left: 54%; top: 18%; }
.chair-3 { left: 69%; top: 18%; }
.chair-4 { left: 45%; top: 57%; }
.chair-5 { left: 58%; top: 57%; }
.chair-6 { left: 68%; top: 57%; }

.person {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 24%, #f4efea 0 10px, transparent 11px),
    radial-gradient(circle at 50% 56%, #f7f3ed 0 20px, transparent 21px),
    radial-gradient(circle at 28% 55%, #f7f3ed 0 8px, transparent 9px),
    radial-gradient(circle at 72% 55%, #f7f3ed 0 8px, transparent 9px);
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.14));
  animation: personFloat 5.5s ease-in-out infinite;
}

@keyframes personFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

.person-1 { right: 31%; top: 22%; transform: rotate(18deg); }
.person-2 { left: 46%; top: 55%; transform: rotate(-12deg); animation-delay: .7s; }
.person-3 { left: 49%; bottom: 0%; transform: rotate(180deg); animation-delay: 1.3s; }

.laptop,
.paper,
.plant {
  position: absolute;
  z-index: 2;
}

.laptop {
  width: 38px;
  height: 24px;
  border-radius: 3px;
  background:
    linear-gradient(180deg, #cfd3d8 0 68%, #5f6670 69% 100%);
  box-shadow: 0 8px 16px rgba(0,0,0,0.14);
}

.laptop-1 { left: 44%; top: 35%; transform: rotate(-12deg); }
.laptop-2 { left: 57%; top: 35%; transform: rotate(5deg); }
.laptop-3 { left: 47%; top: 73%; transform: rotate(-8deg); }
.laptop-4 { left: 63%; top: 73%; transform: rotate(7deg); }

.paper {
  width: 34px;
  height: 22px;
  border-radius: 3px;
  background: #d8d8d8;
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
}

.paper-1 { left: 51%; top: 36%; transform: rotate(8deg); }
.paper-2 { left: 40%; top: 72%; transform: rotate(-11deg); }
.paper-3 { left: 58%; top: 72%; transform: rotate(6deg); }

.plant {
  left: 7%;
  top: 13%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 25%, #1d5b36 0 12px, transparent 13px),
    radial-gradient(circle at 64% 26%, #18462b 0 12px, transparent 13px),
    radial-gradient(circle at 52% 62%, #2c7044 0 16px, transparent 17px),
    #28583a;
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 54% 52%, rgba(255,49,49,0.05), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.36)),
    linear-gradient(90deg, rgba(55,0,84,0.25), rgba(139,0,0,0.10));
  pointer-events: none;
}

/* HERO UI */
.hero-arrow,
.hero-up,
.hero-chip,
.pulse,
.hero-content,
.info-panel {
  position: absolute;
  z-index: 10;
}

.hero-arrow,
.hero-up {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(55,0,84,0.34);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 34px;
  cursor: pointer;
  transition: 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow:hover,
.hero-up:hover {
  background: var(--red);
}

.hero-arrow-left {
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-arrow-right {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-up {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  font-size: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px 11px 17px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(55,0,84,0.42);
  color: var(--white);
  font-weight: 850;
  font-size: 19px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.hero-chip span:last-child {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.hero-chip:hover,
.active-chip {
  background: var(--red);
  box-shadow: 0 16px 40px rgba(255,49,49,0.22);
}

.chip-media {
  left: 7%;
  top: 7%;
}

.chip-culture {
  right: 24%;
  top: 7%;
}

.chip-work {
  left: 51%;
  top: 51%;
  transform: translate(-50%, -50%);
}

.pulse {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.90);
  background: rgba(255,49,49,0.50);
  animation: pulseAnim 2s infinite;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}

.pulse-1 { left: 45%; top: 35%; }
.pulse-2 { left: 57%; top: 35%; animation-delay: .35s; }
.pulse-3 { left: 45%; top: 75%; animation-delay: .7s; }
.pulse-4 { left: 57%; top: 75%; animation-delay: 1s; }

@keyframes pulseAnim {
  70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hero-content {
  left: 52px;
  bottom: 52px;
  max-width: 720px;
}

.hero-content h1 {
  display: grid;
  gap: 8px;
  font-size: clamp(58px, 7vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 950;
  text-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.hero-line {
  display: block;
}

.hero-red {
  color: var(--red);
}

.info-panel {
  right: 38px;
  bottom: 38px;
  width: 380px;
  padding: 30px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(55,0,84,0.50), rgba(0,0,0,0.68));
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.info-panel h2 {
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.info-panel p {
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.info-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 19px;
  border-radius: 999px;
  background: var(--white);
  color: #000;
  font-weight: 900;
  transition: 0.25s ease;
}

.info-panel a:hover {
  background: var(--red);
  color: var(--white);
}

/* SECTIONS */
.section {
  padding: 140px 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.section-grid {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 76px;
}

.section-label {
  color: rgba(255,255,255,0.52);
  font-size: 18px;
  font-weight: 850;
}

.section-title {
  max-width: 1120px;
  font-size: clamp(56px, 8vw, 122px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.section-title span {
  color: var(--red);
}

.section-text {
  max-width: 760px;
  margin-top: 38px;
  color: rgba(255,255,255,0.68);
  font-size: 20px;
  line-height: 2;
}

.service-list {
  display: grid;
  gap: 26px;
  margin-top: 78px;
}

.service-row {
  display: grid;
  grid-template-columns: 110px 1fr 0.58fr;
  gap: 42px;
  align-items: center;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at top right, rgba(55,0,84,0.18), transparent 34%),
    rgba(255,255,255,0.035);
  transition: 0.25s ease;
}

.service-row:hover {
  border-color: rgba(255,49,49,0.42);
  background:
    radial-gradient(circle at top right, rgba(55,0,84,0.28), transparent 34%),
    rgba(255,255,255,0.055);
}

.service-row small {
  color: var(--red);
  font-size: 16px;
  font-weight: 950;
}

.service-row h3 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.service-row p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.9;
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 78px;
}

.card {
  min-height: 350px;
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at top right, rgba(55,0,84,0.62), transparent 42%),
    rgba(255,255,255,0.04);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,49,49,0.36);
}

.featured {
  border-color: rgba(255,49,49,0.44);
  background:
    radial-gradient(circle at top right, rgba(255,49,49,0.22), transparent 36%),
    radial-gradient(circle at bottom left, rgba(55,0,84,0.76), transparent 46%),
    rgba(255,255,255,0.05);
}

.card span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 16px;
  font-weight: 950;
}

.card h3 {
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 950;
  margin-bottom: 26px;
}

.card p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.95;
}

.media-card {
  min-height: 270px;
}

/* CONTACT */
.contact-section {
  min-height: 76vh;
  padding: 150px 48px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 50% 20%, rgba(55,0,84,0.82), transparent 38%),
    linear-gradient(180deg, #000, #100716);
}

.contact-inner {
  width: min(1080px, 100%);
  text-align: center;
}

.contact-inner h2 {
  max-width: 1180px;
  margin: 0 auto 46px;
  font-size: clamp(72px, 10vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.contact-inner h2 span {
  color: var(--red);
}

.contact-inner p {
  max-width: 760px;
  margin: 0 auto 48px;
  color: rgba(255,255,255,0.70);
  font-size: 20px;
  line-height: 2;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-links a {
  padding: 17px 25px;
  border-radius: 999px;
  background: var(--white);
  color: #000;
  font-weight: 900;
  transition: 0.25s ease;
}

.contact-links a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.secondary-link {
  background: rgba(255,255,255,0.08) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.16);
}

.footer {
  padding: 38px 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.52);
  font-weight: 750;
}

/* MOBILE */
@media (max-width: 1100px) {
  .header {
    padding: 0 24px;
  }

  .nav,
  .contact-btn {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav.open {
    display: grid;
    position: absolute;
    top: 90px;
    left: 24px;
    right: 24px;
    padding: 22px;
    gap: 18px;
    border-radius: 22px;
    background: #202020;
    border: 1px solid rgba(255,255,255,0.14);
  }

  .nav.open a {
    color: var(--white);
  }

  .hero-box {
    width: calc(100% - 48px);
    height: auto;
    min-height: 800px;
  }

  .info-panel {
    left: 28px;
    right: 28px;
    width: auto;
    bottom: 28px;
  }

  .hero-content {
    left: 28px;
    right: 28px;
    bottom: 310px;
    max-width: 640px;
  }

  .chip-media {
    left: 7%;
    top: 7%;
  }

  .chip-culture {
    right: 8%;
    top: 7%;
  }

  .chip-work {
    left: 50%;
    top: 44%;
  }

  .section-grid,
  .service-row,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 110px 28px;
  }

  .service-row {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .header {
    height: 96px;
  }

  .logo-main {
    font-size: 42px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .hero-box {
    width: calc(100% - 24px);
    min-height: 780px;
  }

  .hero-arrow,
  .hero-up,
  .pulse {
    display: none;
  }

  .hero-chip {
    font-size: 15px;
    padding: 9px 12px 9px 14px;
  }

  .hero-chip span:last-child {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }

  .chip-media {
    left: 6%;
    top: 6%;
  }

  .chip-culture {
    right: 6%;
    top: 6%;
  }

  .chip-work {
    top: 45%;
  }

  .hero-content {
    bottom: 320px;
  }

  .hero-content h1 {
    font-size: 56px;
    line-height: 0.95;
    gap: 4px;
  }

  .section-title {
    font-size: 52px;
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .service-row,
  .card {
    padding: 26px;
  }

  .contact-section {
    padding: 96px 24px;
  }

  .contact-inner h2 {
    font-size: 64px;
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .footer {
    padding: 30px 24px;
  }
}