﻿:root {
  --navy-950: #060a12;
  --navy-900: #0a0f1a;
  --navy-800: #12182b;
  --navy-700: #1a2238;
  --navy-600: #243050;
  --gold-300: #e8d5a3;
  --gold-400: #d4af37;
  --gold-500: #c9a962;
  --gold-600: #b8941f;
  --gold-shine: #f0e6c8;
  --text-primary: #f5f3ee;
  --text-muted: #a8b0c4;
  --text-dim: #6b7590;
  --border-gold: rgba(201, 169, 98, 0.25);
  --glass: rgba(18, 24, 43, 0.72);
  --font-display: 'Cinzel', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: clip;
  min-width: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

::selection {
  background: rgba(201, 169, 98, 0.35);
  color: var(--text-primary);
}

.container {
  width: min(1200px, calc(100% - clamp(1.25rem, 4vw, 2.5rem)));
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.section-label::after {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-400);
  font-weight: 500;
}

.gold-line {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-600));
  margin: 1.25rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.4);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.25);
}

.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201, 169, 98, 0.08);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.card-glass {
  background: var(--glass);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  border-radius: 4px;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(201, 169, 98, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(36, 48, 80, 0.5), transparent);
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.bg-grid--animated {
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 60px 60px, 60px 60px;
  }
}

.about-page,
.contact-page {
  position: relative;
}

.about-page > :not(.page-bg),
.contact-page > :not(.page-bg) {
  position: relative;
  z-index: 1;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__mesh {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 45% 35% at 15% 25%, rgba(201, 169, 98, 0.09), transparent 55%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(36, 48, 80, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201, 169, 98, 0.05), transparent 50%);
  animation: mesh-breathe 18s ease-in-out infinite alternate;
}

.page-bg--contact .page-bg__mesh {
  background:
    radial-gradient(ellipse 45% 35% at 80% 20%, rgba(201, 169, 98, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 75%, rgba(36, 48, 80, 0.5), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(201, 169, 98, 0.04), transparent 50%);
}

.page-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.page-bg__orb--1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: 8%;
  left: -8%;
  background: rgba(201, 169, 98, 0.2);
  animation: orb-float-1 16s ease-in-out infinite;
}

.page-bg__orb--4 {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  top: 60%;
  right: 25%;
  background: rgba(232, 213, 163, 0.12);
  animation: orb-float-3 18s ease-in-out infinite reverse;
}

.page-bg__orb--2 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 45%;
  right: -6%;
  background: rgba(36, 48, 80, 0.55);
  animation: orb-float-2 28s ease-in-out infinite;
}

.page-bg__orb--3 {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  bottom: 5%;
  left: 30%;
  background: rgba(201, 169, 98, 0.08);
  animation: orb-float-3 24s ease-in-out infinite;
}

.page-bg--contact .page-bg__orb--1 {
  background: rgba(201, 169, 98, 0.11);
  left: auto;
  right: -5%;
  animation-name: orb-float-1b;
}

.page-bg--contact .page-bg__orb--2 {
  background: rgba(26, 34, 56, 0.65);
  right: auto;
  left: -8%;
  animation-name: orb-float-2b;
}

.page-bg__columns {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 139px,
    rgba(201, 169, 98, 0.025) 139px,
    rgba(201, 169, 98, 0.025) 140px
  );
  mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 95%);
  animation: columns-slide 35s linear infinite;
}

.page-bg__beam {
  position: absolute;
  top: -20%;
  left: -60%;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(201, 169, 98, 0.06) 48%,
    rgba(232, 213, 163, 0.12) 50%,
    rgba(201, 169, 98, 0.06) 52%,
    transparent 60%
  );
  transform: skewX(-12deg);
  animation: beam-sweep 8s ease-in-out infinite;
}

.page-bg__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.12);
  animation: ring-pulse 10s ease-in-out infinite;
}

.page-bg__ring--1 {
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  top: 15%;
  right: -15%;
}

