:root {
  --white: #ffffff;
  --black: #08080b;
  --ink: #111116;
  --muted: #626977;
  --line: #ebe7e2;
  --cream: #faf7f2;
  --orange: #ff7a1a;
  --gold: #ffc46b;
  --rose: #ff5f80;
  --shadow: 0 30px 100px rgba(8, 8, 11, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 107, 0.2), transparent 34%),
    radial-gradient(circle at 14% 28%, rgba(255, 95, 128, 0.1), transparent 24%),
    var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.22), rgba(255, 196, 107, 0.08) 42%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: background 220ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(235, 231, 226, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
}

.site-header.is-elevated {
  box-shadow: 0 18px 48px rgba(8, 8, 11, 0.08);
}

.brand {
  display: inline-flex;
  width: min(220px, 40vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav,
.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.nav {
  gap: clamp(22px, 2.8vw, 38px);
  color: var(--black);
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav a,
.nav-item {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.has-menu {
  padding: 18px 0;
}

.dropdown {
  position: absolute;
  top: 48px;
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(235, 231, 226, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 72px rgba(8, 8, 11, 0.14);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.dropdown a {
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--black);
  text-transform: none;
  font-size: 15px;
  font-weight: 850;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: linear-gradient(100deg, rgba(255, 122, 26, 0.14), rgba(255, 196, 107, 0.18));
}

.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.header-actions {
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

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

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

.mobile-menu {
  position: fixed;
  top: 78px;
  right: 14px;
  left: 14px;
  z-index: 19;
  display: none;
  padding: 12px;
  border: 1px solid rgba(235, 231, 226, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 72px rgba(8, 8, 11, 0.14);
  backdrop-filter: blur(22px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 14px;
  border-radius: 16px;
  color: var(--black);
  font-size: 18px;
  font-weight: 850;
}

.mobile-menu a:hover {
  background: linear-gradient(100deg, rgba(255, 122, 26, 0.14), rgba(255, 196, 107, 0.18));
}

.mobile-submenu {
  display: grid;
  gap: 2px;
  margin: -4px 0 4px 12px;
  padding: 6px 0 8px 12px;
  border-left: 2px solid rgba(255, 122, 26, 0.18);
}

.mobile-submenu a {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 16px;
}

.language-switcher {
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.language-switcher button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--black);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 18px 36px rgba(8, 8, 11, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding: clamp(74px, 9vw, 128px) clamp(20px, 5vw, 76px);
  text-align: center;
}

.hero-copy {
  width: min(1240px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: #b84f11;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(70px, 11.2vw, 160px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(36px, 4.4vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-line {
  max-width: 1040px;
  margin: 0 auto 24px;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 850;
  line-height: 1.12;
  background: linear-gradient(100deg, var(--black), #9a3f0c 58%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede,
.section-title p,
.business-copy p,
.contact-section p {
  max-width: 780px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.72;
}

.hero .lede {
  margin-right: auto;
  margin-left: auto;
}

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

.business-section {
  padding: clamp(84px, 10vw, 150px) clamp(20px, 5vw, 76px);
}

.section-title {
  max-width: 860px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.business-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(38px, 6vw, 78px) 0;
  scroll-margin-top: 110px;
}

.business-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.business-row.reverse .business-visual {
  order: 2;
}

.business-visual {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(235, 231, 226, 0.9);
  border-radius: 36px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 196, 107, 0.24), transparent 28%),
    linear-gradient(145deg, #fff, #faf2e8 74%, #eee4da);
  box-shadow: var(--shadow);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.business-visual:hover {
  box-shadow: 0 36px 110px rgba(8, 8, 11, 0.18);
  transform: translateY(-8px);
}

.business-visual:focus-visible,
.business-title-link:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.42);
  outline-offset: 5px;
}

.visual-media {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.visual-media img,
.visual-media video,
.visual-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-media img,
.visual-media video {
  object-fit: cover;
}

.business-visual > span {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 4;
  color: #b84f11;
  font-size: 12px;
  font-weight: 950;
}

.business-visual > strong {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 4;
  color: var(--black);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.94;
}

.art {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 2;
  width: min(250px, 62%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: pop-float 6s ease-in-out infinite;
}

.art-puzzle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 70px rgba(8, 8, 11, 0.14);
  backdrop-filter: blur(18px);
}

.art-puzzle i {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.art-puzzle i:nth-child(2),
.art-puzzle i:nth-child(4),
.art-puzzle i:nth-child(8) {
  background: var(--black);
}

.art-puzzle i::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: inherit;
  content: "";
  transform: translateY(-50%);
}

.art-ai {
  border-radius: 50%;
}

.art-ai b {
  position: absolute;
  inset: 26%;
  z-index: 3;
  border-radius: 50%;
  background: var(--black);
  box-shadow:
    0 0 0 18px rgba(255, 122, 26, 0.12),
    0 24px 70px rgba(8, 8, 11, 0.22);
}

.art-ai i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 0 0 8px rgba(255, 122, 26, 0.12);
}

.art-ai i:nth-child(1) { top: 4%; left: 46%; }
.art-ai i:nth-child(2) { top: 22%; right: 10%; }
.art-ai i:nth-child(3) { right: 6%; bottom: 28%; }
.art-ai i:nth-child(4) { bottom: 5%; left: 48%; }
.art-ai i:nth-child(5) { bottom: 28%; left: 6%; }
.art-ai i:nth-child(6) { top: 22%; left: 10%; }

.art-ai::before,
.art-ai::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 122, 26, 0.36);
  border-radius: 50%;
  content: "";
}

.art-ai::after {
  inset: 27%;
  border-color: rgba(8, 8, 11, 0.18);
}

.art-football {
  width: min(270px, 68%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 12%, transparent 13%),
    conic-gradient(from 18deg, var(--black) 0 12%, #fff 12% 24%, var(--black) 24% 36%, #fff 36% 48%, var(--black) 48% 60%, #fff 60% 72%, var(--black) 72% 84%, #fff 84% 100%);
  border: 12px solid var(--white);
  box-shadow:
    0 24px 78px rgba(8, 8, 11, 0.18),
    inset 0 0 0 3px rgba(8, 8, 11, 0.08);
}

.art-football i {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0), rgba(255, 122, 26, 0.72), rgba(255, 196, 107, 0));
}

.art-football i:nth-child(1) { top: -24px; left: -58px; width: 170px; height: 4px; }
.art-football i:nth-child(2) { top: 38px; right: -74px; width: 210px; height: 4px; }
.art-football i:nth-child(3) { bottom: 20px; left: -78px; width: 230px; height: 4px; }
.art-football i:nth-child(4) { bottom: -30px; right: -42px; width: 160px; height: 4px; }
.art-football i:nth-child(5) { top: 50%; left: -92px; width: 260px; height: 4px; }

.art-marketing {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  width: min(280px, 70%);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(8, 8, 11, 0.14);
  backdrop-filter: blur(18px);
}

.art-marketing i {
  width: 38px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
}

.art-marketing i:nth-child(1) { height: 88px; }
.art-marketing i:nth-child(2) { height: 138px; }
.art-marketing i:nth-child(3) {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 74%, rgba(8, 8, 11, 0.12) 74% 100%);
}
.art-marketing i:nth-child(4) { height: 112px; background: var(--black); }
.art-marketing i:nth-child(5) { height: 168px; }

.art-company {
  display: grid;
  place-items: center;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(255, 196, 107, 0.12)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(8, 8, 11, 0.14);
}

.art-company b {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  box-shadow:
    0 0 0 18px rgba(255, 122, 26, 0.14),
    0 0 0 42px rgba(255, 196, 107, 0.14);
}

.art-company i {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.art-company i:nth-child(1) { top: 17%; left: 18%; }
.art-company i:nth-child(2) { top: 14%; right: 20%; }
.art-company i:nth-child(3) { right: 15%; bottom: 18%; }
.art-company i:nth-child(4) { bottom: 16%; left: 22%; }

.business-copy {
  max-width: 680px;
}

.business-title-link {
  display: inline-block;
  line-height: 1.1;
  background-image: linear-gradient(90deg, var(--orange), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 6px;
  transition:
    color 220ms ease,
    background-size 260ms ease;
}

.business-title-link:hover {
  color: #9a3f0c;
  background-size: 100% 6px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin: 0 clamp(20px, 5vw, 76px) clamp(42px, 6vw, 76px);
  padding: clamp(42px, 6vw, 74px);
  overflow: hidden;
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 122, 26, 0.45), transparent 28%),
    linear-gradient(140deg, #08080b, #17100c 68%, #301506);
  box-shadow: var(--shadow);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-section h2 {
  max-width: 900px;
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card a {
  overflow-wrap: anywhere;
  font-size: 22px;
  font-weight: 850;
}

.contact-card small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px) 42px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  font-weight: 850;
}

.footer a:hover {
  color: var(--black);
}

.legal-main {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 76px) clamp(52px, 7vw, 92px);
}

.legal-hero {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: clamp(34px, 5vw, 62px);
  margin-left: auto;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.96;
}

.legal-hero p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
}

.legal-document {
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  text-align: center;
}

.policy-content {
  text-align: left;
}

.policy-content[hidden] {
  display: none;
}

.policy-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.16;
}

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

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.policy-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
  text-align: left;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: #9a3f0c;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.detail-main {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 76px) clamp(42px, 7vw, 86px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: calc(100vh - 170px);
}

.detail-copy h1 {
  max-width: 900px;
  font-size: clamp(66px, 10vw, 148px);
  line-height: 1.04;
}

.detail-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.detail-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(235, 231, 226, 0.9);
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 196, 107, 0.24), transparent 28%),
    linear-gradient(145deg, #fff, #faf2e8 74%, #eee4da);
  box-shadow: var(--shadow);
}

