@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/raleway-200.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/raleway-300.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/raleway-400.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/raleway-500.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/raleway-600.ttf") format("truetype");
}

:root {
  --gold: #d5a22e;
  --gold-dark: #af8527;
  --red: #900000;
  --white: #f3f3f3;
  --muted: #c8c8c8;
  --nav-height: 108px;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.05rem;
  line-height: 1.34;
}

body.modal-open {
  padding-right: 0 !important;
}

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

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

.container-xl {
  max-width: 1225px;
}

.gold-button {
  border: 1px solid var(--gold-dark);
  color: var(--gold) !important;
  font-weight: 300;
  padding: 15px 20px !important;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.gold-button:hover,
.gold-button:focus-visible {
  border-color: var(--gold);
  background: rgba(213, 162, 46, 0.08);
  color: #f1c45d !important;
}

.sticky-nav {
  position: fixed;
  z-index: 1030;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  transform: translateY(-100%);
  background: rgba(0, 0, 0, 0.98);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

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

.sticky-nav__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.sticky-nav__brand img {
  width: 60px;
  height: 90px;
  object-fit: contain;
}

.sticky-nav__links {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sticky-nav__links a {
  padding: 10px 0;
  font-size: 20px;
  letter-spacing: 0.1rem;
  transition: color 0.2s ease;
}

.sticky-nav__links a:hover,
.sticky-nav__links a:focus-visible,
.hero__links a:hover,
.hero__links a:focus-visible {
  color: var(--gold);
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 35%, rgba(0, 0, 0, 0.74) 79%, rgba(0, 0, 0, 0.95) 100%),
    url("../images/hero.jpg") center center / cover no-repeat;
}

.hero__inner {
  position: relative;
  min-height: 100vh;
}

.hero__nav {
  position: absolute;
  top: 9%;
  right: 0;
  display: flex;
  min-width: 230px;
  flex-direction: column;
  align-items: center;
  animation: hero-fade 1.1s ease both 0.1s;
}

.hero__logo img {
  width: 150px;
  height: auto;
}

.hero__links {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

.hero__links a {
  display: inline-block;
  margin: 0 0 4px;
  padding: 21px 0;
  font-size: 20px;
  letter-spacing: 0.1rem;
  transition: color 0.2s ease;
}

.hero__links .gold-button {
  width: 180px;
  margin: 5px 0 9px;
  text-align: center;
}

.consumption-note {
  max-width: 670px;
  padding: 48px 24px 0;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.15;
}

.consumption-note p {
  margin: 0;
}

.about-section {
  margin-top: 50px;
}

.about-section__image {
  padding-right: 30px;
}

.about-section__image img {
  display: block;
  width: 100%;
  height: 448px;
  object-fit: cover;
}

.about-section__copy {
  padding-left: 30px;
}

.about-section__copy h1 {
  margin: 18px 0 20px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 5px;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-section__copy p {
  margin: 0 0 24px;
  color: #d1d1d1;
  font-size: 18px;
  line-height: 1.35;
}

.gallery-section {
  position: relative;
  height: 550px;
  margin-top: 75px;
  padding: 0 50px;
  overflow: hidden;
}

.gallery-viewport {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  width: calc((100vw - 120px) / 2);
  min-width: calc((100vw - 120px) / 2);
  height: 490px;
  margin: 0;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 44%;
  width: 26px;
  height: 26px;
  border: 0;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  background: transparent;
  opacity: 0.88;
}

.gallery-arrow:disabled {
  opacity: 0.25;
}

.gallery-arrow--prev {
  left: 16px;
  transform: rotate(-135deg);
}

.gallery-arrow--next {
  right: 16px;
  transform: rotate(45deg);
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.gallery-dot {
  width: 95px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(213, 162, 46, 0.24);
  transition: background-color 0.25s ease;
}

.gallery-dot.is-active {
  background: #ffbf30;
}

.order-section {
  padding: 95px 0 0;
  text-align: center;
}

.order-section h2 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 500;
}

.order-list {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.store-button {
  display: block;
  width: 100%;
  min-height: 72px;
  margin-bottom: 20px;
  padding: 13px 18px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-1px);
  background: #ad0000;
}

.store-button span,
.store-button small {
  display: block;
}

.store-button small {
  font-size: 15px;
  font-weight: 600;
}

.online-order-button {
  display: flex;
  width: 420px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin: 36px auto 0;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.online-order-button:hover,
.online-order-button:focus-visible,
.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--gold);
  background: rgba(213, 162, 46, 0.08);
  color: #f1c45d;
}

.location-section {
  position: relative;
  padding: 120px 0 34px;
  overflow: hidden;
}

.location-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(213, 162, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #000 0%, #080603 48%, #000 100%);
  content: "";
  pointer-events: none;
}

.location-section > .container-xl {
  position: relative;
  z-index: 1;
}

.contact-heading {
  margin-bottom: 42px;
  text-align: center;
}

.contact-heading span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 8px 0 3px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 200;
  letter-spacing: 0.38rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-heading p {
  margin: 0;
  color: #a8a8a8;
  font-size: 15px;
  letter-spacing: 0.12rem;
}

.contact-grid {
  min-height: 700px;
}

.map-shell {
  position: relative;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(213, 162, 46, 0.48);
  background: #121212;
}

.location-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 0;
  filter: grayscale(0.32) saturate(0.78) contrast(1.04);
}

.map-address {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 300px;
  flex-direction: column;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.map-address__eyebrow {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.23rem;
  text-transform: uppercase;
}

.map-address strong {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08rem;
}

.map-address > span:not(.map-address__eyebrow) {
  margin-top: 3px;
  color: #bbb;
  font-size: 15px;
}

.map-address a {
  width: max-content;
  margin-top: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.contact-decal {
  position: relative;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-image: url("../images/contact-door-reference.png");
  background-position: left 48%;
  background-size: auto 280%;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.55);
}

.contact-decal::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 3, 2, 0.48), rgba(4, 3, 2, 0.76)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.43));
  content: "";
}

