/* Skywalker Media — cinematic ADV stylesheet
   Dual theme: default dark on :root, light on html[data-theme="light"] */

:root,
html[data-theme="dark"] {
  --bg: #07080c;
  --surface: #11131a;
  --surface-2: #181b24;
  --ink: #f4f2ec;
  --quiet: rgba(244, 242, 236, 0.58);
  --signal: #ff4f1a;
  --signal-deep: #e03f10;
  --line: rgba(244, 242, 236, 0.1);
  --soft: rgba(255, 255, 255, 0.04);
  --glow: rgba(255, 79, 26, 0.42);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --display: "Fraunces", "Manrope", Georgia, serif;
  --sans: "Manrope", "Noto Sans SC", "Noto Sans JP", system-ui, sans-serif;
  --serif: "Source Serif 4", "Noto Naskh Arabic", "Noto Serif SC", "Noto Serif JP", Georgia, serif;
  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --night: #07080c;
  --night-ink: #f4f2ec;
  --mx: 50%;
  --my: 42%;
}

html[data-theme="light"] {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-2: #ebe8e1;
  --ink: #12141a;
  --quiet: #5a5f6b;
  --signal: #ff4f1a;
  --signal-deep: #e03f10;
  --line: rgba(18, 20, 26, 0.1);
  --soft: #ffffff;
  --glow: rgba(255, 79, 26, 0.28);
  --shadow: 0 18px 50px rgba(18, 20, 26, 0.08);
  /* prevent leftover night tokens from forcing a black home */
  --night: #f7f5f1;
  --night-ink: #12141a;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[dir="rtl"] {
  direction: rtl;
}

::selection {
  background: rgba(255, 79, 26, 0.28);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 8% -10%, rgba(255, 79, 26, 0.12), transparent 55%),
    radial-gradient(700px 480px at 100% 0%, rgba(255, 255, 255, 0.03), transparent 50%),
    var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Home follows active theme (dark≠forced night chrome when light is on) */
body.page-home {
  background: var(--bg);
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--signal);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 700;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* —— Shared chrome —— */
.site-header {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px 12px;
  background: transparent;
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.45s var(--ease);
}

.brand-mark img {
  width: 44px;
  height: 44px;
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
}

.brand-quiet .brand-text {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
}

.nav[hidden],
.site-header.is-home .nav {
  display: none !important;
}

.nav a {
  color: var(--quiet);
  padding: 6px 0;
  transition: color 0.2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
}

.lang {
  position: relative;
}

