:root {
  --black: #070707;
  --panel: #1c1c1b;
  --panel-soft: #151515;
  --gold: #d7ad20;
  --gold-bright: #e1b927;
  --white: #f5f2eb;
  --muted: #9d9a92;
  --line: rgba(215, 173, 32, 0.45);
  --sans: "Inter", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #202020;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

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

.page {
  width: min(100%, 1310px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.42);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, 1310px);
  height: 92px;
  padding: 0 28px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  transition: background-color 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 72px;
  background: rgba(7, 7, 7, 0.95);
  border-bottom: 1px solid rgba(215, 173, 32, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  z-index: 22;
  width: 80px;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  line-height: 20px;
}

.main-nav > a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-button {
  display: inline-flex;
  min-width: 114px;
  height: 36px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}

.nav-button-gold {
  min-width: 174px;
  background: var(--gold);
  color: #080808;
}

.nav-toggle {
  display: none;
}

.mobile-asporto {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  height: 640px;
  min-height: 640px;
  padding: 110px 48px 54px;
  align-items: center;
  justify-content: center;
  background: url("images/home_bg.png") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(760px, 100%);
  margin-top: 30px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 8px;
  color: var(--gold-bright);
  font-weight: 500;
}

.hero p {
  max-width: 630px;
  margin: 24px auto 0;
  color: #e8d8a6;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  justify-content: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-width: 180px;
  height: 54px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold-bright);
  color: #070707;
}

.button-outline:hover {
  background: var(--gold);
  color: #070707;
}

.section {
  padding: 104px 64px 88px;
}

.formula {
  min-height: 980px;
  border-top: 1px solid var(--gold);
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.gallery-heading h2,
.story-content h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
}

.gold-rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 17px auto 20px;
  background: var(--gold);
}

.section-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.price-grid {
  display: grid;
  max-width: 1138px;
  margin: 72px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 360px;
  padding: 48px 32px 34px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--panel);
  text-align: center;
}

