﻿:root {
  --bg: #020202;
  --bg-soft: #050504;
  --panel: rgba(11, 10, 9, 0.76);
  --panel-bright: rgba(255, 255, 255, 0.052);
  --gold: #d9a743;
  --gold-soft: #f2ca68;
  --gold-deep: #6f4a12;
  --silver: #d8d8d3;
  --silver-soft: #f8f7f0;
  --muted: #a8a39a;
  --line: rgba(242, 202, 104, 0.2);
  --line-silver: rgba(210, 209, 202, 0.18);
  --shadow-gold: 0 0 34px rgba(217, 167, 67, 0.24);
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-heavy: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 114px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(1200px 720px at 50% -10%, rgba(242, 202, 104, 0.055), transparent 62%),
    radial-gradient(980px 620px at 50% 24%, rgba(217, 167, 67, 0.065), transparent 68%),
    linear-gradient(135deg, #010101 0%, #060605 48%, #010101 100%);
  color: var(--silver-soft);
  font-family: "Avenir Next", Optima, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 900ms var(--ease-heavy);
}

body.page-ready {
  opacity: 1;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body.menu-open .cookie-banner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 18px, 0);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: #050403;
  background: var(--gold-soft);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050403;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(242, 202, 104, 0.72), rgba(132, 126, 116, 0.62));
  border: 3px solid #050403;
  border-radius: 999px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #070502;
  transform: translateY(-140%);
  transition: transform 500ms var(--ease-heavy);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 17% 24%, rgba(255, 255, 255, 0.7) 0 0.5px, transparent 0.5px 3px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.35) 0 0.5px, transparent 0.5px 4px);
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle, rgba(242, 202, 104, 0.105), rgba(242, 202, 104, 0.032) 36%, transparent 70%);
  transition: opacity 700ms var(--ease-luxury);
  will-change: transform;
}

body.pointer-active .cursor-glow {
  opacity: 0.78;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  overflow: hidden;
  background:
    radial-gradient(480px 320px at 50% 46%, rgba(242, 202, 104, 0.055), transparent 74%),
    #000;
  transition:
    opacity 1100ms var(--ease-heavy),
    visibility 1100ms var(--ease-heavy);
}

.intro-screen::before,
.intro-screen::after {
  display: none;
}

.intro-screen::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent),
    radial-gradient(620px 260px at 50% 48%, rgba(242, 202, 104, 0.06), transparent 72%);
  transform: translate3d(-45%, 0, 0) skewX(-10deg);
  animation: introLightPass 2800ms var(--ease-heavy) forwards;
}

.intro-screen::after {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 66%);
  animation: introGridFade 2800ms var(--ease-heavy) forwards;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-mark {
  position: relative;
  z-index: 1;
  width: clamp(156px, 20vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.intro-mark::before,
.intro-mark::after {
  display: none;
}

.intro-mark::after {
  inset: -44%;
  border: 0;
  background: linear-gradient(115deg, transparent 43%, rgba(255, 255, 255, 0.18), transparent 57%);
  transform: translate3d(-44%, 0, 0) rotate(8deg);
  animation-delay: 220ms;
}

.intro-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
  opacity: 0;
  transform: scale(0.88) translate3d(0, 18px, 0);
  animation: introLogo 2700ms var(--ease-heavy) forwards;
}

.intro-progress {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(248, 247, 240, 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: introProgress 2300ms var(--ease-heavy) 240ms forwards;
}

.intro-progress::before {
  display: none;
}

.intro-progress strong {
  min-width: 44px;
  color: var(--silver-soft);
  font-weight: 500;
  letter-spacing: 0.08em;
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.88) translate3d(0, 18px, 0);
  }
  45%,
  80% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.04) translate3d(0, -10px, 0);
  }
}

@keyframes introGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.86);
  }
  45%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introLightPass {
  0% {
    opacity: 0;
    transform: translate3d(-56%, 0, 0) skewX(-10deg);
  }
  34%,
  74% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(56%, 0, 0) skewX(-10deg);
  }
}