.lang-btn,
.theme-btn,
.menu-btn,
.btn {
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  min-height: 52px;
  padding: 8px 16px;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.theme-btn .theme-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-solid,
.btn:not(.ghost):not(.btn-glow) {
  background: var(--ink);
  color: var(--bg);
  border-color: transparent;
}

.btn-solid:hover,
.btn:not(.ghost):not(.btn-glow):hover {
  background: var(--signal);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn-glow {
  background: linear-gradient(135deg, #ff7a3d, #ff4f1a 45%, #e03f10);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 36px var(--glow);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255, 79, 26, 0.5);
}

.lang-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 92px;
  min-height: 58px;
  padding: 9px 15px 10px;
  line-height: 1;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.lang-btn .lang-name {
  order: 1;
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.lang-btn .lang-flag {
  order: 2;
  display: block;
  font-size: 1.28rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.lang-btn:hover,
.menu-btn:hover,
.theme-btn:hover {
  border-color: rgba(255, 79, 26, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 79, 26, 0.14);
}

.lang.is-open .lang-btn {
  border-color: rgba(255, 79, 26, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 79, 26, 0.12);
}

.lang-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(340px, 82vw);
  padding: 12px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  z-index: 50;
}

html[dir="rtl"] .lang-panel {
  right: auto;
  left: 0;
}

.lang.is-open .lang-panel {
  display: grid;
}

.lang-panel button {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--quiet);
}

.lang-panel button .lang-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: inherit;
}

.lang-panel button .lang-flag {
  font-size: 1.15rem;
}

.lang-panel button:hover,
.lang-panel button[aria-current="true"] {
  background: rgba(255, 79, 26, 0.1);
  color: var(--signal);
}

/* Header on home: absolute / quiet over night stage */
.site-header.is-home {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 22px 28px;
  pointer-events: none;
  color: var(--night-ink);
  background: transparent;
  border: 0;
}

.site-header.is-home .brand,
.site-header.is-home .header-actions {
  pointer-events: auto;
}

.site-header.is-home .brand-quiet {
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-home .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 14px;
  opacity: 0.92;
}

.site-header.is-home .brand-mark img {
  width: 40px;
  height: 40px;
}

.site-header.is-home .lang-btn,
.site-header.is-home .theme-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-home .lang-btn .lang-name,
.site-header.is-home .theme-btn .theme-label {
  color: #fff;
}

/* —— Home night hero (always cinematic) —— */
.home-main {
  position: relative;
  overflow: clip;
}

.hero,
.hero-logo {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 100px 24px 72px;
  isolation: isolate;
  color: var(--night-ink);
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08) brightness(0.72);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 52% at 50% 42%, rgba(7, 8, 12, 0.08), rgba(7, 8, 12, 0.68) 72%, #07080c 100%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.55), transparent 28%, rgba(7, 8, 12, 0.92) 100%);
}

.hero-glow {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  left: var(--mx, 50%);
  top: var(--my, 42%);
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(255, 79, 26, 0.28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0;
  padding-bottom: 8px;
}

.logo-burst {
  position: relative;
  width: clamp(200px, 28vw, 280px);
  height: clamp(200px, 28vw, 280px);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 22px 60px rgba(255, 79, 26, 0.5));
}

.logo-core {
  position: relative;
  z-index: 2;
  width: clamp(168px, 23vw, 236px);
  height: clamp(168px, 23vw, 236px);
  border-radius: clamp(44px, 6vw, 64px);
  box-shadow:
    0 28px 70px rgba(255, 79, 26, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}

.logo-aura {
  position: absolute;
  inset: -42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 26, 0.58), transparent 68%);
  filter: blur(16px);
  animation: pulseGlow 3.2s ease-in-out infinite;
}

.logo-ring,
.logo-ring-2 {
  position: absolute;
  inset: -10%;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: ringSpin 16s linear infinite;
}

.logo-ring-2 {
  inset: -22%;
  border-color: rgba(255, 79, 26, 0.26);
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-brand {
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.94);
}

.hero-tag {
  margin: 10px 0 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 106, 58, 0.9);
}

/* Hairline + text links — no glass pill */
.hero-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding: 14px 4px 0;
  background: none;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: auto;
  max-width: 100%;
}

.hero-links a {
  position: relative;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  white-space: nowrap;
  transition: color 0.25s;
}

.hero-links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  translate: 0 -50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-links a:hover {
  color: #fff;
  background: none;
}

/* Below-fold home — theme-aware surfaces */
.home-after {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  margin-top: -1px;
}

.home-after::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--ink) 18%, transparent), transparent);
  pointer-events: none;
}

.home-strip {
  padding: 80px 0 24px;
}

.home-strip-head {
  margin-bottom: 32px;
  max-width: 32rem;
}

.home-strip-head h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -0.04em;
  color: var(--ink);
}

.home-strip-head p {
  margin: 0;
  color: var(--quiet);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.home-strip-card {
  display: grid;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
}

.home-strip-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  opacity: 0.94;
  transition: opacity 0.3s, transform 0.45s var(--ease);
}

.home-strip-card:hover img {
  opacity: 1;
  transform: scale(1.015);
}

.home-strip-card span {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--quiet);
}

.home-strip-card:hover span {
  color: var(--ink);
}

.home-steps {
  padding: 80px 0 36px;
}

.home-steps-head {
  margin-bottom: 40px;
  max-width: 32rem;
}

.home-steps-head h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -0.04em;
}

.home-steps-head p {
  margin: 0;
  color: var(--quiet);
  font-family: var(--serif);
}

.home-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.home-steps-list li {
  display: grid;
  grid-template-columns: 4.5rem 8rem 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.home-steps-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--signal);
}

.home-steps-list strong {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.home-steps-list span {
  color: var(--quiet);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-close {
  padding: 88px 0 104px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(255, 79, 26, 0.1), transparent 70%),
    transparent;
}

.home-close-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 32rem;
}

