/* =========================================================================
   DESIGN TOKENS
   ========================================================================= */
:root{
  --bg:            #0C0B0A;
  --bg-alt:        #131110;
  --surface:       #1A1714;
  --surface-line:  #2A251E;

  --gold:          #C9A961;
  --gold-bright:   #E8CD8A;
  --gold-deep:     #8F7038;
  --gold-soft:     rgba(201,169,97,0.16);

  --ivory:         #EDE7DD;
  --muted:         #A79C89;
  --muted-2:       #6E6656;

  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:     1180px;
  --radius-sm:     2px;
  --radius-md:     4px;

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body{
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--ivory);
}

p{ margin: 0 0 1em; color: var(--muted); max-width: 62ch; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }

.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75em 1.25em;
  z-index: 2000;
  font-weight: 600;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

.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;
}

:focus-visible{
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* =========================================================================
   PRELOADER
   ========================================================================= */
.preloader{
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.preloader[hidden]{ display: none; }
.preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.preloader__logo{
  height: 4.5rem;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}
.preloader__bar{
  width: 140px;
  height: 2px;
  background: var(--surface-line);
  overflow: hidden;
  border-radius: 999px;
}
.preloader__bar-fill{
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), transparent);
  animation: preloaderSlide 1.3s ease-in-out infinite;
}
@keyframes preloaderPulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.55; }
}
@keyframes preloaderSlide{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(280%); }
}
@media (prefers-reduced-motion: reduce){
  .preloader__logo{ animation: none; }
  .preloader__bar-fill{ animation: none; transform: translateX(0); width: 100%; }
}

/* =========================================================================
   ICONS (inline via mask so they inherit currentColor — no icon font/library)
   ========================================================================= */