@keyframes introGridFade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  45%,
  78% {
    opacity: 0.24;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes introLine {
  0% {
    transform: translate3d(-50%, 0, 0) scaleX(0);
  }
  78% {
    transform: translate3d(-50%, 0, 0) scaleX(1);
  }
  100% {
    transform: translate3d(-50%, 0, 0) scaleX(0.98);
    opacity: 0;
  }
}

@keyframes introProgress {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  32%,
  86% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(100% - 32px, 1180px);
  margin: 18px auto 0;
  color: var(--silver-soft);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 30px;
  background: rgba(5, 4, 3, 0.42);
  border: 1px solid rgba(248, 247, 240, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  transition:
    background 700ms var(--ease-luxury),
    border-color 700ms var(--ease-luxury);
}

.site-header.is-scrolled::before,
.site-header--compact::before {
  background: rgba(5, 4, 3, 0.76);
  border-color: rgba(248, 247, 240, 0.18);
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: stretch;
  gap: 18px;
  padding: 11px 20px 0;
  color: rgba(244, 241, 232, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.topbar__contact a {
  color: var(--silver-soft);
  font-weight: 400;
}

.topbar__line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 202, 104, 0.65), transparent);
}

.topbar__location {
  color: rgba(244, 241, 232, 0.68);
  white-space: nowrap;
}

.topbar a,
.desktop-nav a,
.mobile-menu a,
.mobile-menu__cookie,
.footer-cookie,
.footer-policy,
.language-switcher button {
  position: relative;
  transition:
    color 520ms var(--ease-luxury),
    text-shadow 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury);
}

.topbar a:hover,
.desktop-nav a:hover,
.mobile-menu a:hover,
.mobile-menu__cookie:hover,
.footer-cookie:hover,
.footer-policy:hover,
.language-switcher button:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(242, 202, 104, 0.35);
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  padding: 3px;
  border: 1px solid rgba(248, 247, 240, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-switcher button {
  min-width: 35px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 241, 232, 0.68);
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: #090705;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 20px rgba(217, 167, 67, 0.22);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 10px 20px 14px;
}

.brand {
  justify-self: start;
  position: relative;
  width: clamp(62px, 5.8vw, 82px);
  height: clamp(62px, 5.8vw, 82px);
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.brand::after {
  content: "";
  position: absolute;
  inset: -60%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 43%, rgba(255, 255, 255, 0.14), transparent 57%);
  transform: translate3d(-58%, 0, 0) rotate(8deg);
  animation: crestSweep 6200ms var(--ease-heavy) infinite;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: drop-shadow(0 0 16px rgba(217, 167, 67, 0.16));
  transform: translate3d(0, 0, 0);
  transition:
    transform 700ms var(--ease-heavy),
    filter 700ms var(--ease-heavy);
}

.brand:hover img {
  transform: translate3d(0, 0, 0) scale(1.03);
  filter: drop-shadow(0 0 22px rgba(242, 202, 104, 0.25));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(242, 202, 104, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.18);
  color: rgba(244, 241, 232, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.045);
}

.desktop-nav a::after,
.mobile-menu a::after,
.mobile-menu__cookie::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.mobile-menu a:hover::after,
.mobile-menu__cookie:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  position: relative;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(248, 247, 240, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: var(--gold-soft);
  box-shadow: 0 0 12px rgba(242, 202, 104, 0.34);
  transform-origin: center;
  transition:
    transform 600ms var(--ease-heavy),
    top 600ms var(--ease-heavy);
}

