:root {
  --gold: #B8962E;
  --gold-l: #C9A94E;
  --gold-d: #9A7B1E;
  --champagne: #F5E6C8;
  --ivory: #FAF8F5;
  --cream: #F0EAE0;
  --beige: #E8DFD0;
  --charcoal: #2A2A2A;
  --black: #1A1A1A;
  --gray: #8A8A8A;
  --gray-l: #B5B0A8;
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --tr: .4s cubic-bezier(.25, .46, .45, .94);
  --sp: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 6rem);
  --gb: 1px solid rgba(184, 150, 46, .2);
  --g10: rgba(184, 150, 46, .1);
  --w85: rgba(255, 255, 255, .85);
  --w65: rgba(255, 255, 255, .65);
  --w50: rgba(255, 255, 255, .5);
  --w35: rgba(255, 255, 255, .35);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body {
  font: 300 1rem/1.8 var(--fb);
  color: var(--charcoal);
  background: var(--ivory);
  letter-spacing: .02em;
  overflow-x: hidden
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr)
}

ul,
ol {
  list-style: none
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--ivory)
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px
}

::selection {
  background: var(--champagne);
  color: var(--charcoal)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.section-subtitle {
  display: block;
  font: 400 .7rem/1 var(--fb);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem
}

.section-title {
  font: 400 clamp(2rem, 4vw, 3.2rem)/1.25 var(--fh);
  color: var(--charcoal);
  margin-bottom: .5rem
}

.section-title em {
  font-style: italic;
  color: var(--gold)
}

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0 2rem
}

.gold-line--center {
  margin-inline: auto
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

#preloader img {
  width: clamp(140px, 25vw, 220px);
  animation: pulse 2s ease-in-out infinite
}

#preloader .loader-bar {
  width: 100px;
  height: 1px;
  background: rgba(184, 150, 46, .2);
  margin-top: 2rem;
  position: relative;
  overflow: hidden
}

#preloader .loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: slide 1.5s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: .6;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.03)
  }
}

@keyframes slide {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--tr), padding var(--tr), box-shadow var(--tr), backdrop-filter var(--tr)
}

.navbar.scrolled {
  background: rgba(26, 26, 26, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .9rem clamp(1.5rem, 5vw, 4rem);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .15)
}

.navbar__logo img {
  height: 40px;
  width: auto;
  transition: height var(--tr)
}

.navbar.scrolled .navbar__logo img {
  height: 32px
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
  align-items: center
}

.navbar__links a {
  font: 400 .72rem/1 var(--fb);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--w85);
  position: relative;
  padding-bottom: 4px
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--tr)
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold-l)
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1010;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center
}

.navbar__hamburger span {
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--tr), opacity var(--tr);
  transform-origin: center
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 26, 26, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible
}

.mobile-menu a {
  font: 300 1.3rem/1 var(--fb);
  color: rgba(255, 255, 255, .9);
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: color var(--tr), transform var(--tr);
  transform: translateY(20px);
  opacity: 0;
  padding: 12px 24px;
  min-height: 48px;
  display: inline-flex;
  align-items: center
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold)
}

.mobile-menu a:nth-child(1) {
  transition-delay: .1s
}

.mobile-menu a:nth-child(2) {
  transition-delay: .15s
}

.mobile-menu a:nth-child(3) {
  transition-delay: .2s
}

.mobile-menu a:nth-child(4) {
  transition-delay: .25s
}

.mobile-menu a:nth-child(5) {
  transition-delay: .3s
}

.mobile-menu a:nth-child(6) {
  transition-delay: .35s
}

/* Mobile menu separator — matches .gold-line gradient */
.mobile-menu__separator {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease);
}

.mobile-menu.open .mobile-menu__separator {
  opacity: 1
}

/* Social Feeds Section */
.social-feeds {
  padding: var(--sp);
  background: var(--cream);
  text-align: center;
  overflow: hidden
}

.social-feeds .section-subtitle {
  color: var(--gold)
}

.social-feeds .section-title {
  color: var(--charcoal)
}

.social-feeds__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.social-feeds__column {
  background: var(--black);
  border: 1px solid rgba(184, 150, 46, .15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), border-color var(--tr);
}

.social-feeds__column:hover {
  border-color: rgba(184, 150, 46, .35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .2);
}

.social-feeds__heading {
  font: 400 .72rem/1 var(--fb);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-l);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(184, 150, 46, .1);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.social-feeds__heading svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold)
}

.social-feeds__embed {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 500px;
  background: #111;
  overflow: hidden;
}

.social-feeds__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* FB-specific: fallback behind, iframe on top */
.social-feeds__embed--fb {
  display: grid;
  grid-template-areas: "stack";
}

.social-feeds__embed--fb .fb-fallback,
.social-feeds__embed--fb .fb-iframe {
  grid-area: stack;
  width: 100%;
  height: 100%;
}

.social-feeds__embed--fb .fb-fallback {
  z-index: 1;
}

.social-feeds__embed--fb .fb-iframe {
  position: relative;
  border: none;
  z-index: 2;
  background: #fff;
}