.home-close h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.home-close p {
  margin: 0;
  color: var(--quiet);
  font-family: var(--serif);
}

.home-close .btn {
  margin-top: 18px;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* —— Inner pages —— */
.page-hero {
  padding: 64px 0 36px;
  background:
    radial-gradient(700px 320px at 0% 0%, rgba(255, 79, 26, 0.1), transparent 60%),
    transparent;
}

.page-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.page-hero .lede,
.lede {
  margin: 16px 0 0;
  max-width: 42rem;
  color: var(--quiet);
  font-size: 1.2rem;
  line-height: 1.6;
}

.section {
  padding: 40px 0 80px;
}

.section h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section p {
  color: var(--quiet);
}

.copy,
.copy-wide {
  max-width: 42rem;
}

.copy-wide {
  max-width: 58rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-2);
  border: 1px solid var(--line);
  position: relative;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255, 79, 26, 0.08), transparent 45%);
}

.frame img,
.split .frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.tilt {
  transform: perspective(900px) rotateY(-1.5deg);
  transform-origin: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.panel {
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--signal) 6%, var(--surface)), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--signal), transparent);
  opacity: 0.85;
}

.panel h2,
.panel h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.panel p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--quiet);
}

.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.format {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.format:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 79, 26, 0.35);
}

.format img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 16px;
}

.format h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
}

.format p {
  margin: 0;
  font-size: 1rem;
  color: var(--quiet);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--signal);
  font-weight: 800;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 12px 0 0;
  color: var(--quiet);
}

.band,
.cta-band {
  padding: 72px 0;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255, 79, 26, 0.12), transparent 65%),
    linear-gradient(180deg, var(--surface-2), var(--bg));
  border-block: 1px solid var(--line);
}

.band .wrap,
.cta-band .wrap,
.band-inner {
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.band h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.band p,
.cta-band p {
  margin: 0;
  color: var(--quiet);
}

.map-block {
  margin: 28px 0;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-2);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.legal {
  max-width: 70ch;
  color: var(--quiet);
}

.legal h2,
.legal h3 {
  color: var(--ink);
  font-family: var(--display);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ff7a3d, #ff4f1a 45%, #e03f10);
  color: #fff;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 36px var(--glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255, 79, 26, 0.5);
}

/* —— Form —— */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--signal) 5%, var(--surface)), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.form .full {
  grid-column: 1 / -1;
}

.form label {
  display: grid;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  color: var(--ink);
  padding: 12px 14px;
  min-height: 48px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(255, 79, 26, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 79, 26, 0.12);
}

.form textarea {
  min-height: 148px;
  resize: vertical;
}

.form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--quiet);
}

.form .check input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 0.98rem;
}

.form-err {
  color: #ff6b6b;
  margin: 8px 0 0;
}

.form-ok {
  color: #3ecf8e;
  margin: 8px 0 0;
}

html[data-theme="light"] .form-err {
  color: #b42318;
}

html[data-theme="light"] .form-ok {
  color: #0f7a4a;
}

/* —— Footer —— */
.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding: 52px 24px 60px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 1.02rem;
  background:
    linear-gradient(to bottom, transparent, rgba(255, 79, 26, 0.05)),
    var(--bg);
}

.site-footer strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
}

.site-footer a,
.site-footer .linkish {
  transition: color 0.2s;
}

.site-footer a:hover,
.site-footer .linkish:hover {
  color: var(--signal);
}

.linkish {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-brand .brand {
  margin-bottom: 8px;
}

.site-footer.is-home {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--night);
  color: rgba(244, 242, 236, 0.55);
  font-size: 0.92rem;
}

.site-footer.is-home .footer-brand .brand,
.site-footer.is-home .footer-brand strong,
.site-footer.is-home > div:nth-child(2) {
  /* superseded by .footer-home strip */
}

.site-footer.is-home .footer-brand p:first-of-type {
  display: none;
}

/* —— Consent —— */
.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 560px;
  margin: 0 auto;
  display: none;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.consent.is-open {
  display: block;
}

.consent[hidden] {
  display: none !important;
}

.consent-inner {
  display: grid;
  gap: 14px;
}