.menu-toggle span:nth-child(2) {
  top: 18px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.section-panel {
  position: relative;
  z-index: 5;
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.services,
.about,
.contact,
.privacy-content,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.hero {
  width: 100%;
  min-height: 82dvh;
  margin-top: calc(-1 * var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 22px) 20px 48px;
  isolation: isolate;
}

.hero::before,
.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(110deg, transparent 0 24%, rgba(242, 202, 104, 0.08) 38%, transparent 52% 100%),
    linear-gradient(290deg, transparent 0 42%, rgba(210, 209, 202, 0.075) 54%, transparent 70% 100%);
  background-size: 180% 180%, 160% 160%;
  animation: lightSweep 16s var(--ease-luxury) infinite alternate;
}

.hero::after,
.privacy-hero::after {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 44%;
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(217, 167, 67, 0.11), transparent 68%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  opacity: 0.84;
  transform: translate3d(0, var(--hero-shift, 0), 0);
}

@keyframes lightSweep {
  from {
    background-position: 0% 45%, 100% 50%;
  }
  to {
    background-position: 100% 55%, 0% 50%;
  }
}

.hero__light {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), transparent 32%),
    radial-gradient(74% 34% at 50% 52%, rgba(255, 255, 255, 0.052), transparent 74%),
    radial-gradient(66% 28% at 50% 47%, rgba(217, 167, 67, 0.04), transparent 76%);
  transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 10px), 0);
  transition: transform 900ms var(--ease-luxury);
}

.hero__content {
  width: min(980px, 100%);
  text-align: center;
  padding-top: 6px;
}

.hero__crest {
  position: relative;
  width: clamp(124px, 11.4vw, 158px);
  height: clamp(124px, 11.4vw, 158px);
  display: none;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.hero__crest::before,
.hero__crest::after,
.hero__crest span {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.hero__crest::before {
  display: none;
}

.hero__crest::after {
  inset: -45%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.14), transparent 58%);
  transform: translate3d(-44%, 0, 0) rotate(8deg);
  animation: crestSweep 5200ms var(--ease-heavy) infinite;
}

.hero__crest span {
  display: none;
}

.hero__crest img {
  position: relative;
  z-index: 1;
  width: 112%;
  height: 112%;
  object-fit: contain;
  object-position: 50% 50%;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.08));
}

.hero__device {
  width: clamp(84px, 6.4vw, 104px);
  height: clamp(84px, 6.4vw, 104px);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(248, 247, 240, 0.34);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 42px rgba(217, 167, 67, 0.12);
  animation: deviceFloat 6200ms var(--ease-luxury) infinite alternate;
}

.hero__device svg,
.service-icon svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes crestSweep {
  0%,
  42% {
    transform: translate3d(-56%, 0, 0) rotate(8deg);
  }
  70%,
  100% {
    transform: translate3d(56%, 0, 0) rotate(8deg);
  }
}

@keyframes crestPulse {
  from {
    opacity: 0.45;
    transform: scale(0.94);
  }
  to {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes deviceFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -5px, 0);
  }
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow[data-typewriter] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(var(--typewriter-ch, 12) * 0.78em);
  white-space: pre;
}

.eyebrow[data-typewriter]::after {
  content: "";
  width: 1px;
  height: 1.2em;
  margin-left: 8px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
  box-shadow: 0 0 12px rgba(242, 202, 104, 0.42);
  animation: caretBlink 900ms steps(1, end) infinite;
}

.hero .eyebrow[data-typewriter] {
  font-size: clamp(0.72rem, 0.95vw, 0.82rem);
}

@keyframes caretBlink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Didot, "Bodoni 72", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(3rem, 5.9vw, 5.45rem);
  line-height: 1.04;
  text-wrap: balance;
  background: linear-gradient(110deg, #ffffff 0%, #f2f0e8 36%, var(--silver) 68%, #f6e8b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 26px 78px rgba(0, 0, 0, 0.44);
}

.hero__subtitle {
  margin: 22px auto 0;
  max-width: min(100%, 620px);
  color: rgba(244, 241, 232, 0.76);
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__subtitle .subtitle-dot {
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(242, 202, 104, 0.34);
}

.luxury-button,
.gold-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 620ms var(--ease-heavy),
    border-color 620ms var(--ease-luxury),
    color 620ms var(--ease-luxury),
    background 620ms var(--ease-luxury),
    box-shadow 620ms var(--ease-luxury);
}