/* Fallback card — sits below iframe (z-index: 1) */
.fb-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--black);
  text-align: center;
}

.fb-fallback__icon {
  width: 52px;
  height: 52px;
  stroke: var(--gold);
  opacity: .85;
}

.fb-fallback__text {
  font: 300 .88rem/1.7 var(--fb);
  color: rgba(255, 255, 255, .55);
  letter-spacing: .03em;
  max-width: 240px;
}

.fb-fallback__btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font: 400 .72rem/1 var(--fb);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(184, 150, 46, .45);
  padding: .85rem 1.8rem;
  transition: all var(--tr);
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.fb-fallback__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 46, .15), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}

.fb-fallback__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.fb-fallback__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 150, 46, .25);
}

.social-feeds__follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font: 400 .72rem/1 var(--fb);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(184, 150, 46, .1);
  transition: all var(--tr);
  min-height: 48px;
  margin-top: auto;
  flex-shrink: 0;
}

.social-feeds__follow-btn svg {
  width: 14px;
  height: 14px
}

.social-feeds__follow-btn:hover {
  color: var(--gold-l);
  background: rgba(184, 150, 46, .06)
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black)
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.85);
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate
}

@keyframes heroZoom {
  0% {
    transform: scale(1.08)
  }

  100% {
    transform: scale(1.15)
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, .3) 0%, rgba(26, 26, 26, .15) 40%, rgba(26, 26, 26, .5) 100%);
  z-index: 1
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem
}

.hero__logo {
  width: clamp(200px, 35vw, 380px);
  margin: 0 auto 2rem;
  animation: fadeUp 1.2s var(--ease) .3s both
}

.hero__tagline {
  font: 300 clamp(.75rem, 1.5vw, .95rem)/1.6 var(--fb);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 3rem;
  animation: fadeUp 1.2s var(--ease) .6s both
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font: 400 .72rem/1 var(--fb);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(184, 150, 46, .5);
  padding: 1rem 2.5rem;
  cursor: pointer;
  background: transparent;
  transition: all var(--tr);
  animation: fadeUp 1.2s var(--ease) .9s both;
  overflow: hidden;
  min-height: 48px
}

.hero__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 46, .18), transparent);
  animation: shimmer 3.5s ease-in-out infinite
}

.hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 46, .25)
}

.hero__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--tr)
}

.hero__cta:hover svg {
  transform: translateY(3px)
}

@keyframes shimmer {
  0% {
    left: -100%
  }

  50%,
  100% {
    left: 100%
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeUp 1.2s var(--ease) 1.2s both
}

.hero__scroll span {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--w50)
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(184, 150, 46, .3);
  position: relative;
  overflow: hidden
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {
  0% {
    top: -100%
  }

  50% {
    top: 100%
  }

  100% {
    top: 100%
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.about {
  padding: var(--sp);
  background: var(--ivory);
  position: relative
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center
}

.about__text p {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 1.5rem
}

.about__text p strong {
  font-weight: 500;
  color: var(--charcoal)
}

.about__image-wrapper {
  position: relative;
  order: -1;
  max-height: 400px;
  overflow: hidden
}

.about__image-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(.9)
}

.about__image-frame {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid var(--gold);
  opacity: .3;
  pointer-events: none
}

.brands {
  padding: var(--sp);
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden
}

.brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 150, 46, .06) 0%, transparent 70%);
  pointer-events: none
}

.brands .section-subtitle {
  color: var(--gold-l)
}

.brands .section-title {
  color: #fff
}

.brands__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1px;
  padding: 0 1rem
}

.brands__grid::-webkit-scrollbar {
  display: none
}

.brand-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: var(--black);
  border: 1px solid var(--g10);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  cursor: default;
  min-height: 48px
}

.brand-card:hover,
.brand-card:active {
  background: rgba(184, 150, 46, .06);
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2)
}

.brand-card__name {
  font: 400 1.15rem/1.3 var(--fh);
  color: rgba(255, 255, 255, .9);
  letter-spacing: .05em;
  transition: color var(--tr)
}

.brand-card:hover .brand-card__name {
  color: var(--gold-l)
}

.brand-card__origin {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--w35)
}

.virtual-tour {
  padding: var(--sp);
  background: var(--cream);
  text-align: center
}

.virtual-tour__container {
  max-width: 960px;
  margin: 0 auto
}

.virtual-tour__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--black);
  border: 1px solid rgba(184, 150, 46, .15);
  overflow: hidden
}

.virtual-tour__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, .6)
}

.virtual-tour__placeholder svg {
  width: 60px;
  height: 60px;
  opacity: .4
}

.virtual-tour__placeholder p {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase
}

.virtual-tour__hint {
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--gray);
  font-style: italic
}

.gallery {
  padding: var(--sp);
  background: var(--ivory);
  text-align: center
}

.gallery__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem)
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform var(--tr), box-shadow var(--tr)
}

.gallery__item:hover,
.gallery__item:active {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12)
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: saturate(.85)
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: saturate(1)
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 26, .3) 100%);
  opacity: 0;
  transition: opacity var(--tr)
}

