/* ── HERO LOGO (right column) ── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.hero-logo-img {
  width: clamp(300px, 38vw, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(200,16,46,0.65)) drop-shadow(0 0 20px rgba(200,146,42,0.4));
  transition: filter 0.4s, transform 0.4s;
  animation: logo-float 6s ease-in-out infinite;
}
.hero-logo-img:hover {
  filter: drop-shadow(0 0 72px rgba(200,16,46,0.85)) drop-shadow(0 0 32px rgba(200,146,42,0.6));
  transform: scale(1.04) rotate(-1deg);
  animation-play-state: paused;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

/* ── POSTERS SHOWCASE ── */
#posters {
  background: var(--c-deep);
  padding: var(--sp-xl) 0;
  overflow: hidden;
}
#posters .sec-header { text-align: center; margin-bottom: var(--sp-lg); }
#posters .sec-rule   { margin: 1.2rem auto; }

.posters-scroll {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(1.2rem, 4vw, 3.5rem) 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-red) var(--c-surface);
}
.posters-scroll::-webkit-scrollbar { height: 4px; }
.posters-scroll::-webkit-scrollbar-track { background: var(--c-surface); }
.posters-scroll::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 2px; }

.poster-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: clamp(240px, 32vw, 380px);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-ridge);
  position: relative;
  cursor: none;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
}
.poster-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--c-gold-dim);
  box-shadow: 0 20px 50px rgba(7,8,16,0.7);
}
.poster-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.poster-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem 0.9rem;
  background: linear-gradient(to top, rgba(7,8,16,0.9) 0%, transparent 100%);
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-med), transform var(--dur-med);
}
.poster-card:hover .poster-card-label { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
#about {
  background: var(--c-deep);
  padding: var(--sp-xl) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-text { }
.about-text .sec-overline { }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-gold);
}
.about-stat span {
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-muted);
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 100%);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-red-glow) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
/* Double border frame */
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1.5px solid var(--c-gold-dim);
  border-radius: var(--r-sm);
  z-index: -1;
  pointer-events: none;
}

/* ── SERVICES ── */
#services {
  background: var(--c-void);
  padding: var(--sp-xl) 0;
}
#services .sec-header { text-align: center; margin-bottom: var(--sp-lg); }
#services .sec-rule { margin: 1.2rem auto; }


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: var(--sp-lg);
}

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-ridge);
  border-left: 2px solid var(--c-ember);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  box-sizing: border-box;
  cursor: none;
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med),
              box-shadow var(--dur-med);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(200,16,46,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--dur-med);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-gold);
  border-left-color: var(--c-gold);
  box-shadow: 0 20px 48px rgba(7,8,16,0.65), 0 0 0 1px var(--c-gold-dim);
}
.service-card:hover::before { opacity: 1; }

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.service-icon {
  color: var(--c-ember);
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  transition: filter var(--dur-med), transform var(--dur-med), color var(--dur-med);
}
.service-card:hover .service-icon {
  color: var(--c-gold);
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.5));
  transform: scale(1.1);
}

.service-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-ridge);
  border-radius: 100px;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  align-self: flex-start;
  margin-top: 0.1rem;
}
.service-card:hover .service-tag {
  color: var(--c-gold);
  border-color: var(--c-gold-dim);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-cream);
  line-height: 1.2;
}
.service-desc {
  font-size: var(--t-small);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.6;
  flex: 1;
}
/* ── Service card click-to-reveal overlay ── */
.service-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: rgba(7, 8, 16, 0.91);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.service-card.active .service-card-overlay {
  opacity: 1;
  pointer-events: all;
}
.service-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: var(--c-ember);
  color: var(--c-cream);
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.service-overlay-cta:hover {
  background: var(--c-ember-hover);
  transform: scale(1.03);
}
.service-overlay-dismiss {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ── BUILD YOUR CUT — Esquire-style 4-step wizard ── */
@keyframes byc-panel-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

#cut-explorer {
  background: var(--c-surface);
  border: 1px solid var(--c-ridge);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.byc-header { margin-bottom: 2rem; }
.byc-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 0.3rem;
}
.byc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin: 0;
}