.page-bg__ring--2 {
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  bottom: 10%;
  left: -10%;
  animation-delay: -5s;
  animation-duration: 14s;
}

.page-bg__ring--1::after,
.page-bg__ring--2::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.06);
  animation: ring-spin 30s linear infinite;
}

.page-bg--contact .page-bg__beam {
  animation-duration: 14s;
  animation-delay: -4s;
}

.page-bg__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.5) 1.5px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(201, 169, 98, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(201, 169, 98, 0.35) 1px, transparent 1px),
    radial-gradient(circle at 90% 20%, rgba(201, 169, 98, 0.45) 1.5px, transparent 1.5px),
    radial-gradient(circle at 55% 45%, rgba(201, 169, 98, 0.25) 1px, transparent 1px);
  background-size: 280px 280px, 240px 240px, 320px 320px, 260px 260px, 360px 360px;
  opacity: 0.7;
  animation: particles-drift 35s linear infinite;
}

@keyframes mesh-breathe {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.08) translate(2%, 1%);
    opacity: 1;
  }
}

@keyframes orb-float-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 60px) scale(1.08);
  }
}

@keyframes orb-float-1b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-70px, 50px) scale(1.06);
  }
}

@keyframes orb-float-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-60px, -70px) scale(0.94);
  }
}

@keyframes orb-float-2b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -40px) scale(1.05);
  }
}

@keyframes orb-float-3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(40px, -30px);
  }
  66% {
    transform: translate(-50px, 20px);
  }
}

@keyframes columns-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(140px);
  }
}

@keyframes beam-sweep {
  0%,
  100% {
    left: -60%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  45% {
    left: 120%;
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.7;
  }
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes particles-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 320px 320px, -280px 280px, 360px -360px, -300px 300px, 400px 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-grid--animated,
  .page-bg__mesh,
  .page-bg__orb,
  .page-bg__columns,
  .page-bg__beam,
  .page-bg__particles,
  .page-bg__ring,
  .hero-enter__item,
  .gold-line--animate {
    animation: none !important;
  }
}

.lazy-img {
  background: var(--navy-800);
  object-fit: cover;
}

.lazy-img[data-loaded='false'] {
  opacity: 0;
}

.lazy-img[data-loaded='true'] {
  opacity: 1;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout__main {
  flex: 1;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  height: var(--header-height);
  padding-top: env(safe-area-inset-top);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(6, 10, 18, 0.96);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.menu-open .header--scrolled {
  background: rgba(6, 10, 18, 0.98);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 100%;
  gap: 1rem;
  width: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 1;
  min-width: 0;
  justify-self: start;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  justify-self: end;
  flex-shrink: 0;
}

.header__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.15);
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-400);
}

.header__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width 0.4s var(--ease-out-expo);
}

.header__link:hover,
.header__link--active {
  color: var(--gold-300);
}

.header__link:hover::after,
.header__link--active::after {
  width: 100%;
}

.header__cta {
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 11px;
  border-radius: 6px;
  border: 2px solid var(--gold-500);
  background: rgba(18, 24, 43, 0.9);
  cursor: pointer;
  position: relative;
  z-index: 10003;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}

.header__burger--open {
  border-color: var(--gold-400);
  background: rgba(201, 169, 98, 0.18);
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.25);
}

.header__burger:active {
  background: rgba(201, 169, 98, 0.12);
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--gold-400);
  border-radius: 2px;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

.header__burger--open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 10, 18, 0.85);
}

.header__overlay--visible {
  display: block;
}

.header__mobile {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + env(safe-area-inset-top));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  background: rgba(6, 10, 18, 0.98);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1.25rem 1.25rem calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-gold);
}