.time-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.price-card h3 {
  margin: 15px 0 3px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.schedule {
  margin: 0;
  color: #dac575;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  margin: 28px 0 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 66px;
  line-height: 64px;
}

.price-card > a {
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-ribbon {
  position: absolute;
  top: 17px;
  right: -38px;
  width: 130px;
  padding: 5px 0;
  background: var(--gold-bright);
  color: #080808;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.price-notes {
  margin-top: 46px;
  color: #686868;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.price-notes p {
  margin: 0;
}

.story {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
}

.story-image {
  min-width: 0;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  display: flex;
  padding: 72px 86px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d7c681 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-content h2 {
  margin-bottom: 26px;
}

.story-content > p {
  margin: 0 0 18px;
  color: #a9a7a0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.story-stats {
  display: flex;
  margin-top: 6px;
  gap: 52px;
}

.story-stats div {
  display: flex;
  flex-direction: column;
}

.story-stats strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.story-stats span {
  color: #8d8a80;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section {
  padding-top: 72px;
}

.gallery-heading {
  display: flex;
  min-height: 148px;
  padding: 0 48px 42px;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-heading h2 {
  font-size: 48px;
  line-height: 48px;
}

.gallery-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.gallery-heading > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: #d7c681;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.site-footer {
  padding: 58px 48px 0;
  border-top: 1px solid var(--gold);
  background: #090909;
}

.footer-grid {
  display: grid;
  padding-bottom: 54px;
  grid-template-columns: minmax(260px, 1.05fr) minmax(300px, 1.1fr) minmax(240px, 0.85fr);
  align-items: start;
  gap: clamp(34px, 4vw, 64px);
}

.footer-logo {
  width: 88px;
  margin-bottom: 24px;
}

.footer-contact > a {
  display: flex;
  margin: 12px 0;
  align-items: flex-start;
  gap: 11px;
  color: #aaa79f;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}

.footer-contact > a img {
  width: 16px;
  height: 17px;
  margin-top: 1px;
  object-fit: contain;
}

.opening-hours h3,
.social h3 {
  margin: 8px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-row {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
  gap: 24px;
  color: #898780;
  font-size: 12px;
  line-height: 18px;
}

.hours-row strong {
  color: #c6b66f;
  font-weight: 400;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 28px;
}

.map-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #242424;
  color: #bdaa58;
  text-align: center;
}

.map-lines {
  position: absolute;
  inset: -20%;
  opacity: 0.2;
  background:
    repeating-linear-gradient(33deg, transparent 0 22px, #fff 23px 24px, transparent 25px 45px),
    repeating-linear-gradient(145deg, transparent 0 30px, #fff 31px 32px, transparent 33px 58px);
}

.map-card img,
.map-card strong {
  position: relative;
  z-index: 1;
}

.map-card img {
  width: 28px;
  margin-bottom: 8px;
}

.map-card strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #b5b2aa;
  font-size: 12px;
  line-height: 16px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  transition: color 160ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

.lightbox {
  width: min(88vw, 760px);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(215, 173, 32, 0.7);
  background: #080808;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  top: -42px;
  right: -2px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #080808;
  color: var(--gold);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 24px;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 30px;
  }

  .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .nav-button {
    min-width: 104px;
    padding: 0 18px;
  }

  .nav-button-gold {
    min-width: 142px;
  }

  .hero {
    padding-right: 38px;
    padding-left: 38px;
  }

  .hero-content {
    width: min(760px, 78%);
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero p {
    font-size: 18px;
    line-height: 26px;
  }

  .story-content {
    padding: 60px 55px;
  }

  .footer-grid {
    grid-template-columns: minmax(210px, 1fr) minmax(260px, 1.2fr) minmax(180px, 0.8fr);
    gap: 30px;
  }

  .map-card {
    min-height: 120px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    height: 76px;
    padding: 0 26px;
  }

  .brand {
    width: 70px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(215, 173, 32, 0.55);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.32);
    cursor: pointer;
  }

  .nav-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-width: 1.8;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-icon-menu {
    width: 28px;
    height: 22px;
    object-fit: contain;
    filter: invert(1) sepia(1) saturate(8) hue-rotate(10deg) brightness(1.35) contrast(1.3);
    mix-blend-mode: screen;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
  }

  .nav-icon-close {
    width: 21px;
    height: 21px;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.72);
  }

  .nav-toggle[aria-expanded="true"] .nav-icon-menu {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.72);
  }

  .nav-toggle[aria-expanded="true"] .nav-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
  }

  .main-nav {
    position: fixed;
    z-index: 21;
    top: 68px;
    right: 20px;
    bottom: auto;
    left: auto;
    display: flex;
    width: min(340px, calc(100vw - 40px));
    max-height: calc(100dvh - 88px);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    border: 1px solid rgba(215, 173, 32, 0.3);
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .main-nav.is-open,
  .nav-toggle[aria-expanded="true"] + .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .main-nav > a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-family: var(--serif);
    font-size: 23px;
    text-align: left;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }

  .nav-button {
    min-width: 0;
    height: 42px;
    padding: 0 12px;
  }

  .hero {
    height: 700px;
    min-height: 700px;
    padding: 100px 42px 50px;
    justify-content: center;
    background-position: 42% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.88) 100%);
  }

  .hero-content {
    width: min(680px, 100%);
    margin-top: 130px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .section {
    padding: 76px 42px;
  }

  .formula {
    min-height: auto;
  }

  .price-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .price-card:last-child {
    width: calc((100% - 24px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

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

  .story-image {
    aspect-ratio: 651 / 510;
  }

  .story-content {
    min-height: 480px;
    padding: 68px 72px;
  }

  .gallery-heading {
    padding-right: 42px;
    padding-left: 42px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    padding-right: 42px;
    padding-left: 42px;
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
    gap: 36px 48px;
  }

  .footer-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
    gap: 48px;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--black);
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 0 18px;
  }

  .nav-button.mobile-asporto {
    display: inline-flex;
    min-width: 104px;
    height: 36px;
    margin-left: auto;
    padding: 0 18px;
  }

  .nav-toggle {
    margin-left: 10px;
  }

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

  .nav-button-asporto {
    display: none;
  }

  .hero {
    height: 680px;
    min-height: 680px;
    padding: 88px 22px 42px;
    background-position: 35% center;
  }

  .hero-content {
    margin-top: 122px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 0.96;
  }

  .hero h1 em {
    margin-top: 7px;
  }

  .hero p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 24px;
  }

  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .button {
    min-width: 0;
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
    line-height: 18px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading h2,
  .story-content h2 {
    font-size: 40px;
    line-height: 42px;
  }

  .section-heading p,
  .story-content > p,
  .gallery-heading p {
    font-size: 15px;
    line-height: 22px;
  }

  .price-grid {
    max-width: 390px;
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .price-card {
    min-height: 305px;
  }

  .story-image {
    aspect-ratio: 1 / 0.9;
  }

  .story-content {
    min-height: 0;
    padding: 58px 24px 64px;
  }

  .story-stats {
    gap: 38px;
  }

  .gallery-section {
    padding-top: 55px;
  }

  .gallery-heading {
    min-height: 0;
    padding: 0 20px 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .gallery-heading h2 {
    max-width: 320px;
    font-size: 38px;
    line-height: 40px;
  }

  .site-footer {
    padding: 46px 22px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-side {
    grid-column: auto;
    display: flex;
    gap: 32px;
  }

  .opening-hours h3,
  .social h3 {
    margin-top: 0;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