/* Step indicators */
.byc-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.2rem;
}
.byc-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}
.byc-step-n {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--c-ridge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-muted);
  transition: background var(--dur-med), border-color var(--dur-med), color var(--dur-med);
  flex-shrink: 0;
}
.byc-step span {
  font-family: var(--font-body);
  font-size: var(--t-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--dur-med);
  white-space: nowrap;
}
.byc-step.active .byc-step-n {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.byc-step.active span { color: var(--c-cream); }
.byc-step.done .byc-step-n {
  background: var(--c-void);
  border-color: var(--c-red);
  color: var(--c-red);
}
.byc-step.done span { color: var(--c-muted); }
.byc-step-sep {
  flex: 1;
  height: 1px;
  background: var(--c-ridge);
  margin: 0 0.75rem;
  min-width: 20px;
}

/* Panels */
.byc-panel { display: none; }
.byc-panel.active {
  display: block;
  animation: byc-panel-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.byc-q {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--c-cream);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.byc-sub {
  font-family: var(--font-body);
  font-size: var(--t-small);
  color: var(--c-muted);
  margin: 0 0 1.6rem;
}

/* Fade grid */
.byc-fade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.byc-fade-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.2rem 0.8rem 1rem;
  background: var(--c-void);
  border: 1.5px solid var(--c-ridge);
  border-radius: var(--r-md);
  cursor: none;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.byc-fade-opt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.22s;
}
.byc-fade-opt:hover { border-color: var(--c-red); transform: translateY(-3px); }
.byc-fade-opt:hover::before { opacity: 1; }
.byc-fade-opt.selected {
  border-color: var(--c-red);
  background: rgba(200,16,46,0.07);
}
.byc-fade-opt.selected::before { opacity: 1; }

.byc-fade-bar {
  width: 28px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    to top,
    var(--c-red) 0%,
    var(--c-red) var(--fade-h),
    var(--c-ridge) var(--fade-h),
    var(--c-ridge) 100%
  );
  position: relative;
}
.byc-fade-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(200,16,46,0.35);
  opacity: 0;
  transition: opacity 0.22s;
}
.byc-fade-opt:hover .byc-fade-bar::after,
.byc-fade-opt.selected .byc-fade-bar::after { opacity: 1; }

.byc-fade-lbl {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cream);
}
.byc-fade-desc {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--c-muted);
  text-align: center;
}

/* Length slider */
.byc-slider-wrap {
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}
.byc-slider-val {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--c-cream);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 2.4rem;
}
.byc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--c-red) 0%, var(--c-red) var(--pct, 35%), var(--c-ridge) var(--pct, 35%), var(--c-ridge) 100%);
  outline: none;
  cursor: none;
  margin-bottom: 0.75rem;
}
.byc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.2), 0 0 16px rgba(200,16,46,0.55);
  cursor: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.byc-slider:active::-webkit-slider-thumb {
  transform: scale(1.25);
  box-shadow: 0 0 0 5px rgba(200,16,46,0.15), 0 0 28px rgba(200,16,46,0.7);
}
.byc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Add-on grid */
.byc-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.byc-addon-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0.75rem 1rem;
  background: var(--c-void);
  border: 1.5px solid var(--c-ridge);
  border-radius: var(--r-md);
  cursor: none;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  text-align: center;
}
.byc-addon-opt:hover { border-color: var(--c-red); transform: translateY(-2px); }
.byc-addon-opt.selected {
  border-color: var(--c-red);
  background: rgba(200,16,46,0.07);
}
.byc-addon-opt svg { color: var(--c-red); flex-shrink: 0; }
.byc-addon-name {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cream);
}
.byc-addon-price {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-red);
}

/* Result card */
.byc-result-card {
  background: var(--c-void);
  border: 1.5px solid var(--c-red);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
}
.byc-result-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.byc-result-label {
  font-family: var(--font-body);
  font-size: var(--t-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}
.byc-result-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.byc-result-price {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.byc-result-desc {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--c-muted);
  margin: 0 0 1.2rem;
  line-height: 1.6;
  max-width: 500px;
}
.byc-result-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  min-height: 0;
}
.byc-addon-tag {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--c-red);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--c-red);
  background: rgba(200,16,46,0.06);
}