.luxury-button {
  position: relative;
  margin-top: 32px;
  padding: 8px 8px 8px 28px;
  border: 1px solid rgba(248, 247, 240, 0.3);
  color: var(--silver-soft);
  background: linear-gradient(135deg, rgba(248, 247, 240, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  overflow: hidden;
  isolation: isolate;
}

.luxury-button::before {
  content: "";
  position: absolute;
  inset: -40% -18%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 42%, rgba(242, 202, 104, 0.18), transparent 58%);
  transform: translate3d(-65%, 0, 0) rotate(8deg);
  transition: transform 900ms var(--ease-heavy);
}

.luxury-button span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(242, 202, 104, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--gold-soft);
  transition:
    transform 620ms var(--ease-heavy),
    box-shadow 620ms var(--ease-luxury);
}

.luxury-button:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(248, 247, 240, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 28px rgba(248, 247, 240, 0.12);
}

.luxury-button:hover::before {
  transform: translate3d(65%, 0, 0) rotate(8deg);
}

.luxury-button:hover span:last-child {
  transform: translate3d(2px, -1px, 0) scale(1.04);
  box-shadow: 0 0 20px rgba(248, 247, 240, 0.2);
}

.luxury-button:active,
.gold-button:active,
.ghost-button:active {
  transform: scale(0.98);
}

.services {
  padding: 70px 0 58px;
}

.section-kicker {
  width: min(660px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker h2,
.about h2,
.contact h2,
.privacy-hero h1,
.cookie-modal h2 {
  margin: 0;
  color: var(--silver-soft);
  font-size: clamp(1.82rem, 3.55vw, 3.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 1px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(248, 247, 240, 0.2), rgba(210, 209, 202, 0.12) 38%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.025);
  transition:
    transform 780ms var(--ease-heavy),
    filter 780ms var(--ease-luxury);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(248, 247, 240, 0.18), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 780ms var(--ease-luxury);
}

.service-card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 328px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: calc(var(--radius-lg) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 7, 5, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  text-align: center;
}

.service-card__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 247, 240, 0.72), transparent);
  transform: translate3d(-35%, 0, 0);
  opacity: 0.5;
  transition:
    transform 900ms var(--ease-heavy),
    opacity 900ms var(--ease-luxury);
}

.service-card:hover {
  transform: translate3d(0, -10px, 0) scale(1.015);
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.28));
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card__inner::after {
  transform: translate3d(35%, 0, 0);
  opacity: 1;
}

.service-card span {
  display: block;
  color: rgba(242, 202, 104, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
}

.service-card h3 {
  margin: 48px auto 18px;
  color: var(--silver-soft);
  font-size: clamp(1.65rem, 2.45vw, 2.5rem);
  line-height: 1.04;
}

.service-card p {
  max-width: 270px;
  margin: 0 auto;
  color: rgba(244, 241, 232, 0.66);
  font-size: 0.98rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 30px;
  border: 1px solid rgba(248, 247, 240, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 247, 240, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 24px 56px rgba(0, 0, 0, 0.2);
  transition:
    transform 780ms var(--ease-heavy),
    box-shadow 780ms var(--ease-luxury);
}

.service-card:hover .service-icon {
  transform: translate3d(0, -4px, 0) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 34px rgba(248, 247, 240, 0.16);
}

.about {
  padding: 66px 0 88px;
}

.about__frame {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(46px, 8vw, 104px) clamp(24px, 7vw, 92px);
  text-align: center;
}

.about__frame::before,
.about__frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(520px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 247, 240, 0.5), rgba(210, 209, 202, 0.45), transparent);
  transform: translate3d(-50%, 0, 0);
}

.about__frame::before {
  top: 0;
}

.about__frame::after {
  bottom: 0;
}

.about h2 {
  font-size: clamp(1.92rem, 3.75vw, 3.85rem);
  line-height: 1.08;
}

.contact {
  padding: 84px 0 96px;
  text-align: center;
}

.contact__content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 34px;
  color: rgba(244, 241, 232, 0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
}

.contact-list a,
.contact-list span {
  padding: 5px 0;
}