.header__mobile--open {
  display: flex;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.header__mobile-inner {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 2rem;
}

.header__mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  background: rgba(18, 24, 43, 0.85);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.header__mobile-link:active {
  transform: scale(0.98);
}

.header__mobile-link--active {
  color: var(--gold-300);
  border-color: var(--gold-500);
  background: rgba(201, 169, 98, 0.12);
}

.header__mobile-cta {
  width: 100%;
  min-height: 52px;
  margin-top: 0.75rem;
  font-size: 0.75rem;
}


.footer {
  margin-top: auto;
  background: var(--navy-900);
  border-top: 1px solid var(--border-gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin: 1rem 0 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}

.footer__col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer__col a:hover {
  color: var(--gold-300);
  transition: color 0.3s ease;
}

.footer__bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  padding: 1.25rem 0 calc(1.25rem + env(safe-area-inset-bottom));
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 10, 18, 0.95) 0%, rgba(6, 10, 18, 0.75) 45%, rgba(6, 10, 18, 0.55) 100%),
    linear-gradient(to top, var(--navy-950), transparent 30%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 6rem;
}

.hero__logo-wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.hero__emblem {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  box-shadow:
    0 0 40px rgba(201, 169, 98, 0.2),
    0 0 80px rgba(201, 169, 98, 0.08);
  object-fit: cover;
}

.hero__shimmer {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(201, 169, 98, 0.3), transparent);
  animation: shimmer-rotate 4s linear infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 2px));
  pointer-events: none;
}

@keyframes shimmer-rotate {
  to {
    transform: rotate(360deg);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.hero__title span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.55em;
  color: var(--gold-400);
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__subtitle strong {
  color: var(--gold-300);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero__stat {
  padding: 1.5rem;
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}

.hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.section {
  padding: 6rem 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro__image-wrap {
  position: relative;
}

.intro__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}

.intro__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold-600);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

.intro__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro__cta {
  margin-top: 1.5rem;
}

.expertise {
  background: linear-gradient(180deg, transparent, rgba(18, 24, 43, 0.4), transparent);
}

.expertise__header {
  max-width: 600px;
  margin-bottom: 3rem;
}

.expertise__lead {
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.expertise__card {
  padding: 2rem;
  transition: box-shadow 0.4s ease;
}

.expertise__card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 98, 0.2);
}

.expertise__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.expertise__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--gold-300);
}

.expertise__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.values__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  overflow: hidden;
}

.values__list {
  margin: 1.5rem 0 2rem;
}

.values__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.values__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

.values__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 4px;
}

.cta-banner {
  padding-bottom: 8rem;
}

.cta-banner__inner {
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 169, 98, 0.08), transparent),
    var(--navy-800);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}

.cta-banner__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-banner__inner > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__grid,
  .values__inner {
    grid-template-columns: 1fr;
  }

  .intro__image-accent {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .values__inner {
    padding: 2rem 1.5rem;
  }
}
.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.75;
  margin-top: 0.5rem;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.about-story__image-col {
  position: relative;
}

.about-story__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}

.about-story__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.about-story__badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
}

.about-story__badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-story__text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-expertise {
  background: linear-gradient(180deg, transparent, rgba(18, 24, 43, 0.35), transparent);
}

.about-expertise__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-expertise__item {
  overflow: hidden;
}

.about-expertise__item summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s ease;
}

.about-expertise__item summary::-webkit-details-marker {
  display: none;
}

.about-expertise__item summary:hover {
  background: rgba(201, 169, 98, 0.04);
}

.about-expertise__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-600);
  flex-shrink: 0;
}

.about-expertise__title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold-300);
}

.about-expertise__chevron {
  font-size: 1.25rem;
  color: var(--gold-500);
  transition: transform 0.3s ease;
}

.about-expertise__item[open] .about-expertise__chevron {
  transform: rotate(45deg);
}

.about-expertise__body {
  padding: 0 2rem 1.75rem 4.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.08);
}

.about-expertise__body p {
  color: var(--text-muted);
  margin: 1.25rem 0;
  line-height: 1.7;
}

.about-expertise__body li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.about-expertise__body li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: var(--gold-600);
}

.about-team__header {
  margin-bottom: 2.5rem;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.about-team__card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.about-team__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.about-team__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-400);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid var(--border-gold);
}

.about-team__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.about-team__role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.about-team__note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