/* Navigation buttons */
.byc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
}
.byc-next {
  padding: 0.65rem 1.6rem;
  background: var(--c-red);
  border: none;
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.byc-next:hover:not(:disabled) { background: var(--c-ember-hover); transform: translateY(-2px); }
.byc-next:disabled { opacity: 0.35; cursor: not-allowed; }
.byc-back {
  padding: 0.65rem 1.1rem;
  background: transparent;
  border: 1.5px solid var(--c-ridge);
  border-radius: var(--r-sm);
  color: var(--c-muted);
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
}
.byc-back:hover { border-color: var(--c-red); color: var(--c-cream); }

/* Result action buttons */
.byc-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.byc-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  background: transparent;
  border: 1.5px solid var(--c-ridge);
  border-radius: var(--r-sm);
  color: var(--c-muted);
  font-family: var(--font-body);
  font-size: var(--t-small);
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
}
.byc-copy:hover { border-color: var(--c-red); color: var(--c-cream); }
.byc-copy.copied { border-color: var(--c-red); color: var(--c-red); }
.byc-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  background: var(--c-red);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
}
.byc-call:hover { background: var(--c-ember-hover); transform: translateY(-2px); }

/* ── EXPERIENCE ── */
#experience {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--c-void);
  padding: var(--sp-xl) 0;
  overflow: hidden;
}
.experience-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/experience-bg-c.png');
  background-image: image-set(url('../assets/experience-bg-c.webp') type('image/webp'), url('../assets/experience-bg-c.png') type('image/png'));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.45) saturate(0.7);
}
.experience-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,8,16,0.55) 0%,
    rgba(7,8,16,0.35) 40%,
    rgba(7,8,16,0.7) 100%);
}

/* Centered body */
.experience-body {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 820px;
  padding: 0 clamp(1.2rem, 4vw, 3.5rem);
  align-self: center;
  margin: 0 auto;
}
.experience-body .sec-overline { display: block; margin-bottom: 1rem; }

.experience-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  color: var(--c-cream);
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.experience-headline::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: var(--c-gold);
  margin: 1.2rem auto 0;
}

.experience-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--c-gold-light);
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  max-width: 46ch;
  position: relative;
}
.experience-quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -0.55em;
  color: var(--c-gold-dim);
  margin-right: 0.15em;
  font-family: Georgia, serif;
}

/* Three pillars — horizontal strip */
.experience-pillars {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.experience-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0 clamp(2rem, 5vw, 5rem);
}
.experience-pillar .pillar-icon { color: var(--c-gold); }
.experience-pillar strong {
  font-family: var(--font-heading);
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--c-cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.experience-pillar p {
  font-size: var(--t-small);
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 200px;
}
.experience-divider {
  width: 1px;
  height: 80px;
  background: var(--c-ridge);
  align-self: center;
  flex-shrink: 0;
}

/* ── STATS ── */
#stats {
  background: var(--c-surface);
  border-top: 2px solid var(--c-gold-dim);
  border-bottom: 2px solid var(--c-gold-dim);
  padding: var(--sp-md) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--c-ridge);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--c-gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 300;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 0.4rem;
}

/* ── VIDEO ── */
#video {
  background: var(--c-void);
  padding: var(--sp-xl) 0;
}
#video .sec-header { text-align: center; margin-bottom: var(--sp-lg); }
#video .sec-rule { margin: 1.2rem auto; }
.video-stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
/* L-shaped corner accents */
.video-frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
}
.video-frame::before,
.video-frame::after,
.video-frame-corner-bl,
.video-frame-corner-tr {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--c-gold);
  border-style: solid;
  z-index: 3;
}
.video-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.video-frame::after  { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.video-frame-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.video-frame-corner-tr { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.video-main {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  background: var(--c-void);
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(7,8,16,0.55);
  backdrop-filter: blur(2px);
  z-index: 2;
  cursor: none;
  transition: background var(--dur-med), opacity 0.35s ease;
}
.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-play-overlay:hover { background: rgba(7,8,16,0.35); }
.play-btn-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--c-ember);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}
.video-play-overlay:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(196,92,26,0.5);
}
.play-btn-circle svg { color: white; margin-left: 4px; }
.video-label {
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-cream);
}
/* Custom video player controls */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(to top, rgba(7,8,16,0.92) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
}
.video-controls.visible,
.video-frame:hover .video-controls { opacity: 1; }

.vc-play-pause,
.vc-mute,
.vc-fullscreen {
  background: none;
  border: none;
  color: var(--c-cream);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color var(--dur-fast);
}
.vc-play-pause:hover,
.vc-mute:hover,
.vc-fullscreen:hover { color: var(--c-gold); }

.vc-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  margin: 0 0.3rem;
}
.vc-progress-bar {
  height: 100%;
  background: var(--c-gold);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}
.vc-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--c-cream);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.1s;
}
.vc-progress:hover .vc-progress-thumb { transform: translate(-50%, -50%) scale(1.3); }

.vc-time {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 60px;
  text-align: right;
}