.consent p {
  margin: 0;
  color: var(--quiet);
  font-size: 1.02rem;
}

.consent-link a {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent-actions .btn {
  min-height: 44px;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.consent-prefs {
  display: none;
}

.consent-prefs label {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 0.98rem;
  color: var(--quiet);
}

.consent.is-prefs .consent-prefs {
  display: block;
}

.consent.is-prefs .consent-actions {
  display: none;
}

.page-home .consent.is-open {
  left: auto;
  right: 20px;
  bottom: 20px;
  width: min(300px, calc(100% - 40px));
  margin: 0;
  max-width: none;
  padding: 12px 14px;
  font-size: 0.82rem;
  background: rgba(12, 14, 18, 0.92);
  color: #f4f2ec;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.page-home .consent-inner {
  gap: 10px;
}

.page-home .consent p {
  color: rgba(244, 242, 236, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.page-home .consent-link a {
  color: #ff6a3a;
  font-size: 0.78rem;
}

.page-home .consent-actions {
  gap: 6px;
}

.page-home .consent-actions .btn {
  min-height: 36px;
  padding: 6px 10px;
  font-size: 0.72rem;
}

.page-home .consent-actions .btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.page-home .consent-actions .btn:not(.ghost),
.page-home .consent-actions .btn-glow {
  background: #ff4f1a;
  color: #fff;
  border-color: transparent;
}

.page-home .consent-prefs label {
  color: rgba(244, 242, 236, 0.7);
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 36px);
  }

  .nav,
  .btn.desk,
  .header-actions > .btn-solid {
    display: none;
  }

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

  .nav.is-open {
    display: flex !important;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 45;
  }

  .nav.is-open a {
    padding: 14px 0;
    font-size: 1.08rem;
    border-bottom: 1px solid var(--line);
  }

  .home-strip-row {
    grid-template-columns: 1fr 1fr;
  }

  .home-steps-list li {
    grid-template-columns: 3rem 1fr;
    gap: 12px 16px;
  }

  .home-steps-list span {
    grid-column: 2 / -1;
  }

  .split,
  .split.reverse,
  .grid-3,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .split.reverse {
    direction: ltr;
  }

  .formats {
    grid-template-columns: 1fr 1fr;
  }

  .tilt {
    transform: none;
  }

  .form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1.15rem;
  }

  .wrap {
    width: calc(100% - 28px);
  }

  .site-header {
    padding: 16px 14px 10px;
  }

  .site-header.is-home {
    padding: 16px 14px;
  }

  .lang-btn {
    min-width: 72px;
    min-height: 50px;
    padding: 8px 10px;
  }

  .theme-btn .theme-label {
    display: none;
  }

  .hero {
    padding: 88px 16px 56px;
  }

  .hero-links {
    width: min(280px, 100%);
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2px;
    padding-top: 16px;
  }

  .hero-links a {
    padding: 12px 10px;
    white-space: normal;
    font-size: 1rem;
  }

  .hero-links a + a::before {
    display: none;
  }

  .home-strip-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .formats {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 40px 0 24px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .page-home .consent.is-open {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

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

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

  .logo-aura,
  .logo-ring,
  .logo-ring-2 {
    animation: none;
  }

  .brand:hover .brand-mark,
  .format:hover,
  .btn:hover,
  .btn-glow:hover,
  .cta:hover,
  .home-strip-card:hover img {
    transform: none;
  }
}


/* Contact layout + map */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.contact-aside { display: grid; gap: 18px; }
.map-block { display: grid; gap: 10px; }
.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface-2, #12141a);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}
.map-caption {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--quiet);
}
.map-caption a { text-decoration: underline; text-underline-offset: 3px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.home-steps-cta { margin-top: 36px; }
.eyebrow {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
}
.prose { font-size: 1.12rem; line-height: 1.7; }
.prose h2 { font-family: var(--display, "Syne", sans-serif); letter-spacing: -0.03em; }
.steps-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.steps-list li {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps-list strong {
  font-family: var(--display, "Syne", sans-serif);
  font-size: 1.15rem;
}
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.format {
  display: grid;
  gap: 12px;
  color: inherit;
}
.format img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.formats-stack .format-row + .format-row { margin-top: 42px; }
.frame.wide img { width: 100%; border-radius: 22px; border: 1px solid var(--line); }
.band {
  padding: 72px 0;
  background:
    radial-gradient(60% 80% at 50% 0%, color-mix(in srgb, var(--signal) 18%, transparent), transparent 60%),
    var(--bg, var(--paper));
  text-align: center;
}
.band-inner { display: grid; justify-items: center; gap: 14px; max-width: 36rem; }
@media (max-width: 900px) {
  .contact-grid, .form-row, .formats, .steps-list li { grid-template-columns: 1fr; }
}


/* —— Inner page cinematic density —— */
.page-hero--photo {
  position: relative;
  isolation: isolate;
  padding: 120px 0 72px;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}
.page-hero--photo .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero--photo .page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}
.page-hero--photo .page-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 35%, transparent) 0%, color-mix(in srgb, var(--bg) 88%, transparent) 58%, var(--bg) 100%),
    radial-gradient(60% 70% at 70% 20%, color-mix(in srgb, var(--signal) 22%, transparent), transparent 70%);
}
.page-hero--photo .page-hero-copy,
.page-hero--photo .wrap {
  position: relative;
  z-index: 1;
}
.page-hero--photo h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  text-shadow: 0 18px 60px color-mix(in srgb, var(--bg) 55%, transparent);
}
.section-alt {
  background:
    radial-gradient(70% 80% at 100% 0%, color-mix(in srgb, var(--signal) 10%, transparent), transparent 55%),
    color-mix(in srgb, var(--surface) 70%, var(--bg));
  border-block: 1px solid var(--line);
}
.formats .format {
  min-height: 100%;
}
.formats .format img {
  height: 200px;
  aspect-ratio: 5 / 4;
}
.formats-stack .format-row,
.formats-stack .format-row.split {
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.formats-stack .format-row:last-child { border-bottom: 0; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel-lg { padding: 32px; }
.panel-lg h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.frame.wide,
.frame.cinematic img {
  min-height: 360px;
}
.faq details {
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px 18px;
  margin: 0 0 12px;
}
.faq summary {
  padding: 14px 0;
}
.faq details[open] {
  border-color: color-mix(in srgb, var(--signal) 35%, var(--line));
  box-shadow: var(--shadow);
}
.map-frame {
  min-height: 320px;
  aspect-ratio: 4 / 3;
}
.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--signal) 12%, var(--surface-2)), var(--surface-2));
  z-index: 0;
}
.map-frame iframe { z-index: 1; }
.form-actions { margin-top: 8px; }

