:root {
  --gold: #d6a62f;
  --gold-light: #f2d06a;
  --black: #030303;
  --white: #f5f5f5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--black); font-family: "Montserrat", Arial, sans-serif; }
html, body { max-width: 100%; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 88px;
  background: rgba(2, 2, 2, .98);
  border-bottom: 1px solid rgba(214, 166, 47, .65);
  position: relative;
  z-index: 20;
}

.header-inner {
  width: min(1800px, calc(100% - 76px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand { width: 128px; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: 70px; object-fit: contain; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 38px; }
.main-nav a { padding: 12px 0; font-size: 11px; font-weight: 500; text-transform: uppercase; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { color: var(--gold-light); }
.button {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .main-nav a:focus-visible, .menu-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.button-gold { color: #050505; background: linear-gradient(110deg, #b47b15, #f1cf67 48%, #bd861d); border-color: #d5a63b; }
.button-outline { background: rgba(0,0,0,.28); color: #fff; }
.button-outline:hover { background: var(--gold); color: #050505; }
.header-cta { margin-left: 8px; min-width: 132px; }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 88px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050505 url("hero-barber.png") center / cover no-repeat;
  padding: 68px max(6.3vw, 42px) 118px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.88) 28%, rgba(0,0,0,.25) 56%, rgba(0,0,0,.08) 100%), linear-gradient(0deg, rgba(0,0,0,.65), transparent 40%);
}
.hero-content { width: min(620px, 48vw); position: relative; z-index: 2; }
.hero-mark { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold-light); margin-bottom: 4px; }
.hero-mark span { width: 86px; height: 1px; background: var(--gold); }
.hero-mark b { font-size: 53px; line-height: 1; font-family: serif; font-weight: 400; transform: rotate(-8deg); }
h1 { margin: 0; font-family: "Cinzel", Georgia, serif; font-weight: 500; font-size: clamp(33px, 3.4vw, 57px); line-height: 1.03; letter-spacing: 1px; text-align: center; text-transform: uppercase; white-space: nowrap; }
h1 span { display: block; font-weight: 800; font-size: 1.34em; background: linear-gradient(#ffe489, #c3861f 75%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { margin: 14px 0 30px; color: var(--gold-light); font-family: "Cinzel", Georgia, serif; font-size: 17px; letter-spacing: 2px; text-align: center; text-transform: uppercase; }
.benefits { list-style: none; padding: 0 0 14px; margin: 0; }
.benefits li { display: flex; align-items: center; gap: 14px; margin: 9px 0; font-size: 14px; text-transform: uppercase; }
.benefit-icon { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-size: 12px; flex: 0 0 auto; }
.benefit-icon.people { border: 0; font-size: 24px; }
.hero-actions { display: flex; gap: 18px; margin: 5px 0 39px; }
.hero-actions .button { min-width: 156px; }
.location { display: flex; align-items: center; gap: 17px; font-size: 12px; line-height: 1.7; }
.location p { margin: 0; }
.location strong { color: var(--gold); font-weight: 500; }
.location-icon { width: 29px; height: 36px; object-fit: contain; flex: 0 0 auto; }

.services {
  position: absolute;
  left: 6.3vw;
  right: 6.3vw;
  bottom: 36px;
  z-index: 3;
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(214,166,47,.75);
  border-radius: 3px;
  background: rgba(4,4,4,.72);
  backdrop-filter: blur(5px);
}
.services article { display: flex; align-items: center; justify-content: center; gap: 13px; position: relative; color: var(--gold-light); font-size: 12px; line-height: 1.75; text-transform: uppercase; }
.services article + article::before { content: ""; position: absolute; left: 0; top: 17px; bottom: 17px; width: 1px; background: rgba(214,166,47,.28); }
.services img { width: 38px; height: 48px; object-fit: contain; }

/* Balance the copy inside the dark half of the desktop hero. */
@media (min-width: 981px) {
  .hero-content {
    margin-left: clamp(38px, 3vw, 58px);
  }

  .benefits,
  .hero-actions,
  .location {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes headerEnter { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroFadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroMarkEnter { from { opacity:0; transform:scale(.82) translateY(12px); } to { opacity:1; transform:scale(1) translateY(0); } }
@keyframes servicesEnter { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroPan { from { background-position:54% center; } to { background-position:50% center; } }

.site-header { animation:headerEnter .65s cubic-bezier(.22,.8,.3,1) both; }
.hero-mark { animation:heroMarkEnter .7s .18s cubic-bezier(.2,.8,.25,1) both; }
.hero-content h1 { animation:heroFadeUp .75s .32s cubic-bezier(.2,.8,.25,1) both; }
.hero-content .eyebrow { animation:heroFadeUp .7s .48s cubic-bezier(.2,.8,.25,1) both; }
.hero-content .benefits { animation:heroFadeUp .7s .64s cubic-bezier(.2,.8,.25,1) both; }
.hero-content .hero-actions { animation:heroFadeUp .7s .8s cubic-bezier(.2,.8,.25,1) both; }
.hero-content .location { animation:heroFadeUp .7s .96s cubic-bezier(.2,.8,.25,1) both; }
.hero .services { animation:servicesEnter .8s 1.04s cubic-bezier(.2,.8,.25,1) both; }
.hero-mark span { transform-origin:center; transition:width .45s ease; }
.hero-mark:hover span { width:105px; }
.button::after { content:""; position:absolute; inset:0; background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.28) 48%,transparent 72%); transform:translateX(-140%); transition:transform .55s ease; pointer-events:none; }
.button { position:relative; overflow:hidden; }
.button:hover::after { transform:translateX(140%); }
.scroll-reveal { opacity:0; transform:translateY(42px); transition:opacity .85s cubic-bezier(.2,.8,.25,1),transform .85s cubic-bezier(.2,.8,.25,1); }
.scroll-reveal.reveal-visible { opacity:1; transform:translateY(0); }

@media (min-width:981px) { .hero { animation:heroPan 7s cubic-bezier(.2,.7,.2,1) both; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } *, *::before, *::after { transition:none !important; animation:none !important; } .scroll-reveal { opacity:1; transform:none; } }

.about-section,
.offer-section {
  position: relative;
  background: #050505;
  overflow: hidden;
}
.about-section {
  border-top: 1px solid rgba(214,166,47,.55);
  border-bottom: 1px solid rgba(214,166,47,.55);
  background-image: radial-gradient(circle at 13% 25%, rgba(112,78,30,.12), transparent 35%), linear-gradient(115deg, #090909, #030303 60%);
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background: repeating-linear-gradient(125deg, transparent 0 35px, rgba(213,166,47,.15) 36px, transparent 37px 70px);
  pointer-events: none;
}
.about-inner {
  width: min(1680px, calc(100% - 120px));
  min-height: 445px;
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-copy { max-width: 530px; padding-right: 60px; }
.section-kicker { margin: 0 0 20px; color: var(--gold); font-family: "Cinzel", Georgia, serif; font-size: 20px; font-weight: 600; text-transform: uppercase; }
.about-copy h2 { margin: 0 0 24px; font-family: "Cinzel", Georgia, serif; font-size: clamp(28px, 2.5vw, 42px); line-height: 1.15; font-weight: 500; text-transform: uppercase; }
.about-copy h2 span { color: var(--gold-light); }
.about-copy > p:not(.section-kicker) { max-width: 500px; margin: 0 0 30px; color: #d4d4d4; font-size: 14px; line-height: 1.75; }
.about-copy .button { min-width: 190px; }
.about-gallery { height: 365px; display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(210px, 1fr); gap: 20px; }
.about-image { margin: 0; border: 1px solid rgba(214,166,47,.9); overflow: hidden; background: #080808; }
.about-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.about-image:hover img { transform: scale(1.025); }
.about-image-wide img { object-position: center; }
.about-image-portrait img { object-position: center 55%; }

.offer-section {
  padding: 42px 0 38px;
  border-bottom: 1px solid rgba(214,166,47,.35);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(176,123,28,.16), transparent 48%),
    linear-gradient(180deg, #080706 0%, #020202 72%);
}
.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(120deg, transparent 0 48%, rgba(214,166,47,.08) 50%, transparent 52%);
  background-size: 110px 110px;
  pointer-events: none;
}
.offer-inner { width: min(1680px, calc(100% - 120px)); margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.section-title { margin: 0 0 30px; color: var(--gold-light); font-family: "Cinzel", Georgia, serif; font-size: 27px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 22px; }
.section-title::before,
.section-title::after { content: ""; width: clamp(55px, 8vw, 125px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-title::after { transform: rotate(180deg); }
.offer-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; }
.offer-card {
  min-height: 222px;
  padding: 30px 14px 22px;
  border: 1px solid rgba(214,166,47,.62);
  background: linear-gradient(145deg, rgba(31,27,20,.94), rgba(5,5,5,.98) 64%);
  box-shadow: inset 0 1px 0 rgba(255,225,143,.08), 0 15px 35px rgba(0,0,0,.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.offer-card::before { content: ""; position: absolute; top: -1px; left: 28%; right: 28%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); opacity: .8; transition: left .3s ease, right .3s ease; }
.offer-card::after { content: ""; position: absolute; width: 110px; height: 110px; top: 20px; border-radius: 50%; background: rgba(211,157,42,.07); filter: blur(16px); pointer-events: none; }
.offer-card:hover { transform: translateY(-7px); border-color: var(--gold-light); background: linear-gradient(145deg, rgba(46,37,22,.97), rgba(5,5,5,.99) 66%); box-shadow: inset 0 1px 0 rgba(255,225,143,.13), 0 20px 42px rgba(0,0,0,.5), 0 0 20px rgba(185,130,26,.08); }
.offer-card:hover::before { left: 12%; right: 12%; }
.offer-card img { width: 76px; height: 76px; object-fit: contain; margin-bottom: 14px; position: relative; z-index: 1; filter: drop-shadow(0 5px 9px rgba(214,166,47,.24)); }
.offer-card h3 { margin: 0 0 10px; color: var(--gold-light); font-family: "Cinzel", Georgia, serif; font-size: 15px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; position: relative; z-index: 1; }
.offer-card p { margin: 0; color: #c8c4bd; font-size: 12px; line-height: 1.5; position: relative; z-index: 1; }
.offer-button { min-width: 320px; min-height: 46px; margin-top: 28px; color: var(--gold-light); background: linear-gradient(100deg, rgba(5,5,5,.9), rgba(45,34,14,.42), rgba(5,5,5,.9)); box-shadow: inset 0 0 18px rgba(214,166,47,.05); letter-spacing: .5px; }
.offer-button:hover { box-shadow: 0 0 22px rgba(214,166,47,.14); }

body .gallery-dots-g { gap: 11px; margin-top: 14px; min-height: 14px; align-items: center; }
body .gallery-dot-g { width: 10px; height: 10px; background: #756541; box-shadow: 0 0 0 1px rgba(214,166,47,.15); }
body .gallery-dot-g.is-active { width: 36px; height: 11px; background: var(--gold); box-shadow: 0 0 12px rgba(214,166,47,.45); }
body .gallery-hint-g { margin: 12px 0 0; color: #b6aa92; font-size: 14px; letter-spacing: .15px; }
body .gallery-new { overflow: hidden; }
body .gold-gallery-stage { touch-action: pan-y; user-select: none; -webkit-user-select: none; cursor: grab; }
body .gold-gallery-stage:active { cursor: grabbing; }
body .gold-gallery-item, body .gold-gallery-item img { user-select: none; -webkit-user-select: none; -webkit-user-drag: none; }

body .contact-new { padding: 82px 0; background: radial-gradient(circle at 75% 20%,rgba(188,132,28,.14),transparent 32%),linear-gradient(135deg,#090806,#020202); }
body .contact-intro { font-size: 15px; line-height: 1.8; margin-bottom: 45px; }
body .contact-layout { grid-template-columns: 1.08fr .92fr; gap: 34px; }
body .contact-cards-new { gap: 18px; }
body .contact-cards-new article { min-height: 116px; padding: 24px 30px; gap: 24px; border-color: rgba(214,166,47,.52); background: linear-gradient(110deg,rgba(26,22,15,.96),rgba(6,6,6,.98)); box-shadow: inset 3px 0 0 rgba(214,166,47,.72),0 14px 35px rgba(0,0,0,.22); transition: transform .25s,border-color .25s; }
body .contact-cards-new article:hover { transform: translateX(6px); border-color: var(--gold-light); }
body .contact-cards-new article>span { width: 64px; height: 64px; border-color: rgba(214,166,47,.65); background: rgba(214,166,47,.06); }
body .contact-cards-new article>span img { width: 42px; height: 42px; object-fit: contain; }
body .contact-cards-new small { font-size: 12px; letter-spacing: 1.4px; }
body .contact-cards-new h3 { margin: 7px 0 5px; font: 500 19px "Cinzel",serif; }
body .contact-cards-new a, body .contact-cards-new p { color: #bdb7ab; font-size: 14px; }
body .contact-cards-new a:hover { color: var(--gold-light); }
body .contact-cta-new { padding: 38px 48px; border-color: rgba(214,166,47,.72); background: radial-gradient(circle at 50% 12%,rgba(195,139,32,.18),transparent 42%),#070706; box-shadow: inset 0 0 45px rgba(214,166,47,.04),0 20px 45px rgba(0,0,0,.3); }
body .contact-cta-new>img { width: 210px; height: 120px; }
body .hours-label { margin: 4px 0 20px; color: var(--gold-light); font: 500 18px "Cinzel",serif; letter-spacing: 1px; text-transform: uppercase; }
body .opening-row { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(214,166,47,.2); color: #ddd; font-size: 14px; }
body .opening-row span { color: var(--gold-light); }
body .opening-row.muted, body .opening-row.muted span { color: #777; }
body .contact-cta-new .button { margin-top: 28px; min-width: 190px; }

body .site-footer { padding-top: 70px; }
body .footer-grid-new { gap: 70px; }
body .footer-grid-new h4 { margin: 0 0 23px; font-size: 17px; letter-spacing: 1px; }
body .footer-grid-new a { margin: 14px 0; color: #c1bdb5; font-size: 15px; }
body .footer-grid-new p { color: #aaa59b; font-size: 15px; line-height: 1.9; }
body .footer-brand-new img { width: 220px; height: 125px; }
body .footer-brand-new p { max-width: 380px; }
body .footer-bottom-new { margin-top: 50px; padding-top: 24px; color: #999; font-size: 14px; }
body .footer-bottom-new a { color: #aaa; }
.prices-section { padding:78px 0; position:relative; overflow:hidden; border-block:1px solid rgba(214,166,47,.32); background:radial-gradient(circle at 12% 10%,rgba(177,123,24,.13),transparent 30%),linear-gradient(125deg,#0a0907,#020202 65%); }
.prices-section::before { content:"€"; position:absolute; right:5%; top:50%; transform:translateY(-50%); color:rgba(214,166,47,.035); font:500 420px/1 "Cinzel",serif; pointer-events:none; }
.prices-shell { position:relative; z-index:1; }
.prices-heading { display:grid; grid-template-columns:1fr 1fr; align-items:end; gap:80px; margin-bottom:42px; }
.prices-heading h2 { margin:0; font:500 clamp(32px,3vw,46px)/1.18 "Cinzel",serif; text-transform:uppercase; }
.prices-heading h2 span { color:var(--gold-light); }
.prices-heading>p { max-width:570px; margin:0 0 6px auto; color:#aaa59d; font-size:14px; line-height:1.8; }
.price-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px 22px; }
.price-item { min-height:105px; padding:23px 26px; display:flex; align-items:center; justify-content:space-between; gap:25px; position:relative; border:1px solid rgba(214,166,47,.32); background:linear-gradient(110deg,rgba(24,20,13,.82),rgba(5,5,5,.96)); transition:.28s; }
.price-item:hover { transform:translateY(-3px); border-color:rgba(242,208,106,.72); background:linear-gradient(110deg,rgba(38,30,16,.92),rgba(5,5,5,.98)); }
.price-item h3 { margin:0 0 7px; color:#f1eee8; font:500 16px "Cinzel",serif; text-transform:uppercase; }
.price-item p { margin:0; color:#8f8a81; font-size:12px; }
.price-item strong { color:var(--gold-light); font:600 23px "Cinzel",serif; white-space:nowrap; }
.price-item:last-child { grid-column:auto; width:auto; justify-self:stretch; }
.featured-price { border-color:rgba(242,208,106,.8); box-shadow:inset 3px 0 0 var(--gold),0 14px 35px rgba(0,0,0,.22); }
.price-badge { position:absolute; top:-10px; right:20px; padding:4px 12px; color:#050505; background:var(--gold); font-size:9px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.price-note { margin:22px 0 0; color:#77736c; font-size:11px; text-align:center; }
.prices-cta { min-width:190px; margin:27px auto 0; display:flex; width:fit-content; }
.stamp-card { max-width:800px; margin:30px auto 0; padding:23px 28px; display:flex; align-items:center; gap:22px; border:1px solid rgba(214,166,47,.5); background:linear-gradient(110deg,rgba(46,34,16,.8),rgba(8,8,7,.96)); }
.stamp-symbol { width:54px; height:54px; flex:0 0 54px; display:grid; place-items:center; border:1px solid var(--gold); border-radius:50%; color:var(--gold-light); font-size:28px; }
.stamp-card h3 { margin:0 0 7px; color:var(--gold-light); font:500 18px "Cinzel",serif; text-transform:uppercase; }
.stamp-card p { margin:0; color:#c8c2b8; font-size:13px; line-height:1.65; }
body .reviews-new { padding:82px 0 78px; border-block:1px solid rgba(214,166,47,.3); background:radial-gradient(circle at 50% 5%,rgba(192,137,29,.13),transparent 34%),linear-gradient(135deg,#090806,#020202 70%); }
body .reviews-new .section-kicker { margin-bottom:14px; letter-spacing:1.5px; }
body .reviews-new .gold-heading { font-size:clamp(32px,3.2vw,48px); letter-spacing:1px; }
body .rating-summary { width:fit-content; margin:24px auto 44px; padding:13px 22px; gap:16px; border:1px solid rgba(214,166,47,.38); border-radius:3px; background:rgba(9,8,6,.75); box-shadow:0 10px 30px rgba(0,0,0,.25); }
body .rating-summary>em { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:#fff; color:#4285f4; font:bold 20px Arial; font-style:normal; }
body .rating-summary>div { display:grid; grid-template-columns:auto auto; align-items:center; gap:12px; }
body .rating-summary strong { font-size:15px; }
body .rating-summary span { font-size:16px; text-shadow:0 0 12px rgba(214,166,47,.25); }
body .rating-summary small { padding-left:16px; border-left:1px solid rgba(214,166,47,.25); color:#aaa; line-height:1.5; text-align:left; }
body .review-wrap { position:relative; gap:22px; }
body .testimonial { min-height:250px; padding:32px 32px 28px; position:relative; overflow:hidden; border:1px solid rgba(214,166,47,.38); background:linear-gradient(145deg,rgba(26,22,15,.96),rgba(5,5,5,.99) 68%); box-shadow:inset 0 1px 0 rgba(255,226,151,.07),0 18px 45px rgba(0,0,0,.28); transition:transform .3s,border-color .3s,box-shadow .3s; }
body .testimonial::before { content:"“"; position:absolute; top:8px; right:20px; color:rgba(214,166,47,.14); font:90px/1 Georgia,serif; }
body .testimonial::after { content:""; position:absolute; top:-1px; left:30%; right:30%; height:2px; background:linear-gradient(90deg,transparent,var(--gold-light),transparent); }
body .testimonial:hover { transform:translateY(-6px); border-color:rgba(242,208,106,.75); box-shadow:0 24px 55px rgba(0,0,0,.42),0 0 20px rgba(214,166,47,.06); }
body .review-person { position:relative; z-index:1; gap:15px; }
body .review-person>b { width:50px; height:50px; border:1px solid var(--gold-light); background:linear-gradient(145deg,#efc95a,#b97e16); box-shadow:0 7px 18px rgba(214,166,47,.18); }
body .review-person strong { font-size:16px; }
body .review-person small { font-size:12px; }
body .testimonial .stars { margin:24px 0 13px; font-size:16px; }
body .testimonial p { position:relative; z-index:1; margin:0; color:#d0ccc4; font-size:14px; line-height:1.8; }
body .testimonial .review-person { margin-bottom:22px; }
body .testimonial .review-person a { font-size:16px; font-weight:700; }
body .testimonial .review-person a:hover { color:var(--gold-light); }
body .slider-arrow { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; background:rgba(8,8,8,.9); box-shadow:0 10px 25px rgba(0,0,0,.35); transition:.25s; }
body .slider-arrow:hover { color:#050505; background:var(--gold); transform:scale(1.06); }
body .rating-summary { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; }
body .rating-summary>.rating-main { display:flex; align-items:center; justify-content:center; gap:14px; text-align:center; }
body .rating-main>img { width:38px; height:38px; padding:8px; border:1px solid #d6d9dc; border-radius:50%; background:#fff; object-fit:contain; }
body .rating-main>strong { font-size:16px; }
body .rating-main>span { font-size:17px; color:var(--gold-light); letter-spacing:3px; }
body .rating-summary>small { padding:9px 0 0; border:0; border-top:1px solid rgba(214,166,47,.22); color:#aaa; text-align:center; line-height:1.4; }
body .contact-hours-head { display:flex; align-items:center; justify-content:center; gap:28px; margin-bottom:8px; }
body .contact-hours-head>img { width:155px; height:88px; object-fit:contain; }
body .contact-hours-head .hours-label { margin:0; }
body .contact-map { width:100%; min-height:210px; margin-top:22px; border:1px solid rgba(214,166,47,.42); background:radial-gradient(circle at 50% 20%,rgba(214,166,47,.10),transparent 45%),#0a0907; overflow:hidden; }
body .contact-map iframe { width:100%; height:250px; display:block; border:0; filter:none; }
body .map-consent { min-height:210px; padding:24px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
body .map-consent>img { width:38px; height:48px; object-fit:contain; margin-bottom:10px; }
body .map-consent strong { color:var(--gold-light); font:500 17px "Cinzel",serif; }
body .map-consent p { max-width:430px; margin:9px auto 16px; color:#8f8a80; font-size:12px; line-height:1.55; }
body .map-consent .button { min-width:145px; min-height:38px; margin:0; font-size:11px; }
body .contact-cta-new>.button-gold { margin-top:22px; }

@media (min-width: 981px) {
  body .gallery-new { padding: 56px 0 48px; }
  body .gallery-heading-new { margin-bottom: 18px; }
  body .gold-gallery-carousel { width: min(100%, 1500px); }
  body .gold-gallery-stage { height: 460px; perspective: 1500px; }
  body .gold-gallery-item { width: 500px; height: 400px; border-radius: 12px; box-shadow: 0 30px 75px rgba(0,0,0,.72); }
  body .gold-gallery-item.is-active { box-shadow: 0 30px 80px rgba(0,0,0,.78), 0 0 0 1px rgba(242,208,106,.25), 0 0 30px rgba(214,166,47,.10); }
  body .gold-gallery-item.is-prev, body .gold-gallery-item.is-next { opacity: .62; filter: brightness(.65); }
  body .gold-gallery-item.is-prev { transform: translate(-50%,-50%) translateX(-430px) rotateY(15deg) scale(.86); }
  body .gold-gallery-item.is-next { transform: translate(-50%,-50%) translateX(430px) rotateY(-15deg) scale(.86); }
  body .gold-gallery-item.is-far-prev, body .gold-gallery-item.is-far-next { opacity: .24; filter: brightness(.42); }
  body .gold-gallery-item.is-far-prev { transform: translate(-50%,-50%) translateX(-720px) rotateY(22deg) scale(.64); }
  body .gold-gallery-item.is-far-next { transform: translate(-50%,-50%) translateX(720px) rotateY(-22deg) scale(.64); }
  body .gallery-arrow-g { top: 205px; width: 50px; height: 50px; background: rgba(5,5,5,.88); box-shadow: 0 8px 24px rgba(0,0,0,.45); }
  body .gallery-prev-g { left: 3%; }
  body .gallery-next-g { right: 3%; }
  body .gallery-dots-g { margin-top: 0; }
}

.content-shell { width:min(1680px,calc(100% - 120px)); margin:auto; }
.reviews-new,.gallery-new,.contact-new { padding:75px 0; background:#050505; position:relative; }
.reviews-new,.contact-new { background:radial-gradient(circle at 50% 0,rgba(192,137,29,.12),transparent 42%),#050505; }
.centered,.gold-heading { text-align:center; }
.gold-heading { margin:0 0 14px; font:500 clamp(28px,3vw,42px)/1.2 "Cinzel",serif; color:#fff; text-transform:uppercase; }
.rating-summary { display:flex; justify-content:center; align-items:center; gap:14px; margin-bottom:38px; color:#ddd; }
.rating-summary span,.stars { color:var(--gold-light); letter-spacing:3px; }
.review-wrap { display:grid; grid-template-columns:42px 1fr 42px; align-items:center; gap:18px; }
.review-track { display:flex; gap:20px; overflow:auto; scrollbar-width:none; scroll-snap-type:x mandatory; }
.review-track::-webkit-scrollbar{display:none}.testimonial{flex:0 0 calc((100% - 40px)/3);min-height:210px;padding:28px;border:1px solid rgba(214,166,47,.48);background:linear-gradient(145deg,#17130d,#050505);scroll-snap-align:start}.review-person{display:flex;gap:13px;align-items:center}.review-person>b{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:var(--gold);color:#050505}.review-person span{display:grid;gap:4px}.review-person small{color:#999}.testimonial p{color:#ccc;line-height:1.7;font-size:13px}.stars{margin:20px 0 8px}.slider-arrow{width:42px;height:42px;border:1px solid var(--gold);background:#080808;color:var(--gold-light);font-size:28px;cursor:pointer}
.gallery-new{border-block:1px solid rgba(214,166,47,.3);background:linear-gradient(135deg,#080706,#020202)}.gallery-heading-new{display:flex;justify-content:space-between;align-items:end;gap:40px;margin-bottom:35px}.gallery-heading-new h2{margin:6px 0 0;font:500 clamp(28px,3vw,42px) "Cinzel",serif;text-transform:uppercase}.gallery-heading-new>p{max-width:500px;color:#aaa;line-height:1.7}.gallery-grid-new{display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:240px 240px;gap:16px}.gallery-photo{padding:0;border:1px solid rgba(214,166,47,.45);background:#000;overflow:hidden;cursor:pointer}.gallery-photo.featured{grid-column:span 2;grid-row:span 2}.gallery-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:.45s}.gallery-photo:hover img{transform:scale(1.05);filter:brightness(1.12)}
.lightbox{position:fixed;inset:0;z-index:100;background:rgba(0,0,0,.94);display:none;place-items:center;padding:40px}.lightbox.open{display:grid}.lightbox img{max-width:90vw;max-height:86vh;border:1px solid var(--gold)}.lightbox-close{position:absolute;right:28px;top:20px;background:none;border:0;color:var(--gold-light);font-size:42px;cursor:pointer}
.contact-intro{text-align:center;color:#aaa;margin:0 auto 38px;max-width:650px}.contact-layout{display:grid;grid-template-columns:1.15fr .85fr;gap:30px}.contact-cards-new{display:grid;gap:16px}.contact-cards-new article{display:flex;align-items:center;gap:22px;padding:22px 25px;border:1px solid rgba(214,166,47,.4);background:#0c0b09}.contact-cards-new article>span{width:50px;height:50px;display:grid;place-items:center;border:1px solid var(--gold);color:var(--gold-light);font-size:24px}.contact-cards-new small{color:var(--gold);text-transform:uppercase}.contact-cards-new h3{margin:5px 0;font-size:17px}.contact-cards-new p{margin:0;color:#999}.contact-cta-new{border:1px solid rgba(214,166,47,.65);background:radial-gradient(circle at 50% 25%,rgba(180,126,23,.15),transparent 45%),#070707;padding:35px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center}.contact-cta-new img{width:180px;height:105px;object-fit:contain}.contact-cta-new h3{font:500 24px "Cinzel",serif;margin:8px 0}.contact-cta-new p{color:#aaa}.contact-cta-new .button{margin-top:12px}
.site-footer{border-top:1px solid var(--gold);background:#020202;padding:55px 6vw 20px}.footer-grid-new{max-width:1680px;margin:auto;display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:55px}.footer-grid-new h4{color:var(--gold-light);font-family:"Cinzel",serif;text-transform:uppercase}.footer-grid-new a{display:block;color:#aaa;margin:11px 0;font-size:13px}.footer-grid-new a:hover{color:var(--gold-light)}.footer-grid-new p{color:#999;font-size:13px;line-height:1.8}.footer-brand-new img{width:190px;height:110px;object-fit:contain}.footer-brand-new p{max-width:320px}.footer-bottom-new{max-width:1680px;margin:40px auto 0;padding-top:20px;border-top:1px solid #1e1a12;display:flex;justify-content:space-between;color:#777;font-size:12px}.footer-bottom-new div{display:flex;gap:25px}

.gold-gallery-carousel{position:relative;width:min(100%,1100px);margin:auto}.gold-gallery-stage{position:relative;height:520px;perspective:1200px}.gold-gallery-item{position:absolute;top:50%;left:50%;width:320px;height:460px;padding:0;border:1px solid rgba(214,166,47,.5);border-radius:18px;overflow:hidden;background:#050505;color:#fff;opacity:0;pointer-events:none;transform:translate(-50%,-50%) scale(.6);transition:.55s;box-shadow:0 25px 70px #000;cursor:pointer}.gold-gallery-item img{width:100%;height:100%;object-fit:cover}.gold-gallery-item::after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(0,0,0,.92))}.gold-gallery-item span{position:absolute;z-index:1;left:22px;bottom:20px;color:var(--gold-light);font:500 13px "Cinzel",serif}.gold-gallery-item.is-active{z-index:4;opacity:1;pointer-events:auto;transform:translate(-50%,-50%)}.gold-gallery-item.is-prev,.gold-gallery-item.is-next{z-index:3;opacity:.45;pointer-events:auto;filter:brightness(.5)}.gold-gallery-item.is-prev{transform:translate(-50%,-50%) translateX(-300px) rotateY(18deg) scale(.88)}.gold-gallery-item.is-next{transform:translate(-50%,-50%) translateX(300px) rotateY(-18deg) scale(.88)}.gold-gallery-item.is-far-prev,.gold-gallery-item.is-far-next{z-index:2;opacity:.18;pointer-events:auto;filter:brightness(.3)}.gold-gallery-item.is-far-prev{transform:translate(-50%,-50%) translateX(-480px) rotateY(25deg) scale(.7)}.gold-gallery-item.is-far-next{transform:translate(-50%,-50%) translateX(480px) rotateY(-25deg) scale(.7)}.gallery-arrow-g{position:absolute;top:240px;z-index:8;width:46px;height:46px;border:1px solid var(--gold);border-radius:50%;background:#070707;color:var(--gold-light);font-size:30px;cursor:pointer}.gallery-prev-g{left:8px}.gallery-next-g{right:8px}.gallery-dots-g{display:flex;justify-content:center;gap:8px;margin-top:10px}.gallery-dot-g{width:7px;height:7px;padding:0;border:0;border-radius:20px;background:#62563d;cursor:pointer;transition:.3s}.gallery-dot-g.is-active{width:26px;background:var(--gold)}.gallery-hint-g{text-align:center;color:#817b70;font-size:12px}.lightbox-nav{position:absolute;top:50%;width:52px;height:70px;transform:translateY(-50%);border:1px solid var(--gold);background:#080808;color:var(--gold-light);font-size:38px;cursor:pointer}.lightbox-prev-g{left:25px}.lightbox-next-g{right:25px}