.about-languages__inner {
  text-align: center;
  padding: 3rem 2rem;
}

.about-languages__inner h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold-300);
}

.about-languages__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-languages__tag {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  background: rgba(201, 169, 98, 0.05);
}

.about-languages__inner > p {
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-story__badge {
    right: 1rem;
    bottom: -1rem;
  }

  .about-expertise__body {
    padding-left: 2rem;
  }
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.75;
  margin-top: 0.5rem;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.contact-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

.contact-panel__manager {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}

.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.contact-list__item:last-child {
  border-bottom: none;
}

.contact-list__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-500);
  background: rgba(201, 169, 98, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
}

.contact-list__icon--wa {
  font-size: 0;
  background-color: var(--gold-500);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / 52% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / 52% no-repeat;
}

.contact-list__body {
  flex: 1;
  min-width: 0;
}

.contact-list__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.contact-list__value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.55;
  transition: color 0.3s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-list__value:hover {
  color: var(--gold-300);
}

.contact-list__value--email {
  font-size: 0.9rem;
}

.contact-panel__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 1.5rem 0;
}

.contact-panel__extra h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.contact-panel__extra-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.contact-panel__extra p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-panel__extra a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-panel__extra a:hover {
  color: var(--gold-300);
}

.contact-panel__languages {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.contact-map-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.contact-map__header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--gold-300);
}

.contact-form-section {
  padding-bottom: 6rem;
}

.contact-form-section__inner {
  max-width: 760px;
  margin-inline: auto;
  padding: 3rem;
}

.contact-form-section__header {
  margin-bottom: 2rem;
}

.contact-form__intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.65;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__field {
  margin-bottom: 1.25rem;
}

.contact-form__field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(6, 10, 18, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-dim);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form__success {
  text-align: center;
  padding: 2rem 0;
}

.contact-form__success p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-map__header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.contact-map__frame {
  position: relative;
  flex: 1;
  min-height: clamp(220px, 45vw, 420px);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--navy-800);
}

.contact-map__actions {
  margin-top: 1.25rem;
  text-align: center;
}