/* —— Unified header chrome chips —— */
.chrome-btn,
.theme-btn,
.lang-btn,
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--ink);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.theme-btn .theme-label,
.lang-btn .lang-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lang-btn {
  flex-direction: row;
  min-width: auto;
}

.lang-btn .lang-flag {
  order: 0;
  font-size: 1.05rem;
  line-height: 1;
  filter: none;
}

.lang-btn .lang-name {
  order: 1;
}

.site-header.is-home .chrome-btn,
.site-header.is-home .theme-btn,
.site-header.is-home .lang-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 14, 0.42);
}

.site-header.is-home .lang-btn .lang-name,
.site-header.is-home .theme-btn .theme-label {
  color: #fff;
}

/* —— Formats select —— */
.select-field .select-shell {
  position: relative;
}

.select-shell select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 52px;
  padding: 12px 44px 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, #fff), var(--bg));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.select-shell::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--quiet);
  border-bottom: 2px solid var(--quiet);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.select-shell select:focus {
  outline: none;
  border-color: rgba(255, 79, 26, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 79, 26, 0.14);
}

.form .check a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

/* —— Home footer: quiet legal strip —— */
.site-footer.is-home {
  padding: 28px 0 36px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-home {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-legal a {
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

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

.footer-rights,
.footer-mail {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--quiet);
}

html[data-theme="light"] .site-footer.is-home {
  border-top-color: rgba(18, 20, 26, 0.08);
}

/* —— Floating cookie FAB (GDPR reopen) —— */
.cookie-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
}

.cookie-fab:hover {
  border-color: rgba(255, 79, 26, 0.45);
  transform: translateY(-1px);
}

.cookie-fab-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--signal) 16%, transparent);
  color: var(--signal);
}