.detail-visual .art {
  width: min(300px, 70%);
}

.detail-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.detail-note div {
  min-height: 150px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-note span {
  display: block;
  margin-bottom: 18px;
  color: #b84f11;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.detail-info {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 18px;
  scroll-margin-top: 108px;
}

.detail-info-intro,
.detail-info-grid {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.detail-info-intro {
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 122, 26, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

.detail-info-intro h2 {
  font-size: clamp(34px, 4.4vw, 66px);
}

.detail-info-intro p {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.detail-info-grid div {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-info-grid span {
  display: block;
  margin-bottom: 14px;
  color: #b84f11;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-info-grid strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.company-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
  margin-top: 24px;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 122, 26, 0.45), transparent 28%),
    linear-gradient(140deg, #08080b, #17100c 68%, #301506);
  box-shadow: var(--shadow);
}

.company-panel .eyebrow {
  color: var(--gold);
}

.company-panel h2 {
  max-width: 840px;
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 70px);
}

.company-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.68;
}

.company-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.company-chip-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.company-addresses {
  margin-top: 24px;
}

.company-address-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.company-address-intro h2 {
  font-size: clamp(34px, 4.4vw, 66px);
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.address-grid article {
  min-height: 186px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.address-grid span {
  display: block;
  margin-bottom: 12px;
  color: #b84f11;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.address-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.14;
}

.address-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(54px) scale(0.965);
  transition:
    opacity 1450ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translateX(-92px) scale(0.965);
}

.reveal.from-right {
  transform: translateX(92px) scale(0.965);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@keyframes pop-float {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -54%) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .business-row,
  .business-row.reverse,
  .contact-section,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .business-row.reverse .business-visual {
    order: 0;
  }

  .detail-note,
  .detail-info,
  .detail-info-grid,
  .company-panel,
  .address-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html,
  body,
  main {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .cursor-light {
    display: none;
  }

  .site-header {
    min-height: auto;
    padding: 12px 14px;
    gap: 12px;
  }

  .mobile-menu {
    top: 66px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }

  .brand {
    width: min(150px, 38vw);
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher button {
    min-width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
    padding: 54px 20px 48px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(30px, 9.8vw, 52px);
    line-height: 0.9;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  h3 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-line {
    max-width: 24rem;
    font-size: 31px;
    line-height: 1.2;
  }

  .lede,
  .section-title p,
  .business-copy p,
  .contact-section p {
    font-size: 20px;
  }

  .business-section {
    padding: 56px 18px;
  }

  .hero .lede {
    max-width: 24rem;
    line-height: 1.68;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .business-row {
    gap: 24px;
    padding: 30px 0;
  }

  .reveal.from-left,
  .reveal.from-right {
    transform: translateY(46px) scale(0.965);
  }

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

  .business-visual {
    min-height: 280px;
    border-radius: 26px;
  }

  .business-visual > strong {
    font-size: 38px;
  }

  .art {
    width: min(200px, 66%);
  }

  .primary-button,
  .secondary-button,
  .detail-actions .primary-button,
  .detail-actions .secondary-button {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    width: 100%;
    max-width: 21rem;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-section {
    margin: 0 18px 36px;
    padding: 30px 22px;
    border-radius: 30px;
  }

  .detail-main {
    padding: 42px 18px 40px;
  }

  .detail-hero {
    min-height: auto;
    gap: 30px;
  }

  .detail-copy h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .detail-copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  .detail-actions {
    width: 100%;
    max-width: 21rem;
  }

  .detail-visual {
    min-height: 260px;
    border-radius: 30px;
  }

  .detail-visual .art {
    width: min(220px, 64%);
  }

  .detail-note {
    margin-top: 30px;
    border-radius: 24px;
  }

  .detail-note div {
    min-height: auto;
    padding: 22px;
  }

  .detail-note span {
    margin-bottom: 12px;
  }

  .detail-note strong {
    font-size: 20px;
    line-height: 1.16;
  }

  .detail-info {
    margin-top: 18px;
    gap: 16px;
  }

  .detail-info-intro,
  .detail-info-grid {
    border-radius: 24px;
  }

  .detail-info-intro {
    padding: 26px 22px;
  }

  .detail-info-intro h2 {
    font-size: 34px;
  }

  .detail-info-intro p {
    font-size: 15px;
  }

  .detail-info-grid div {
    min-height: auto;
    padding: 22px;
  }

  .detail-info-grid span {
    margin-bottom: 12px;
  }

  .detail-info-grid strong {
    font-size: 18px;
    line-height: 1.16;
  }

  .company-panel {
    margin-top: 18px;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .company-panel h2 {
    font-size: 34px;
  }

  .company-panel p {
    font-size: 15px;
  }

  .company-chip-grid {
    grid-template-columns: 1fr;
  }

  .company-chip-grid span {
    min-height: 58px;
    font-size: 16px;
  }

  .company-addresses {
    margin-top: 22px;
  }

  .address-grid {
    border-radius: 24px;
  }

  .address-grid article {
    min-height: auto;
    padding: 22px;
  }

  .address-grid strong {
    font-size: 18px;
  }

  .address-grid p {
    font-size: 14px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-card a {
    font-size: 18px;
  }

  .contact-card small {
    font-size: 11px;
  }

  .footer {
    flex-direction: column;
    padding: 22px 18px 34px;
  }

  .legal-main {
    padding: 42px 18px 44px;
  }

  .legal-hero h1 {
    font-size: clamp(42px, 14vw, 62px);
    line-height: 1;
  }

  .legal-hero p {
    font-size: 18px;
  }

  .legal-document {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .policy-content h2 {
    font-size: 26px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: min(128px, 34vw);
  }

  .site-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .language-switcher {
    padding: 3px;
  }

  .header-actions {
    gap: 4px;
  }

  .language-switcher button {
    min-width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.4vw, 38px);
  }

  .hero-line {
    font-size: 27px;
  }

  .detail-main {
    padding: 36px 14px 34px;
  }

  .detail-copy h1 {
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.12;
  }

  .detail-copy p {
    font-size: 15px;
  }

  .detail-visual {
    min-height: 230px;
    border-radius: 26px;
  }

  .detail-visual .art {
    width: min(190px, 62%);
  }

  .detail-note div {
    padding: 20px;
  }

  .detail-note strong {
    font-size: 18px;
  }

  .detail-info-intro {
    padding: 24px 20px;
  }

  .detail-info-intro h2 {
    font-size: 30px;
  }

  .detail-info-grid div {
    padding: 20px;
  }

  .detail-info-grid strong {
    font-size: 17px;
  }

  .company-panel {
    padding: 24px 20px;
  }

  .company-panel h2,
  .company-address-intro h2 {
    font-size: 30px;
  }

  .address-grid article {
    padding: 20px;
  }
}
