:root {
  color-scheme: dark;
  --navy-950: #020814;
  --navy-900: #061225;
  --navy-800: #0b1c35;
  --navy-700: #102847;
  --gold-500: #d8a64a;
  --gold-300: #f5d993;
  --cream: #fff4dc;
  --muted: #c7d1df;
  --line: rgba(216, 166, 74, 0.48);
  --panel: rgba(4, 12, 26, 0.7);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  min-height: 100dvh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 78% 14%, rgba(54, 88, 130, 0.24), transparent 28rem),
    radial-gradient(ellipse at 24% 82%, rgba(216, 166, 74, 0.08), transparent 26rem),
    linear-gradient(118deg, rgba(255, 255, 255, 0.045) 0 9%, transparent 24% 58%, rgba(255, 255, 255, 0.035) 70%, transparent 88%),
    linear-gradient(145deg, #020814 0%, #07152a 42%, #020814 100%),
    var(--navy-950);
  background-attachment: fixed;
}

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

.shell {
  width: min(100%, 1680px);
  height: 100dvh;
  margin: 0 auto;
  padding: clamp(0.75rem, 1.55vw, 1.75rem);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(24rem, 1.2fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.5rem);
}

.hero__content {
  max-width: 38rem;
}

.hero__copy,
.hero__content > .eyebrow,
.hero__content > h1,
.hero__content > .divider,
.hero__content > .lead,
.contact-panel,
.hero__visual img {
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.is-language-fading .hero__content > .eyebrow,
.is-language-fading .hero__content > h1,
.is-language-fading .hero__content > .divider,
.is-language-fading .hero__content > .lead,
.is-language-fading .contact-panel,
.is-language-fading .hero__visual img {
  opacity: 0;
  transform: translateY(0.35rem);
  filter: blur(2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__content > .eyebrow,
  .hero__content > h1,
  .hero__content > .divider,
  .hero__content > .lead,
  .contact-panel,
  .hero__visual img {
    transition: none;
  }
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: clamp(1.2rem, 3.6vh, 3.2rem);
}

.logo {
  width: min(100%, 21.6rem);
  height: auto;
  filter: drop-shadow(0 1rem 2rem rgba(0, 0, 0, 0.48));
}

.language-switch {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 8, 20, 0.45);
  box-shadow: inset 0 0 2rem rgba(216, 166, 74, 0.08);
}

.lang-button {
  min-width: 2.75rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--gold-300);
  background: transparent;
  font: 700 0.78rem/1 Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--navy-950);
  background: linear-gradient(135deg, #ffe8a7, var(--gold-500));
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-300);
  font: 700 0.78rem/1.4 Arial, sans-serif;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--gold-300);
  font-size: clamp(2.7rem, 5.8vw, 6.1rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0.25rem 0.3rem rgba(0, 0, 0, 0.35), 0 0 2.5rem rgba(216, 166, 74, 0.25);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(100%, 28rem);
  margin: clamp(0.9rem, 2.3vh, 1.7rem) 0;
  color: var(--gold-500);
}

.divider span {
  height: 1px;
  flex: 1;
  background: currentColor;
}

.divider i {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.lead {
  max-width: 36rem;
  margin: 0;
  min-height: 7.4rem;
  color: rgba(255, 244, 220, 0.92);
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  line-height: 1.36;
}

.hero__visual {
  height: min(82vh, 55rem);
  min-height: 0;
  overflow: visible;
  border-radius: 0.5rem;
}

.hero__visual img {
  width: min(118%, 58rem);
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center right;
  filter:
    drop-shadow(0 0 0.55rem rgba(245, 217, 147, 0.48))
    drop-shadow(0 0 1.4rem rgba(216, 166, 74, 0.24))
    saturate(1.04)
    contrast(1.02);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel);
  box-shadow: 0 -0.5rem 4rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.contact-item {
  min-width: 0;
  min-height: clamp(4.7rem, 9vh, 5.8rem);
  padding: 0.85rem clamp(1rem, 2vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid var(--line);
  text-align: left;
}

.contact-item:last-child {
  border-right: 0;
}

.flag {
  margin-right: 0.35rem;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-300);
}

.icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.contact-item strong {
  display: block;
  color: var(--gold-300);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.contact-item em {
  display: block;
  margin-top: 0.35rem;
  color: var(--cream);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-style: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
    gap: 1.25rem;
  }

  .hero__content {
    max-width: 34rem;
  }

  .hero__visual {
    height: min(66vh, 39rem);
  }

  .contact-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .shell {
    height: 100dvh;
    padding: 0.85rem;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.55rem;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.55rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .topbar {
    align-items: flex-start;
    margin-bottom: 0.7rem;
  }

  .logo {
    width: min(66vw, 16.5rem);
  }

  .language-switch {
    transform: scale(0.9);
    transform-origin: top right;
  }

  .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.1rem;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2.15rem, 12vw, 3.45rem);
    line-height: 0.92;
  }

  .divider {
    width: min(100%, 16rem);
    margin: 0.55rem 0;
  }

  .lead {
    min-height: 5.8rem;
    font-size: clamp(0.9rem, 3.7vw, 1rem);
    line-height: 1.25;
  }

  .hero__visual {
    width: 100%;
    height: clamp(9.5rem, 28vh, 14rem);
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: visible;
  }

  .hero__visual img {
    width: min(92vw, 23rem);
    height: 100%;
    object-position: center;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-item,
  .contact-item:nth-child(2) {
    min-height: 3.9rem;
    padding: 0.55rem 0.85rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .icon svg {
    width: 1.9rem;
    height: 1.9rem;
  }

  .contact-item strong {
    font-size: 0.78rem;
  }

  .contact-item em {
    margin-top: 0.18rem;
    font-size: 0.95rem;
  }

  .contact-item:last-child {
    border-bottom: 0;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .shell {
    padding: 0.75rem 1.25rem;
    gap: 0.55rem;
  }

  .topbar {
    margin-bottom: 1rem;
  }

  .logo {
    width: min(100%, 16.8rem);
  }

  h1 {
    font-size: clamp(2.45rem, 5vw, 4.8rem);
  }

  .divider {
    margin: 0.75rem 0;
  }

  .lead {
    font-size: clamp(0.96rem, 1.2vw, 1.12rem);
    line-height: 1.3;
    min-height: 5.9rem;
  }

  .hero__visual {
    height: 78vh;
  }

  .contact-item {
    min-height: 4.2rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}