.cookie-fab-label {
  padding-right: 2px;
}

@media (max-width: 720px) {
  .cookie-fab-label { display: none; }
  .cookie-fab { padding: 0; width: 48px; justify-content: center; }
  .lang-btn .lang-name { display: none; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .page-hero--photo { padding: 96px 0 56px; }
  .formats .format img { height: 180px; }
}


/* —— HOME LIGHT THEME: real white stage (no night photo) —— */
html[data-theme="light"] body.page-home,
html[data-theme="light"] body.page-home .home-main {
  background: #f7f5f1;
  color: var(--ink);
}

html[data-theme="light"] .hero,
html[data-theme="light"] .hero-logo {
  color: var(--ink);
  background:
    radial-gradient(70% 55% at 50% 35%, rgba(255, 79, 26, 0.1), transparent 62%),
    radial-gradient(90% 70% at 80% 10%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 48%, #efece6 100%);
}

/* Hide cinematic night plate in light — it reads as “always dark” */
html[data-theme="light"] .hero-media,
html[data-theme="light"] .hero-photo,
html[data-theme="light"] .hero-veil,
html[data-theme="light"] .hero-grain {
  display: none !important;
}

html[data-theme="light"] .hero-glow {
  display: block;
  background: radial-gradient(circle, rgba(255, 79, 26, 0.22), transparent 68%);
  opacity: 0.9;
  filter: blur(8px);
}

html[data-theme="light"] .hero-brand {
  color: color-mix(in srgb, var(--ink) 94%, transparent);
}

html[data-theme="light"] .hero-tag {
  color: color-mix(in srgb, var(--signal) 88%, #8a2a10);
}

html[data-theme="light"] .hero-links {
  border-top-color: rgba(18, 20, 26, 0.12);
}

html[data-theme="light"] .hero-links a {
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

html[data-theme="light"] .hero-links a + a::before {
  background: rgba(18, 20, 26, 0.16);
}

html[data-theme="light"] .hero-links a:hover {
  color: var(--ink);
}

html[data-theme="light"] .logo-burst {
  filter: drop-shadow(0 18px 40px rgba(255, 79, 26, 0.28));
}

html[data-theme="light"] .logo-core {
  box-shadow:
    0 22px 50px rgba(255, 79, 26, 0.28),
    0 0 0 1px rgba(18, 20, 26, 0.08);
}

html[data-theme="light"] .logo-ring {
  border-color: rgba(18, 20, 26, 0.12);
}

html[data-theme="light"] .logo-ring-2 {
  border-color: rgba(255, 79, 26, 0.28);
}

html[data-theme="light"] .site-header.is-home {
  color: var(--ink);
}

html[data-theme="light"] .site-header.is-home .chrome-btn,
html[data-theme="light"] .site-header.is-home .theme-btn,
html[data-theme="light"] .site-header.is-home .lang-btn {
  color: var(--ink);
  border-color: rgba(18, 20, 26, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[data-theme="light"] .site-header.is-home .lang-btn .lang-name,
html[data-theme="light"] .site-header.is-home .theme-btn .theme-label {
  color: var(--ink);
}

html[data-theme="light"] .page-home .consent.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(18, 20, 26, 0.1);
  box-shadow: 0 20px 50px rgba(18, 20, 26, 0.12);
}

html[data-theme="light"] .page-home .consent p {
  color: color-mix(in srgb, var(--ink) 62%, transparent);
}

html[data-theme="light"] .page-home .consent-actions .btn.ghost {
  background: rgba(18, 20, 26, 0.04);
  border-color: rgba(18, 20, 26, 0.12);
  color: var(--ink);
}

html[data-theme="light"] .page-home .consent-prefs label {
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.frame,
.page-hero-media {
  position: relative;
}

/* Keep the required privacy control visible and easy to select. */
.form .check input[type="checkbox"] { appearance: auto; -webkit-appearance: checkbox; width: 20px; height: 20px; padding: 0; flex: 0 0 20px; accent-color: #ff4f1a; cursor: pointer; }
.form .check input:focus-visible { outline: 2px solid #ff4f1a; outline-offset: 3px; }
.form button:disabled { opacity: .65; cursor: wait; }
