@font-face {
  font-family: "Mollies";
  src: url("Fonts/MOLLIES%20Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --gold: #877450;
  --gold-deep: #776544;
  --black: #151515;
  --white: #fff;
  --body-font: "Futura Book", Futura, "Trebuchet MS", Arial, sans-serif;
  --display-font: "Mollies", "Futura Book", Futura, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.24;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 6px 76px 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(135, 116, 80, 0.12);
  backdrop-filter: blur(14px);
  transform: translateY(-105%);
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), min-height 260ms ease, padding 260ms ease, box-shadow 260ms ease;
}

.site-header.is-visible {
  transform: translateY(0);
}

.site-header.is-compact {
  min-height: 64px;
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 10px 28px rgba(26, 22, 16, 0.08);
}

.menu-link {
  justify-self: start;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.menu-link:hover {
  color: var(--black);
  transform: translateX(3px);
}

.brand-link {
  justify-self: center;
}

.header-logo {
  width: 190px;
  height: auto;
  transition: width 260ms ease;
}

.site-header.is-compact .header-logo {
  width: 160px;
}

.map-link {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 36px;
  height: 42px;
  transition: transform 180ms ease;
}

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

.marker-icon {
  width: 19px;
  height: auto;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #e8e1d5;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(430px, 48vw);
  opacity: 0;
  filter: drop-shadow(0 18px 34px rgba(28, 23, 16, 0.22));
  transform: translate(-50%, -45%) scale(0.88);
  animation: hero-logo-in 1800ms 450ms cubic-bezier(0.18, 0.86, 0.2, 1) forwards;
}

.gold-signature {
  display: grid;
  place-items: center;
  min-height: 326px;
  background-color: var(--gold);
  background-image: url("images/fascia_oro.png");
  background-position: center;
  background-size: cover;
}

.gold-logo {
  width: min(282px, 34vw);
  filter: drop-shadow(0 10px 22px rgba(38, 31, 20, 0.12));
}

.intro-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.intro-inner {
  width: min(1600px, calc(100% - 128px));
  margin: 0 auto;
  padding: 126px 0 111px;
}

.intro-title {
  margin: 0 0 90px;
  text-align: center;
  font-family: var(--display-font);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.93;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(330px, 560px) minmax(300px, 668px);
  justify-content: center;
  align-items: center;
  gap: 176px;
}

.intro-copy {
  align-self: center;
  max-width: 560px;
  padding-top: 46px;
}

.intro-copy p {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400;
}

.gold-text {
  color: var(--gold);
  font-weight: 600;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 45px;
  margin-top: 18px;
  padding: 9px 21px 8px;
  color: var(--white);
  background: var(--gold);
  border-radius: 4px;
  font-family: var(--display-font);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(135, 116, 80, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-button:hover {
  transform: translateY(-3px);
  background: var(--gold-deep);
  box-shadow: 0 18px 32px rgba(135, 116, 80, 0.22);
}

.side-gallery {
  position: relative;
  width: min(668px, 100%);
  aspect-ratio: 1000 / 1499;
  overflow: hidden;
  background: #e8dfd0;
}

.side-slider,
.wide-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 950ms ease, transform 6200ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-dots {
  position: absolute;
  left: 25px;
  bottom: 23px;
  display: flex;
  gap: 11px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  transition: background 240ms ease, transform 240ms ease;
}

.dot.is-active {
  background: var(--white);
  transform: scale(1.05);
}

.ghost-logo {
  width: min(472px, 50vw);
  margin: 98px auto 0;
  opacity: 0.55;
}

.marquee-band {
  display: flex;
  align-items: center;
  height: 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--gold);
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  min-width: max-content;
  animation: marquee-left 18s linear infinite;
}

.marquee-track span {
  padding-right: 58px;
  font-family: var(--display-font);
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.side-gallery.reveal {
  opacity: 0;
  transform: translateX(110px) scale(1.16);
  transform-origin: right center;
  transition: opacity 1000ms ease, transform 1300ms cubic-bezier(0.16, 0.82, 0.22, 1);
}

.side-gallery.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.wide-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 2000 / 1125;
  min-height: 460px;
  overflow: hidden;
  background: #d8cab6;
}

.wide-gallery .slide {
  object-position: center;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  min-height: 312px;
  padding: 53px 72px 42px;
  background: var(--gold);
}

.footer-logo {
  align-self: start;
  justify-self: center;
  width: min(396px, 38vw);
}

.footer-social {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.facebook-icon {
  width: 17px;
}

.footer-map {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 38px;
  height: 50px;
  transition: transform 180ms ease;
}

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

.footer-marker {
  width: 21px;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 820ms ease, transform 820ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

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

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-logo-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.86);
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

@media (max-width: 1180px) {
  .site-header {
    padding-right: 46px;
    padding-left: 46px;
  }

  .intro-inner {
    width: min(1060px, calc(100% - 72px));
  }

  .intro-grid {
    gap: 82px;
    grid-template-columns: minmax(300px, 500px) minmax(300px, 520px);
  }

  .intro-title {
    font-size: 44px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 24px;
  }

  .menu-link {
    font-size: 15px;
  }

  .header-logo,
  .site-header.is-compact .header-logo {
    width: 152px;
  }

  .map-link {
    width: 32px;
    height: 38px;
  }

  .marker-icon {
    width: 15px;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-logo {
    width: min(258px, 68vw);
  }

  .gold-signature {
    min-height: 154px;
  }

  .gold-logo {
    width: 152px;
  }

  .intro-inner {
    width: min(100% - 44px, 560px);
    padding: 70px 0 72px;
  }

  .intro-title {
    margin-bottom: 48px;
    font-size: 31px;
    line-height: 0.98;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .intro-copy {
    order: 1;
    padding-top: 0;
  }

  .intro-copy p {
    font-size: 14px;
    line-height: 1.28;
  }

  .side-gallery {
    order: 2;
    width: min(360px, 100%);
    justify-self: center;
  }

  .side-gallery.reveal {
    transform: translateX(28px) scale(1.08);
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  .slider-dots {
    left: 18px;
    bottom: 18px;
    gap: 7px;
  }

  .ghost-logo {
    width: 258px;
    margin-top: 58px;
  }

  .marquee-band {
    height: 42px;
  }

  .marquee-track span {
    padding-right: 32px;
    font-size: 16px;
  }

  .wide-gallery {
    aspect-ratio: 4 / 3;
    min-height: 360px;
  }

  .wide-gallery .slide {
    object-position: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto 1fr;
    min-height: 194px;
    padding: 36px 28px 30px;
  }

  .footer-logo {
    width: 206px;
  }

  .footer-social {
    gap: 13px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .facebook-icon {
    width: 12px;
  }

  .footer-marker {
    width: 16px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .header-logo,
  .site-header.is-compact .header-logo {
    width: 132px;
  }

  .intro-title {
    font-size: 27px;
  }

  .menu-button {
    width: 156px;
    min-width: 156px;
    font-size: 14px;
  }

  .footer-logo {
    width: 172px;
  }
}