.contact-decal__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 52px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

.contact-decal__logo {
  display: block;
  width: 122px;
  height: 174px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.hours-table {
  padding: 18px 0;
  border-top: 3px solid rgba(255, 255, 255, 0.92);
  border-bottom: 3px solid rgba(255, 255, 255, 0.92);
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 3px 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
}

.hours-row strong {
  font-weight: 600;
}

.hours-row span {
  font-weight: 400;
  white-space: nowrap;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-links a {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: #f4ca68;
  transform: translateX(3px);
}

.contact-icon {
  display: inline-flex;
  width: 34px;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 9px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.contact-icon--facebook {
  font-family: Arial, sans-serif;
  font-size: 24px;
}

.contact-icon--instagram {
  font-size: 25px;
  font-weight: 400;
}

.back-to-top-wrap {
  margin-top: 66px;
  text-align: right;
}

.back-to-top {
  display: inline-flex;
  width: 200px;
  height: 49px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-size: 20px;
}

.back-to-top img {
  width: 28px;
  margin-right: 10px;
}

.site-footer {
  padding: 0 0 28px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid #d6d6d6;
  color: #d0d0d0;
  font-size: 17px;
}

.modal-backdrop {
  background: #000;
}

.modal-backdrop.show {
  opacity: 0.7;
}

.notice-modal,
.order-modal {
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #111;
}

.notice-modal {
  width: min(555px, calc(100vw - 30px));
  margin: 0 auto;
}

.notice-modal .modal-body {
  padding: 30px;
}

.notice-modal h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.notice-modal p {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.notice-modal__close,
.order-modal__close {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
}

.order-modal {
  width: min(500px, calc(100vw - 30px));
  margin: 0 auto;
}

.order-modal .modal-body {
  padding: 42px 30px 30px;
}

.order-modal h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.order-modal strong,
.order-modal span {
  display: block;
}

.order-modal strong {
  color: orangered;
  font-size: 20px;
}

.order-modal span {
  font-size: 14px;
}

.order-modal__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.order-modal__yes,
.order-modal__no {
  min-width: 72px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.order-modal__yes {
  border-color: #bd0000;
  background: #bd0000;
  color: #fff;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
}

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

@keyframes hero-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .sticky-nav__inner {
    max-width: 100%;
  }

  .sticky-nav__links {
    gap: 24px;
  }

  .hero__nav {
    right: 20px;
  }

  .about-section__image img {
    height: 420px;
  }

  .about-section__copy h1 {
    font-size: 21px;
    letter-spacing: 4px;
  }

  .about-section__copy p {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --nav-height: 76px;
  }

  body {
    font-size: 16px;
  }

  .sticky-nav__inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  .sticky-nav__brand img {
    width: 50px;
    height: 58px;
  }

  .sticky-nav__links {
    flex: 1;
    justify-content: flex-end;
    gap: 13px;
  }

  .sticky-nav__links a {
    padding: 6px 0;
    font-size: 11px;
    white-space: nowrap;
  }

  .sticky-nav__links .gold-button {
    width: 93px;
    padding: 10px 5px !important;
    text-align: center;
  }

  .hero {
    min-height: 550px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.06) 10%, rgba(0, 0, 0, 0.52) 63%, #000 100%),
      url("../images/hero.jpg") 48% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 550px;
  }

  .hero__nav {
    top: 5%;
    right: 50%;
    min-width: 230px;
    transform: translateX(50%);
  }

  .hero__logo img {
    width: 150px;
  }

  .hero__links {
    margin-top: 7px;
  }

  .hero__links a {
    padding: 14px 0;
    font-size: 20px;
  }

  .hero__links .gold-button {
    width: 213px;
    margin: 2px 0 5px;
    padding: 15px 20px !important;
  }

  .consumption-note {
    max-width: 100%;
    padding: 30px 23px 0;
    font-size: 14px;
    line-height: 1.05;
  }

  .about-section {
    margin-top: 44px;
    padding: 0 15px;
  }

  .about-section .row {
    display: flex;
    flex-direction: column;
  }

  .about-section__copy {
    order: -1;
    padding: 0;
  }

  .about-section__image {
    padding: 12px 0 0;
  }

  .about-section__image img {
    height: auto;
  }

  .about-section__copy h1 {
    margin-top: 0;
    font-size: 21px;
    letter-spacing: 4px;
  }

  .about-section__copy p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.45;
  }

  .gallery-section {
    height: 320px;
    margin-top: 55px;
    padding: 0 50px;
  }

  .gallery-track {
    gap: 20px;
  }

  .gallery-slide {
    width: calc(100vw - 100px);
    min-width: calc(100vw - 100px);
    height: 255px;
  }

  .gallery-arrow {
    top: 42%;
    width: 22px;
    height: 22px;
  }

  .gallery-arrow--prev {
    left: 14px;
  }

  .gallery-arrow--next {
    right: 14px;
  }

  .gallery-indicators {
    gap: 6px;
    margin-top: 22px;
  }

  .gallery-dot {
    width: 5%;
    height: 4px;
  }

  .order-section {
    padding-top: 70px;
  }

  .order-section h2 {
    font-size: 28px;
  }

  .order-list {
    max-width: 100%;
    padding: 0 20px;
  }

  .store-button {
    min-height: 70px;
    font-size: 16px;
  }

  .store-button small {
    font-size: 13px;
  }

  .online-order-button {
    width: 75%;
    max-width: 420px;
    font-size: 20px;
  }

  .location-section {
    padding: 85px 15px 28px;
  }

  .location-section .row {
    --bs-gutter-y: 24px;
  }

  .contact-heading {
    margin-bottom: 30px;
  }

  .contact-heading span {
    font-size: 11px;
    letter-spacing: 0.18rem;
  }

  .contact-heading h2 {
    font-size: 44px;
    letter-spacing: 0.28rem;
  }

  .contact-heading p {
    font-size: 13px;
  }

  .contact-grid {
    min-height: 0;
  }

  .contact-decal,
  .contact-decal__content {
    min-height: 690px;
  }

  .contact-decal {
    background-position: left 50%;
    background-size: auto 320%;
  }

  .contact-decal__content {
    padding: 30px 24px;
  }

  .contact-decal__logo {
    width: 110px;
    height: 158px;
    margin-bottom: 12px;
  }

  .hours-table {
    padding: 15px 0;
    border-width: 2px;
  }

  .hours-row {
    grid-template-columns: minmax(105px, 1fr) auto;
    gap: 12px;
    padding: 4px 0;
    font-size: 14px;
  }

  .contact-links a {
    font-size: 14px;
  }

  .map-shell,
  .location-map {
    min-height: 440px;
  }

  .map-address {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 18px 20px;
  }

  .map-address strong {
    font-size: 21px;
  }

  .back-to-top-wrap {
    margin-top: 42px;
    text-align: center;
  }

  .site-footer {
    padding: 0 15px 24px;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    font-size: 12px;
  }

  .notice-modal .modal-body {
    padding: 30px 28px;
  }

  .notice-modal h2,
  .notice-modal p {
    font-size: 17px;
  }
}

@media (max-width: 374.98px) {
  .sticky-nav__links {
    gap: 5px;
  }

  .sticky-nav__links .gold-button {
    width: 85px;
  }
}

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

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