.contact-map__actions .btn {
  width: 100%;
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .contact-details__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-panel,
  .contact-map-panel,
  .contact-form-section__inner {
    padding: 1.75rem;
  }
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout__main {
  flex: 1;
}


.page-hero__glow {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 10%;
  right: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.1), transparent 70%);
  animation: hero-glow-pulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-glow-pulse {
  from {
    opacity: 0.5;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-enter__item {
  opacity: 0;
  transform: translateY(40px);
  animation: hero-enter 1s var(--ease-out-expo) forwards;
  animation-delay: calc(0.15s + var(--i, 0) * 0.14s);
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gold-line--animate {
  width: 0;
  animation: gold-line-grow 1.2s var(--ease-out-expo) forwards;
  animation-delay: calc(0.4s + var(--i, 0) * 0.14s);
}

@keyframes gold-line-grow {
  to {
    width: 4rem;
  }
}

.card-glass--shine {
  position: relative;
  overflow: hidden;
}

.card-glass--shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.08), transparent);
  transform: skewX(-20deg);
  animation: card-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes card-shine {
  0%,
  100% {
    left: -80%;
  }
  50% {
    left: 130%;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

[data-reveal='scale'] {
  transform: translateY(30px) scale(0.96);
}

[data-reveal='left'] {
  transform: translateX(-50px);
}

[data-reveal='right'] {
  transform: translateX(50px);
}

[data-reveal='up'] {
  transform: translateY(60px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

[data-stagger-item] {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

[data-stagger-item].is-staggered {
  opacity: 1;
  transform: translateX(0);
}

.about-team__grid [data-stagger-item] {
  transform: translateY(30px) scale(0.92);
}

.about-team__grid [data-stagger-item].is-staggered {
  transform: translateY(0) scale(1);
}

.contact-list [data-stagger-item].is-staggered .contact-list__icon {
  animation: icon-pop 0.6s var(--ease-out-expo) both;
  animation-delay: calc(var(--stagger, 0) * 0.08s + 0.2s);
}

@keyframes icon-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.about-expertise__item {
  transition:
    box-shadow 0.4s ease,
    transform 0.4s var(--ease-out-expo),
    border-color 0.3s ease;
}

.about-expertise__item.is-open,
.about-expertise__item:hover {
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-expertise__item.is-open {
  transform: translateX(6px);
}

.about-expertise__item .about-expertise__body {
  animation: accordion-open 0.45s var(--ease-out-expo);
}

@keyframes accordion-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-team__avatar {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.4s ease;
}

.about-team__card:hover .about-team__avatar {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.25);
}

.contact-list__item {
  transition:
    padding-left 0.35s var(--ease-out-expo),
    background 0.3s ease;
}

.contact-list__item:hover {
  padding-left: 0.5rem;
  background: rgba(201, 169, 98, 0.03);
  border-radius: 4px;
}

.contact-form__field input,
.contact-form__field textarea {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out-expo);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  transform: translateY(-2px);
}

.contact-map__frame {
  transition: box-shadow 0.5s ease;
}

.contact-map-panel:hover .contact-map__frame {
  box-shadow: 0 0 40px rgba(201, 169, 98, 0.15);
}

.about-story__image {
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.5s ease;
}

.about-story__image-col:hover .about-story__image {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.about-story__badge {
  animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__text {
  animation: hero-fade-in 1s var(--ease-out-expo) both;
}

.hero__stats {
  animation: hero-fade-in 0.9s var(--ease-out-expo) 0.4s both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expertise__card {
  transition:
    box-shadow 0.4s ease,
    transform 0.4s var(--ease-out-expo);
}

.expertise__card:hover {
  transform: translateY(-6px);
}

.about-team__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.about-team__card:hover {
  transform: translateY(-4px);
}

/* ===== Full responsive system (mobile → desktop) ===== */

/* Desktop: never show mobile-only UI */
@media (min-width: 901px) {
  .header__burger,
  .header__overlay {
    display: none !important;
  }

  .header__mobile {
    display: none !important;
  }

  body.menu-open {
    overflow: auto !important;
    touch-action: auto !important;
  }
}

/* Large laptops & desktops */
@media (min-width: 1200px) {
  .hero__content {
    gap: 4rem;
  }

  .intro__grid,
  .about-story__grid {
    gap: 4.5rem;
  }
}

/* Small laptops & tablet landscape (nav still visible) */
@media (max-width: 1024px) and (min-width: 901px) {
  .header__nav {
    gap: 1.5rem;
  }

  .header__actions {
    gap: 1.25rem;
  }

  .header__link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .header__cta {
    padding: 0.6rem 1.1rem;
    font-size: 0.68rem;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 2rem;
  }

  .intro__grid,
  .about-story__grid {
    gap: 2.5rem;
  }

  .values__inner {
    gap: 2rem;
    padding: 2.5rem;
  }
}

/* Tablet portrait & mobile — burger menu */
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .header__actions {
    gap: 0;
    margin-right: 0;
    position: relative;
    z-index: 10003;
  }

  .header__nav,
  .header__cta {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .header__burger {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 4rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__actions,
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn,
  .cta-banner__actions .btn,
  .intro__cta,
  .values__content .btn,
  .contact-form__submit,
  .contact-map__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .page-hero {
    padding: calc(var(--header-height) + 2.5rem) 0 3rem;
  }

  .intro__grid,
  .values__inner,
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .intro__image-accent {
    display: none;
  }

  .intro__grid {
    gap: 2.5rem;
  }

  .expertise__grid {
    grid-template-columns: 1fr;
  }

  .about-expertise__item summary {
    padding: 1.15rem 1.25rem;
    gap: 0.85rem;
  }

  .about-expertise__body {
    padding: 0 1.25rem 1.5rem 1.25rem;
  }

  .about-expertise__title {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .about-story__badge {
    right: 1rem;
    bottom: -1rem;
  }

  .contact-details__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .about-hero__lead,
  .contact-hero__lead {
    font-size: 1rem;
  }
}

/* Tablet portrait — two-column cards where useful */
@media (min-width: 601px) and (max-width: 900px) {
  .expertise__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero__title {
    font-size: clamp(2.4rem, 8vw, 3.25rem);
  }

  .about-languages__inner {
    padding: 2.5rem 1.5rem;
  }

  .contact-panel,
  .contact-map-panel {
    padding: 2rem;
  }
}

/* Large phones */
@media (max-width: 600px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .section-label {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    gap: 0.5rem;
  }

  .section-label::before,
  .section-label::after {
    width: 1.25rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__emblem {
    width: 110px;
    height: 110px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__stat {
    padding: 1rem 0.65rem;
  }

  .hero__stat-value {
    font-size: 1.4rem;
  }

  .hero__stat-label {
    font-size: 0.65rem;
  }

  .cta-banner {
    padding-bottom: 5rem;
  }

  .cta-banner__inner {
    padding: 2.5rem 1.25rem;
  }

  .values__inner,
  .contact-panel,
  .contact-map-panel,
  .contact-form-section__inner {
    padding: 1.5rem;
  }

  .about-story__grid {
    gap: 2rem;
  }

  .about-story__badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 1.25rem auto 0;
    width: fit-content;
    animation: none;
  }

  .about-team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-team__card {
    padding: 1.5rem 1rem;
  }

  .about-languages__tags {
    gap: 0.65rem;
  }

  .about-languages__tag {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer__col a,
  .footer__col li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-form-section {
    padding-bottom: 4rem;
  }

  .contact-form-section__inner {
    padding: 1.5rem;
  }

  .contact-panel__title {
    font-size: 1.25rem;
  }

  .contact-list__item {
    gap: 1rem;
    padding: 1rem 0;
  }
}

/* Standard phones */
@media (max-width: 480px) {
  .header__logo {
    width: 44px;
    height: 44px;
  }

  .header__name {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .header__tagline {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
  }

  .header__burger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .header__burger span {
    width: 20px;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero__stats {
    gap: 0.75rem;
  }

  .expertise__card {
    padding: 1.5rem;
  }

  .about-expertise__item summary {
    padding: 1rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 2rem) 0 2.5rem;
  }
}

/* Small phones */
@media (max-width: 400px) {
  :root {
    --header-height: 64px;
  }

  .header__brand {
    gap: 0.6rem;
  }

  .header__logo {
    width: 40px;
    height: 40px;
  }

  .header__name {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .header__tagline {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-expertise__item summary {
    flex-wrap: wrap;
  }

  .about-expertise__title {
    flex: 1 1 calc(100% - 3rem);
    order: 2;
  }

  .about-expertise__chevron {
    order: 1;
    margin-left: auto;
  }

  .about-expertise__num {
    order: 0;
  }

  .header__mobile-link {
    font-size: 1rem;
    min-height: 52px;
  }
}

/* Landscape phones & short viewports */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1.5rem;
  }

  .hero__content {
    padding: 1.5rem 0 2rem;
  }

  .hero__emblem {
    width: 80px;
    height: 80px;
  }

  .hero__logo-wrap {
    margin-bottom: 0.75rem;
  }

  .hero__scroll {
    display: none;
  }

  .header__mobile-inner {
    padding: 0.5rem 0 1rem;
    gap: 0.5rem;
  }

  .header__mobile-link {
    min-height: 48px;
    padding: 0.75rem 1rem;
  }
}

/* Touch devices — disable hover lift, keep tap feedback */
@media (hover: none) {
  .btn-primary:hover,
  .btn-outline:hover,
  .expertise__card:hover,
  .about-team__card:hover,
  .about-story__image-col:hover .about-story__image,
  .contact-form__field input:focus,
  .contact-form__field textarea:focus {
    transform: none;
  }

  .contact-list__item:hover {
    padding-left: 0;
  }
}