.ico{
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: -0.15em;
}
.ico-phone{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.ico-message{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); }
.ico-mail{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E"); }
.ico-pin{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.ico-clock{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.ico-doc{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M9 13h6M9 17h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M9 13h6M9 17h6'/%3E%3C/svg%3E"); }
.ico-chevron-down{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); }
.ico-chevron-up{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E"); }
.ico-facebook {
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M14.5 21v-8h2.75l.42-3.1H14.5V7.92c0-.9.25-1.52 1.55-1.52h1.7V3.63c-.29-.04-1.29-.13-2.45-.13-2.42 0-4.08 1.48-4.08 4.2V9.9H8.5V13h2.72v8z'/%3E%3C/svg%3E");
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M14.5 21v-8h2.75l.42-3.1H14.5V7.92c0-.9.25-1.52 1.55-1.52h1.7V3.63c-.29-.04-1.29-.13-2.45-.13-2.42 0-4.08 1.48-4.08 4.2V9.9H8.5V13h2.72v8z'/%3E%3C/svg%3E");
}
.ico-instagram {
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='4'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17' cy='7' r='1' fill='%23000' stroke='none'/%3E%3C/svg%3E");
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='4'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17' cy='7' r='1' fill='%23000' stroke='none'/%3E%3C/svg%3E");
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.8em;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn--solid-gold{
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #171310;
}
.btn--solid-gold:hover{ background: linear-gradient(180deg, #f0dba0, var(--gold-bright)); }
.btn--ghost-gold{
  border-color: var(--gold-deep);
  color: var(--gold-bright);
  background: transparent;
}
.btn--ghost-gold:hover{
  border-color: var(--gold-bright);
  background: var(--gold-soft);
}
.btn--pill{ border-radius: 999px; }

/* =========================================================================
   LANGUAGE MODAL
   ========================================================================= */
.lang-modal{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201,169,97,0.12), transparent 60%),
    rgba(6,5,4,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lang-modal[hidden]{ display: none; }
.lang-modal.is-closing{ opacity: 0; }

.lang-modal__panel{
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-top: 2px solid var(--gold);
  border-radius: 20px;
  padding: 2.75rem 2.25rem 2.25rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  overflow: hidden;
}
.lang-modal__mark{
  width: auto;
  height: 3.75rem;
  max-width: 260px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}
.lang-modal__heading{ font-size: 1.5rem; margin-bottom: 0.5rem; }
.lang-modal__sub{ font-size: 0.92rem; margin-bottom: 1.75rem; }
.lang-modal__options{ display: flex; flex-direction: column; gap: 0.75rem; }
.lang-modal__option{
  padding: 0.9em 1em;
  background: transparent;
  border: 1px solid var(--surface-line);
  border-radius: 10px;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-modal__option:hover{
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-bright);
}

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(12,11,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--surface-line);
}
.site-header__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{ display: flex; align-items: center; }
.brand__logo{
  height: 8.5rem;
  width: auto;
  max-width: 640px;
  object-fit: contain;
  display: block;
}

.main-nav{ display: flex; gap: 2rem; }
.main-nav a{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ivory);
  position: relative;
  padding: 0.25rem 0;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 1rem; }

.lang-select{ position: relative; }
.lang-select__btn{
  background: transparent;
  border: 1px solid var(--surface-line);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.5em 0.9em;
  transition: border-color 0.2s var(--ease);
}
.lang-select__btn:hover{ border-color: var(--gold); }
.lang-select__menu{
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 140px;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 50;
}
.lang-select__menu.is-open{ opacity: 1; visibility: visible; transform: translateY(0); }
.lang-select__menu button{
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7em 1em;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-size: 0.88rem;
}
.lang-select__menu button:hover{ background: var(--gold-soft); color: var(--gold-bright); }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 960;
}
.hamburger span{
  display: block;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
}
/* Each .hero__slide is a placeholder illustration (assets/hero-1..4.svg).
   Replace the background-image on each with a real photo of the same
   aspect — the crossfade animation and scrim work unchanged either way. */
.hero__slideshow{
  position: absolute; inset: 0;
}
.hero__slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideshow 16s infinite;
  will-change: opacity;
}
.hero__slide--1{ background-image: url("../assets/hero-1.JPG"); animation-delay: -2s; }
.hero__slide--2{ background-image: url("../assets/hero-2.jpg"); animation-delay: 4s; }
.hero__slide--3{ background-image: url("../assets/hero-1.JPG"); animation-delay: 8s; }
.hero__slide--4{ background-image: url("../assets/hero-2.jpg"); animation-delay: 12s; }

/* Each slide fades in, holds, then fades out over 6s of active window while
   slides are staggered 4s apart — the 2s overlap is what creates a real
   dissolve between images rather than a hard cut. */
@keyframes heroSlideshow{
  0%     { opacity: 0; }
  12.5%  { opacity: 1; }
  25%    { opacity: 1; }
  37.5%  { opacity: 0; }
  100%   { opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .hero__slide{ animation: none; }
  .hero__slide--1{ opacity: 1; }
}

.hero__slide::after{
  content: "";
  position: absolute;
  top: 6.5rem; right: 1.5rem;
  max-width: 220px;
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: rgba(201,169,97,0.4);
}
.hero__slide--2::after, .hero__slide--3::after, .hero__slide--4::after{ content: none; }
.hero__scrim{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(12,11,10,0.15) 55%, rgba(12,11,10,0.35) 100%);
}
.hero__content{ position: relative; z-index: 2; max-width: 780px; }

.status-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5em 1em;
  border: 1px solid var(--surface-line);
  background: rgba(26,23,20,0.65);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.status-badge::before{
  content: "";
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--muted-2);
  flex-shrink: 0;
}
.status-badge.is-open{ color: #9FCB8F; border-color: rgba(159,203,143,0.35); }
.status-badge.is-open::before{ background: #9FCB8F; box-shadow: 0 0 0 3px rgba(159,203,143,0.18); }
.status-badge.is-closed{ color: var(--muted); }
.status-badge.is-closed::before{ background: var(--muted-2); }

.hero__eyebrow{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-bright);
  margin: 0 0 0.75rem;
}
.hero__heading{
  font-size: clamp(3rem, 9vw, 6.4rem);
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.hero__tagline{
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  margin: 1.1rem 0 2.25rem;
  max-width: 40ch;
}
.hero__ctas{ display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* =========================================================================
   SECTIONS (shared)
   ========================================================================= */
.section{ padding: 6.5rem 1.5rem; }
.section--alt{ background: var(--bg-alt); }
.section--page-top{ padding-top: 13rem; }
.section__inner{ max-width: var(--container); margin: 0 auto; }
.section__heading{
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section__heading--left{ text-align: left; }
.section__intro{
  text-align: center;
  margin: 0 auto 3.25rem;
  font-size: 1.02rem;
}
.section--alt .section__intro{ margin-left: auto; margin-right: auto; }

.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* =========================================================================
   SERVICES
   ========================================================================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--surface-line);
  border: 1px solid var(--surface-line);
}
.service-card{
  background: var(--bg);
  padding: 2.25rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover{ border-top-color: var(--gold); background: var(--surface); }
.service-card__name{
  font-size: 1.25rem;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}
.service-card__desc{ font-size: 0.94rem; margin-bottom: 1.25rem; min-height: 6rem; }
.service-card__divider{
  flex: 1 1 auto;
  min-height: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-line);
  margin-bottom: 1.25rem;
}
.service-card__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.7em 1em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid var(--gold-deep);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.service-card__cta:hover{ border-color: var(--gold-bright); background: var(--gold-soft); }

.services-more{ text-align: center; margin-top: 2.5rem; }
.services-more a{
  font-weight: 600;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 0.2rem;
}

/* =========================================================================
   PRICE LIST (menu style — dotted leaders, not cards)
   ========================================================================= */
.price-menu{
  display: flex;
  gap: 4rem;
  max-width: 980px;
  margin: 0 auto;
}
.price-menu__column{
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}
.price-menu__category{ break-inside: avoid; }
.price-menu__category-title{
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-deep);
}
.price-menu__row{
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.65rem 0.5rem;
  margin: 0 -0.5rem;
  scroll-margin-top: 6.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-menu__row.is-highlighted{
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 1px var(--gold-deep);
}
.price-menu__name{ font-weight: 600; color: var(--ivory); white-space: nowrap; }
.price-menu__leader{
  flex: 1;
  min-width: 1.5rem;
  height: 1px;
  align-self: center;
  background-image: radial-gradient(circle, var(--muted-2) 1px, transparent 1.2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left center;
}
.price-menu__amount{
  font-family: var(--font-display);
  color: var(--gold);
  white-space: nowrap;
  font-size: 1.05rem;
}

/* =========================================================================
   GIFT CARDS — simplified: no visual card mockup, just amounts + CTA
   ========================================================================= */
.giftcard-simple{
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.giftcard-simple h3{ font-size: 1.05rem; margin-bottom: 1.1rem; }
.giftcard-amounts{ display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.giftcard-amount{
  border: 1px solid var(--gold-deep);
  color: var(--gold-bright);
  background: transparent;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.giftcard-amount:hover{ border-color: var(--gold-bright); }
.giftcard-amount.is-selected{
  background: var(--gold);
  border-color: var(--gold);
  color: #171310;
}
.giftcard-custom{
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.giftcard-custom[hidden]{ display: none; }
.giftcard-custom__label{
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.giftcard-custom__field{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  color: var(--gold-bright);
  max-width: 180px;
}
.giftcard-custom__field input{
  background: transparent;
  border: none;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem;
  width: 100%;
  min-width: 0;
  text-align: center;
}
.giftcard-custom__field input:focus{ outline: none; }
.giftcard-custom__field:focus-within{ border-color: var(--gold-bright); }
.giftcard-simple .btn{ margin-top: 1.5rem; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-layout{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-media{
  aspect-ratio: 16 / 9;
  background-color: #0c0b0a;
  background-image:
    linear-gradient(160deg, rgba(29,25,18,0.2), rgba(12,11,10,0.2)),
    url("../assets/hero-2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border: 1px solid var(--surface-line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media::before{
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold-deep);
}

.about-media::after{
  content: none;
}

.about-copy p{
  font-size: 1.05rem;
}

/* =========================================================================
   OUR WORK (home) — auto-scrolling photo carousel
   ========================================================================= */
.work-carousel{
  overflow: hidden;
  margin-top: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.work-carousel__track{
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: workScroll 28s linear infinite;
}
.work-carousel__item{
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--surface-line);
}
.work-carousel__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes workScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .work-carousel__track{ animation: none; }
}

/* =========================================================================
   PHOTO GRID (services page — supporting shop photos)
   ========================================================================= */
.photo-grid{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2rem;
  max-width: var(--container);
  margin: 3rem auto 0;
}
.photo-grid__item{
  position: relative;
  display: block;
  width: clamp(120px, 16vw, 200px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-deep);
  transition: border-color 0.25s var(--ease);
}
@media (hover: hover) and (pointer: fine){
  .photo-grid__item:hover, .photo-grid__item:focus-visible{ border-color: var(--gold-bright); }
}
.photo-grid__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-grid__ig{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,11,10,0.55);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.photo-grid__ig .ico{ width: 28px; height: 28px; }

/* Hover-capable pointers (mouse) only — avoids the overlay getting "stuck"
   on touch devices, where tapping a link can leave :hover/:focus applied
   after the browser's back navigation. */
@media (hover: hover) and (pointer: fine){
  .photo-grid__item:hover .photo-grid__ig,
  .photo-grid__item:focus-visible .photo-grid__ig{ opacity: 1; }
}

/* Touch devices: same centered icon as the desktop hover state, just
   permanently visible instead of hover-triggered — no lingering state,
   no corner badge, no off-brand colors. */
@media (hover: none), (pointer: coarse){
  .photo-grid__ig{
    background: rgba(12,11,10,0.4);
    color: rgba(255,255,255,0.7);
    opacity: 1;
  }
}
.photo-grid__item.reveal{ transform: scale(0.7); }
.photo-grid__item.reveal.is-visible{ transform: scale(1); }
.photo-grid__item:nth-child(2){ transition-delay: 0.12s; }
.photo-grid__item:nth-child(3){ transition-delay: 0.24s; }
.photo-grid__item:nth-child(4){ transition-delay: 0.36s; }

/* =========================================================================
   LOCATION (Find Us — opening hours + two labeled map embeds)
   ========================================================================= */
.hours-block{
  max-width: 360px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.hours-block .contact-item__label{
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}
.hours-block .hours-list > div{ max-width: none; }
.maps-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.map-block__label{
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 0.9rem;
}
.map-block__frame{
  min-height: 340px;
  background: var(--surface);
  filter: grayscale(0.3) contrast(1.05);
  border: 2px solid var(--gold-deep);
  border-radius: 12px;
  overflow: hidden;
}
.map-block__frame iframe{ display: block; height: 100%; min-height: 340px; }

/* =========================================================================
   CONTACT — two location cards + shared info
   ========================================================================= */
.locations-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.location-card{
  background: var(--bg-alt);
  padding: 2.25rem;
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.location-card:hover{
  box-shadow: 0 24px 55px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}
.location-card__body{ display: flex; flex-direction: column; gap: 0.6rem; }
.location-card__heading{
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}
.location-card__address{ color: var(--muted); font-size: 0.96rem; line-height: 1.5; min-height: 3em; margin-bottom: 0.4rem; }
.location-card__phone{
  color: var(--ivory);
  font-weight: 600;
  width: fit-content;
  transition: color 0.2s var(--ease);
}
.location-card__phone:hover{
  color: var(--gold-bright);
}
.location-card__spacer{ flex: 1 1 auto; min-height: 1.25rem; }
.location-card__directions{ align-self: flex-start; margin-top: 1.1rem; }

/* =========================================================================
   CONTACT (shared label style, reused by the Find Us hours block)
   ========================================================================= */
.contact-item__label{ display: block; font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.03em; margin-bottom: 0.3rem; }
.hours-list{ font-size: 0.92rem; color: var(--muted); }
.hours-list > div{ display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; max-width: 300px; padding: 0.2rem 0; }
.hours-list .is-today{ color: var(--gold-bright); font-weight: 600; }
.hours-list .hours-list__value{ display: flex; flex-direction: column; gap: 0.15rem; text-align: right; white-space: nowrap; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{ background: var(--bg-alt); border-top: 1px solid var(--surface-line); padding-top: 4.5rem; }
.site-footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col h3{ font-size: 0.95rem; color: var(--gold-bright); margin-bottom: 1rem; }
.footer-col > a:not(.brand), .footer-col > span, .footer-link-btn{
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  background: none; border: none; padding: 0; text-align: left;
}
.footer-col a:hover, .footer-link-btn:hover{ color: var(--gold-bright); }
.footer-col--brand .brand{ margin-bottom: 1.25rem; }
.footer-social{ display: flex; gap: 1.1rem; }
.footer-social__icon{
  width: 1.4rem; height: 1.4rem;
  flex: 0 0 1.4rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social__icon .ico{
  width: 22px;
  height: 22px;
}

.footer-social__icon:hover{
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.site-footer__bottom{
  border-top: 1px solid var(--surface-line);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--muted-2);
}
.site-footer__bottom p{ margin: 0; color: var(--muted-2); }
.made-by{ opacity: 0.8; }

/* =========================================================================
   LEGAL MODAL
   ========================================================================= */
.legal-modal{
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(6,5,4,0.85);
  backdrop-filter: blur(4px);
}
.legal-modal[hidden]{ display: none; }
.legal-modal__panel{
  max-width: 520px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-top: 2px solid var(--gold);
  padding: 2.5rem;
  position: relative;
}
.legal-modal__panel h2{ font-size: 1.35rem; margin-bottom: 1rem; padding-right: 1.5rem; }
.legal-modal__close{
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
}
.legal-modal__close:hover{ color: var(--gold-bright); }

.back-to-top{
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 800;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  color: var(--gold-bright);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s, border-color 0.2s var(--ease);
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ border-color: var(--gold); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .price-menu{ flex-direction: column; gap: 3rem; max-width: 560px; }
  .giftcard-layout{ grid-template-columns: 1fr; gap: 2.5rem; }
  .about-layout{ grid-template-columns: 1fr; }
  .about-media{
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .site-footer__inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .photo-grid{ flex-wrap: wrap; gap: 1.5rem; }

  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 320px);
    background: var(--bg-alt);
    border-left: 1px solid var(--surface-line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 6.5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 950;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav a{ padding: 0.85rem 0; font-size: 1.05rem; width: 100%; border-bottom: 1px solid var(--surface-line); }
  .hamburger{ display: flex; }
  .lang-select__menu{ right: -0.5rem; }

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

  /* Hero: center the whole content group on mobile only (desktop untouched) */
  .hero{ align-items: center; justify-content: center; padding-top: 8.5rem; text-align: center; }
  .hero__content{ display: flex; flex-direction: column; align-items: center; margin: 0 auto; }
  .hero__tagline{ margin-left: auto; margin-right: auto; }
  .hero__ctas{ flex-direction: column; align-items: stretch; }
  .hero__ctas .btn{ justify-content: center; }

  /* Logo: stay large and clearly visible, scaled slightly for the narrower header */
  .brand__logo{ height: 5.5rem; max-width: 420px; }
  .section--page-top{ padding-top: 9.5rem; }

  .site-footer__inner{ grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 480px){
  .lang-modal{ padding: 1rem; }
  .lang-modal__panel{
    padding: 2rem 1.5rem 1.75rem;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
  }
  .lang-modal__mark{ height: 2.75rem; margin-bottom: 1.1rem; }
  .lang-modal__heading{ font-size: 1.25rem; }
  .lang-modal__sub{ font-size: 0.85rem; margin-bottom: 1.4rem; }
  .lang-modal__options{ gap: 0.6rem; }
  .lang-modal__option{
    padding: 1em;
    font-size: 0.95rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