/* ── FAQ ── */
#faq {
  background: var(--c-deep);
  padding: var(--sp-xl) 0;
}
#faq .sec-header { text-align: center; margin-bottom: var(--sp-lg); }
#faq .sec-rule { margin: 1.2rem auto; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-ridge);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-med);
}
.faq-item.open { border-color: var(--c-gold-dim); border-left: 3px solid var(--c-gold); }
.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--c-cream);
}
.faq-question {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq-icon {
  color: var(--c-gold);
  flex-shrink: 0;
  width: 18px; height: 18px;
  transition: transform var(--dur-med) var(--ease-out);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--c-gold);
  border-radius: 2px;
}
.faq-icon::before { width: 100%; height: 1.5px; top: 50%; transform: translateY(-50%); }
.faq-icon::after { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); transition: transform var(--dur-med) var(--ease-out); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-body {
  height: 0;
  overflow: hidden;
}
.faq-answer {
  padding: 0 1.5rem 1.3rem;
  font-size: var(--t-small);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
}
.faq-answer a { color: var(--c-gold); text-decoration: underline; }

/* ── CONTACT ── */
#contact {
  background: var(--c-surface);
  border-top: 2px solid var(--c-gold-dim);
  padding: var(--sp-xl) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info .sec-title { margin-bottom: 1.5rem; }
.contact-address {
  font-style: normal;
  margin-bottom: 1.5rem;
}
.contact-address p {
  font-size: var(--t-body);
  color: var(--c-muted);
  line-height: 1.8;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-gold-light);
  margin-bottom: 1.5rem;
  transition: color var(--dur-fast);
}
.contact-phone:hover { color: var(--c-gold); }
.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.contact-hours {
  background: var(--c-void);
  border: 1px solid var(--c-ridge);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hours-title {
  padding: 0.8rem 1.2rem;
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-ridge);
  background: var(--c-surface);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--c-ridge); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today {
  background: var(--c-gold-dim);
}
.hours-table tr.today td { color: var(--c-gold-light); }
.hours-table td {
  padding: 0.7rem 1.2rem;
  font-size: var(--t-small);
  color: var(--c-muted);
}
.hours-table td:first-child {
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--t-label);
  color: var(--c-cream);
}
.hours-table td:last-child { text-align: right; }

/* Live status in contact */
.contact-status {
  margin-top: 1rem;
}

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-ridge);
  box-shadow: 0 20px 60px rgba(7,8,16,0.5);
}
.contact-map iframe { display: block; }

/* ── REVIEWS ── */
#reviews {
  background: var(--c-void);
  padding: var(--sp-xl) 0;
  overflow: hidden;
}
#reviews .sec-header { text-align: center; margin-bottom: var(--sp-md); }
#reviews .sec-rule { margin: 1.2rem auto; }

.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-lg);
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,146,42,0.07) 0%, transparent 70%);
  padding: 2rem;
}
.rating-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--c-gold);
  line-height: 1;
}
.rating-stars { color: var(--c-gold); font-size: 1.1rem; letter-spacing: 3px; }
.rating-count {
  font-size: var(--t-small);
  font-weight: 300;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
}
.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-ridge);
  border-top: 3px solid var(--c-gold);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  min-width: clamp(280px, 45vw, 420px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--c-gold); font-size: 0.85rem; letter-spacing: 2px; }
.review-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--c-cream);
  line-height: 1.65;
  flex: 1;
}
.review-author {
  font-family: var(--font-heading);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-gold);
}
.review-date {
  font-size: var(--t-label);
  color: var(--c-muted);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-ridge);
  cursor: none;
  transition: background var(--dur-med), transform var(--dur-med);
}
.reviews-dot.active { background: var(--c-gold); transform: scale(1.5); }

/* ── GALLERY ── */
/* in gallery.css */

/* ── FOOTER ── */
footer {
  background: var(--c-void);
  border-top: 2px solid var(--c-gold-dim);
  padding: var(--sp-lg) 0 calc(var(--sp-lg) + env(safe-area-inset-bottom));
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-muted);
}
.footer-tagline .warmest { color: var(--c-gold); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.footer-links a {
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--c-gold); }
.footer-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--c-ridge);
  border-radius: 50%;
  color: var(--c-muted);
  transition: border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.footer-social-link:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: var(--t-label);
  color: var(--c-muted);
  letter-spacing: 0.05em;
}
.footer-address-line {
  font-size: var(--t-label);
  color: var(--c-muted);
}