.contact-list a {
  transition:
    color 520ms var(--ease-luxury),
    text-shadow 520ms var(--ease-luxury),
    transform 520ms var(--ease-heavy);
}

.contact-list a:hover {
  color: var(--gold-soft);
  text-shadow: 0 0 22px rgba(242, 202, 104, 0.32);
  transform: translate3d(0, -2px, 0);
}

.contact-form {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 48px auto 0;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(248, 247, 240, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(6, 5, 4, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 8px;
  text-align: left;
  color: rgba(244, 241, 232, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form__message,
.contact-submit,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 247, 240, 0.14);
  border-radius: 16px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver-soft);
  font: inherit;
  letter-spacing: 0;
  padding: 14px 15px;
  resize: vertical;
  transition:
    border-color 520ms var(--ease-luxury),
    box-shadow 520ms var(--ease-luxury),
    background 520ms var(--ease-luxury);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(248, 247, 240, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(248, 247, 240, 0.08);
}

.contact-submit {
  justify-self: center;
  margin-top: 6px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(242, 202, 104, 0.76);
  text-align: center;
  font-size: 0.86rem;
}

.contact-form.is-invalid input:invalid,
.contact-form.is-invalid textarea:invalid {
  border-color: rgba(242, 152, 120, 0.55);
}

.privacy-page {
  min-height: 70dvh;
}

.privacy-hero {
  width: 100%;
  min-height: 62dvh;
  margin-top: calc(-1 * var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 20px 74px;
  text-align: center;
  isolation: isolate;
}

.privacy-hero__content {
  width: min(860px, 100%);
}

.privacy-hero p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 28px auto 0;
  color: rgba(244, 241, 232, 0.7);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.privacy-content {
  width: min(100% - 40px, 900px);
  padding: 62px 0 88px;
}

#privacy-copy {
  display: grid;
  gap: 34px;
}

.privacy-block {
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(242, 202, 104, 0.13);
}

.privacy-block:last-child {
  border-bottom: 0;
}

.privacy-block h2 {
  margin: 0 0 15px;
  color: var(--gold-soft);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.privacy-block p,
.privacy-block li {
  color: rgba(244, 241, 232, 0.72);
}

.privacy-block p {
  margin: 0 0 14px;
}

.privacy-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.privacy-block li + li {
  margin-top: 8px;
}

.site-footer {
  position: relative;
  z-index: 5;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 48px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(244, 241, 232, 0.58);
  font-size: 0.83rem;
  letter-spacing: 0.09em;
  text-align: center;
}

.footer-line {
  width: 100%;
  height: 1px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, transparent, rgba(242, 202, 104, 0.38), rgba(210, 209, 202, 0.34), transparent);
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  gap: 28px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  text-align: center;
}

.footer-brand__mark {
  position: relative;
  width: clamp(104px, 10vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 22px 70px rgba(0, 0, 0, 0.34);
}

.footer-brand__mark::before {
  display: none;
}

.footer-brand__mark::after {
  content: "";
  position: absolute;
  inset: -48%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 43%, rgba(255, 255, 255, 0.14), transparent 57%);
  transform: translate3d(-56%, 0, 0) rotate(8deg);
  animation: crestSweep 6200ms var(--ease-heavy) infinite;
}

.footer-brand__mark img {
  position: relative;
  z-index: 1;
  width: 112%;
  height: 112%;
  object-fit: contain;
  object-position: 50% 50%;
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
}

.footer-brand div {
  display: grid;
  justify-items: center;
  gap: 2px;
  width: max-content;
  max-width: 100%;
  text-align: center;
}

.footer-brand strong {
  color: rgba(248, 247, 240, 0.8);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand span {
  color: rgba(244, 241, 232, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-credit {
  justify-self: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  width: max-content;
  max-width: 100%;
  margin-top: 22px;
  margin-inline: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 202, 104, 0.08);
  text-align: center;
}

.footer-credit__label,
.fenix-link {
  display: inline-flex;
}

.footer-credit__label {
  color: rgba(244, 241, 232, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.fenix-link {
  color: rgba(248, 247, 240, 0.78);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.1em;
  transition:
    color 520ms var(--ease-luxury),
    text-shadow 520ms var(--ease-luxury),
    transform 520ms var(--ease-heavy);
}

.fenix-link:hover {
  color: var(--silver-soft);
  text-shadow: 0 0 16px rgba(248, 247, 240, 0.24);
  transform: translate3d(0, -2px, 0);
}

.footer-credit small {
  color: rgba(244, 241, 232, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 202, 104, 0.09);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-cookie {
  border: 0;
  background: transparent;
  color: rgba(244, 241, 232, 0.52);
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-policy {
  color: rgba(244, 241, 232, 0.52);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 54;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 202, 104, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.7);
  color: var(--gold-soft);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 14px, 0) scale(0.94);
  transition:
    opacity 520ms var(--ease-heavy),
    visibility 520ms var(--ease-heavy),
    transform 520ms var(--ease-heavy),
    border-color 520ms var(--ease-luxury),
    box-shadow 520ms var(--ease-luxury);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(242, 202, 104, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 26px rgba(217, 167, 67, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.34);
}

.back-to-top span {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 28px;
  z-index: 55;
  width: min(760px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(242, 202, 104, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(242, 202, 104, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 4, 3, 0.86);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(217, 167, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, 22px, 0) scale(0.98);
  transition:
    opacity 700ms var(--ease-heavy),
    visibility 700ms var(--ease-heavy),
    transform 700ms var(--ease-heavy);
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.cookie-banner p {
  margin: 0;
  color: rgba(244, 241, 232, 0.72);
  font-size: 0.88rem;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.cookie-banner__title {
  color: var(--silver-soft) !important;
  font-family: "Cormorant Garamond", Didot, Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem) !important;
  line-height: 1.02;
  margin-bottom: 6px !important;
  text-wrap: balance;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.gold-button,
.ghost-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(242, 202, 104, 0.28);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gold-button {
  color: #090705;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 24px rgba(217, 167, 67, 0.22);
}

.ghost-button {
  color: rgba(244, 241, 232, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.gold-button:hover,
.ghost-button:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(242, 202, 104, 0.58);
  box-shadow: 0 0 26px rgba(217, 167, 67, 0.18);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 650ms var(--ease-heavy),
    visibility 650ms var(--ease-heavy);
}

.cookie-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  overflow: auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(248, 247, 240, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(7, 6, 5, 0.88);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition: transform 650ms var(--ease-heavy);
}

.cookie-modal.is-visible .cookie-modal__panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 202, 104, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver-soft);
  cursor: pointer;
  font-size: 1.25rem;
  transition:
    transform 520ms var(--ease-heavy),
    color 520ms var(--ease-luxury),
    border-color 520ms var(--ease-luxury);
}

.modal-close:hover {
  color: var(--gold-soft);
  border-color: rgba(242, 202, 104, 0.45);
  transform: rotate(90deg);
}

.cookie-modal p:not(.eyebrow) {
  color: rgba(244, 241, 232, 0.7);
}

.consent-options {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.consent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(242, 202, 104, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.consent-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--silver-soft);
  font-size: 0.94rem;
  letter-spacing: 0.05em;
}

.consent-row small {
  display: block;
  color: rgba(244, 241, 232, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-row input {
  appearance: none;
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(248, 247, 240, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    background 520ms var(--ease-luxury),
    border-color 520ms var(--ease-luxury);
}

.consent-row input::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(244, 241, 232, 0.74);
  transition:
    transform 520ms var(--ease-heavy),
    background 520ms var(--ease-luxury),
    box-shadow 520ms var(--ease-luxury);
}

.consent-row input:checked {
  border-color: rgba(242, 202, 104, 0.55);
  background: rgba(217, 167, 67, 0.28);
}

.consent-row input:checked::before {
  transform: translate3d(22px, 0, 0);
  background: var(--gold-soft);
  box-shadow: 0 0 14px rgba(242, 202, 104, 0.38);
}

.consent-row input:disabled {
  cursor: default;
  opacity: 0.82;
}

.cookie-actions--modal {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 900ms var(--ease-heavy),
    transform 900ms var(--ease-heavy);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    .hero__crest {
      animation: heroCrestParallax linear both;
      animation-timeline: scroll(root);
      animation-range: 0 70vh;
    }

    @keyframes heroCrestParallax {
      to {
        transform: translate3d(0, 42px, 0) scale(0.92);
      }
    }
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 112px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: clamp(144px, 22vh, 188px) 22px 48px;
    background:
      radial-gradient(620px 420px at 50% 14%, rgba(217, 167, 67, 0.09), transparent 66%),
      radial-gradient(420px 320px at 50% 76%, rgba(248, 247, 240, 0.035), transparent 70%),
      rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -10px, 0);
    transition:
      opacity 650ms var(--ease-heavy),
      visibility 650ms var(--ease-heavy),
      transform 650ms var(--ease-heavy);
  }

  .mobile-menu::before {
    content: "";
    position: absolute;
    top: clamp(146px, 22vh, 190px);
    left: 50%;
    width: min(420px, calc(100vw - 34px));
    height: min(560px, calc(100dvh - 188px));
    min-height: 430px;
    border: 1px solid rgba(242, 202, 104, 0.17);
    border-radius: 30px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
      rgba(5, 4, 3, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 34px 86px rgba(0, 0, 0, 0.62);
    transform: translate3d(-50%, 0, 0) scale(0.96);
    opacity: 0;
    transition:
      opacity 760ms var(--ease-heavy),
      transform 760ms var(--ease-heavy);
  }

  .mobile-menu::after {
    content: "DEJAN BRATANIČ S.P.";
    position: absolute;
    top: clamp(166px, 24vh, 214px);
    left: 50%;
    color: rgba(242, 202, 104, 0.74);
    font-size: 0.64rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transform: translate3d(-50%, -10px, 0);
    opacity: 0;
    transition:
      opacity 760ms var(--ease-heavy),
      transform 760ms var(--ease-heavy);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu.is-open::before {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .mobile-menu.is-open::after {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }

  .mobile-menu a,
  .mobile-menu__cookie {
    z-index: 1;
    width: min(360px, calc(100vw - 56px));
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 13px 0 22px;
    border: 1px solid rgba(248, 247, 240, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(248, 247, 240, 0.9);
    font-family: "Avenir Next", Optima, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transform: translate3d(0, 12px, 0);
    opacity: 0;
    transition:
      opacity 720ms var(--ease-heavy),
      color 520ms var(--ease-luxury),
      border-color 520ms var(--ease-luxury),
      background 520ms var(--ease-luxury),
      box-shadow 520ms var(--ease-luxury),
      transform 720ms var(--ease-heavy);
  }

  .mobile-menu.is-open a,
  .mobile-menu.is-open .mobile-menu__cookie {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu.is-open a:nth-child(1) {
    transition-delay: 90ms;
  }

  .mobile-menu.is-open a:nth-child(2) {
    transition-delay: 150ms;
  }

  .mobile-menu.is-open a:nth-child(3) {
    transition-delay: 210ms;
  }

  .mobile-menu.is-open a:nth-child(4) {
    transition-delay: 270ms;
  }

  .mobile-menu.is-open .mobile-menu__cookie {
    transition-delay: 330ms;
  }

  .mobile-menu a::before,
  .mobile-menu__cookie::before {
    content: "";
    flex: 0 0 auto;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 202, 104, 0.76));
    opacity: 0.7;
  }

  .mobile-menu a::after,
  .mobile-menu__cookie::after {
    content: "\2197";
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 0 0 auto;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 202, 104, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.018);
    color: var(--gold-soft);
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu a:hover,
  .mobile-menu a[aria-current="page"],
  .mobile-menu__cookie:hover {
    border-color: rgba(242, 202, 104, 0.32);
    background: rgba(217, 167, 67, 0.07);
    color: #fff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 16px 42px rgba(0, 0, 0, 0.26);
  }

  .mobile-menu a:hover::after,
  .mobile-menu a[aria-current="page"]::after,
  .mobile-menu__cookie:hover::after {
    transform: translate3d(2px, -1px, 0);
  }

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

  .service-card,
  .service-card__inner {
    min-height: 270px;
  }

  .service-card h3 {
    margin-top: 36px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cookie-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-credit {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .footer-actions {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 128px;
  }

  .site-header {
    width: min(100% - 20px, 520px);
    max-width: none;
    margin: 10px auto 0;
  }

  .topbar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 13px 14px 0;
    overflow: hidden;
  }

  .topbar__contact {
    width: auto;
    max-width: 210px;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1px;
    font-size: 0.64rem;
  }

  .topbar__contact a,
  .topbar__location {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar__line {
    display: none;
  }

  .language-switcher {
    flex: 0 0 auto;
    align-self: start;
    margin-left: auto;
    gap: 3px;
  }

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

  .nav-shell {
    padding: 10px 14px 15px;
  }

  .mobile-menu {
    align-content: start;
    gap: 8px;
    padding: calc(var(--header-height) + 166px) 18px 38px;
  }

  .mobile-menu::before {
    top: calc(var(--header-height) + 18px);
    width: min(388px, calc(100vw - 28px));
    height: min(520px, calc(100dvh - var(--header-height) - 46px));
    min-height: 430px;
    border-radius: 26px;
  }

  .mobile-menu::after {
    top: calc(var(--header-height) + 42px);
    width: calc(100vw - 58px);
    max-width: 330px;
    text-align: center;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
  }

  .mobile-menu a,
  .mobile-menu__cookie {
    width: min(332px, calc(100vw - 54px));
    min-height: 54px;
    padding-left: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .brand {
    width: 68px;
    height: 68px;
  }

  .section-panel,
  .privacy-content,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .privacy-hero {
    padding-inline: 14px;
  }

  .hero {
    min-height: 70dvh;
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 42px;
  }

  .hero h1 {
    max-width: calc(100vw - 38px);
    font-size: clamp(2.18rem, 9.2vw, 2.9rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .hero .eyebrow[data-typewriter] {
    font-size: 0.78rem;
  }

  .eyebrow[data-typewriter] {
    min-width: calc(var(--typewriter-ch, 12) * 0.72em);
  }

  .hero__subtitle {
    width: calc(100vw - 48px);
    max-width: 342px;
    font-size: clamp(0.68rem, 2.7vw, 0.76rem);
    line-height: 1.75;
    letter-spacing: 0.055em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero__crest {
    display: none;
  }

  .hero__device {
    width: 76px;
    height: 76px;
    margin-top: 24px;
    margin-bottom: 16px;
    border-radius: 24px;
  }

  .services,
  .about,
  .contact {
    padding-block: 52px;
  }

  .section-kicker h2,
  .about h2,
  .contact h2,
  .privacy-hero h1 {
    font-size: clamp(1.72rem, 7.7vw, 2.58rem);
    line-height: 1.1;
  }

  .about__frame {
    padding-inline: 10px;
  }

  .contact-list {
    letter-spacing: 0.04em;
  }

  .contact-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .contact-form label {
    text-align: center;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: calc(100vw - 28px);
    max-width: 390px;
    padding: 16px;
    border-radius: 22px;
    overflow: hidden;
  }

  .back-to-top {
    right: 18px;
    bottom: 118px;
    width: 52px;
    height: 52px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand__mark {
    width: 116px;
  }

  .cookie-banner > div:first-child {
    min-width: 0;
  }

  .cookie-banner p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .cookie-banner__title {
    font-size: 1.34rem !important;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
  }

  .cookie-actions .gold-button {
    grid-column: auto;
  }

  .gold-button,
  .ghost-button {
    width: 100%;
    min-height: 36px;
    padding: 0 6px;
    font-size: 0.58rem;
  }
}

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

  .cursor-glow,
  .intro-screen {
    display: none;
  }

  body {
    opacity: 1;
  }

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