.gallery__item:hover::after {
  opacity: 1
}

.gallery__zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr), transform var(--tr);
  background: rgba(26, 26, 26, .3);
  backdrop-filter: blur(4px)
}

.gallery__zoom-icon svg {
  width: 18px;
  height: 18px;
  color: #fff
}

.gallery__item:hover .gallery__zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1)
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, .95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  cursor: pointer
}

.lightbox.active {
  opacity: 1;
  visibility: visible
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transform: scale(.9);
  transition: transform .5s var(--ease), opacity .3s ease;
  cursor: default
}

.lightbox__img.swiping {
  transition: none
}

.lightbox.active .lightbox__img {
  transform: scale(1)
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr)
}

.lightbox__close:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr)
}

.lightbox__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 46, .1)
}

.lightbox__nav--prev {
  left: 1rem
}

.lightbox__nav--next {
  right: 1rem
}

.contact {
  padding: var(--sp);
  background: var(--black);
  color: #fff
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem)
}

.contact .section-title {
  color: #fff
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.contact__block h3 {
  font: 400 1rem/1.4 var(--fh);
  color: var(--gold-l);
  margin-bottom: .6rem;
  letter-spacing: .05em
}

.contact__block p,
.contact__block a {
  font-size: .88rem;
  color: var(--w65);
  line-height: 1.8
}

.contact__block a:hover {
  color: var(--gold-l)
}

.contact__block .phone-link {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--w85);
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 48px
}

.contact__block .phone-link:hover {
  color: var(--gold-l)
}

.contact__block .address-note {
  color: rgba(255, 255, 255, .45);
  font-size: .78rem
}

.contact__block .hours-table {
  display: flex;
  flex-direction: column;
  gap: .3rem
}

.contact__block .hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 280px
}

.contact__block .hours-row .day {
  color: var(--w50);
  font-size: .82rem
}

.contact__block .hours-row .time {
  color: rgba(255, 255, 255, .75);
  font-size: .82rem
}

.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
  flex-wrap: wrap
}

.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(184, 150, 46, .25);
  padding: .75rem 1.3rem;
  transition: all var(--tr);
  overflow: hidden;
  min-height: 48px
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 46, .12), transparent);
  animation: shimmer 4s ease-in-out infinite 1s
}

.social-btn svg {
  width: 16px;
  height: 16px
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-l);
  background: rgba(184, 150, 46, .06)
}

.contact__map {
  position: relative;
  min-height: 300px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(184, 150, 46, .12);
  overflow: hidden
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  filter: saturate(.6) brightness(.8) contrast(1.1);
  transition: filter var(--tr)
}

.contact__map:hover iframe {
  filter: saturate(.85) brightness(.9) contrast(1.05)
}

.footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  background: #111;
  text-align: center;
  border-top: 1px solid rgba(184, 150, 46, .08)
}

.footer__logo {
  width: 100px;
  margin: 0 auto 1rem;
  opacity: .5
}

.footer p {
  font-size: .7rem;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(26, 26, 26, .82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(184, 150, 46, .12);
  padding: .4rem 0;
  padding-bottom: calc(.4rem + env(safe-area-inset-bottom, 0px));
  transform: translateZ(0)
}

.sticky-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: var(--w65);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  transition: color var(--tr);
  -webkit-tap-highlight-color: transparent
}

.sticky-bar__item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-l);
  transition: stroke var(--tr)
}

.sticky-bar__item:active,
.sticky-bar__item:hover {
  color: var(--gold-l)
}

.sticky-bar__item:active svg,
.sticky-bar__item:hover svg {
  stroke: var(--gold)
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger.visible> :nth-child(1) {
  transition-delay: 0s
}

.reveal-stagger.visible> :nth-child(2) {
  transition-delay: .07s
}

.reveal-stagger.visible> :nth-child(3) {
  transition-delay: .14s
}

.reveal-stagger.visible> :nth-child(4) {
  transition-delay: .21s
}

.reveal-stagger.visible> :nth-child(5) {
  transition-delay: .28s
}

.reveal-stagger.visible> :nth-child(6) {
  transition-delay: .35s
}

.reveal-stagger.visible> :nth-child(7) {
  transition-delay: .42s
}

.reveal-stagger.visible> :nth-child(8) {
  transition-delay: .49s
}




@media (min-width: 769px) {
  .mobile-menu {
    display: none !important
  }

  .sticky-bar {
    display: none !important
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem)
  }

  .about__image-wrapper {
    order: 0;
    max-height: none
  }

  .about__image-frame {
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px
  }

  .contact__inner {
    grid-template-columns: 1fr 1fr
  }

  .contact__map {
    min-height: 380px
  }

  .brands__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    padding: 0;
    background: var(--g10);
    border: 1px solid var(--g10)
  }

  .brand-card {
    flex: none;
    border: none
  }

  .social-feeds__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none
  }

  .navbar__hamburger {
    display: flex
  }

  body {
    padding-bottom: 72px
  }
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }
}