@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,0..100;1,9..144,300..900,0..100&family=Inter+Tight:ital,wght@0,300..700;1,300..400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── VARIABLES ─── */
:root {
  --navy:     #0D1B28;
  --navy-mid: #142234;
  --navy-lt:  #1C3148;
  --cedar:    #8B5E3C;
  --brass:    #B07A3E;
  --amber:    #D4A24C;
  --cream:    #F5F0E8;
  --paper:    #FAF6F0;
  --charcoal: #0F0F0F;
  --smoke:    #1C1C1C;
  --gray:     #6B7280;
  --white:    #FDFAF6;
  --red:      #8B2020;

  --font-d: 'Fraunces', serif;
  --font-b: 'Inter Tight', sans-serif;
  --font-m: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--paper); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow--light { color: var(--amber); }
.eyebrow--cream { color: var(--cream); opacity: .6; }

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--cream); }
.section-title--amber { color: var(--amber); }

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 48ch;
}
.section-sub--light { color: var(--cream); opacity: .8; }

/* ─── BRASS UNDERLINE ─── */
.brass-ul {
  position: relative;
  display: inline-block;
}
.brass-ul::after {
  content: '';
  position: absolute;
  bottom: -.1em;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width .8s var(--ease);
}
.brass-ul.in-view::after { width: 100%; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-m);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
}
.btn--brass {
  background: var(--brass);
  color: var(--white);
}
.btn--brass:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(176,122,62,.35); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn--ghost-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--ghost-navy:hover { background: var(--navy); color: var(--cream); }

.btn--cream {
  background: var(--cream);
  color: var(--navy);
}
.btn--cream:hover { background: var(--white); transform: translateY(-2px); }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, padding .3s;
}
.site-header.scrolled {
  background: rgba(13,27,40,.97);
  box-shadow: 0 1px 0 rgba(176,122,62,.2);
  padding: .6rem 2rem;
}
.header__logo { height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.header__logo:hover { opacity: .85; }

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header__nav a {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,250,246,.75);
  transition: color .2s;
}
.header__nav a:hover { color: var(--amber); }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60;
  font-size: 2rem;
  color: var(--cream);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
  background: none; border: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.moosenashville.com/cdn/shop/files/Moose_Nashville_The_Experience.jpg?v=1678810057');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,27,40,.82) 0%,
    rgba(13,27,40,.55) 50%,
    rgba(13,27,40,.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero__eyebrow { margin-bottom: 1.2rem; }
.hero__title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 700;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 400;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(253,250,246,.75);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(253,250,246,.5);
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(212,162,76,.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5) translateY(50%); opacity: .4; }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(176,122,62,.25);
  border-bottom: 1px solid rgba(176,122,62,.25);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--cream);
}
.trust-item__num {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'wght' 600;
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
}
.trust-item__label {
  font-family: var(--font-m);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253,250,246,.6);
  line-height: 1.3;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--brass);
  overflow: hidden;
  padding: .75rem 0;
}
.ticker__track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 2rem;
  flex-shrink: 0;
}
.ticker__dot {
  color: var(--navy);
  opacity: .5;
  padding: 0 .5rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section--full { max-width: none; padding: 0; }
.section--wide { max-width: 1440px; }
.section-header {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.section-header--center { align-items: center; text-align: center; }
.section-header--center .section-sub { max-width: 52ch; margin: 0 auto; }

/* ─── SERVICES PREVIEW ─── */
.services-bg {
  background: var(--paper);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(13,27,40,.1);
  border: 1.5px solid rgba(13,27,40,.1);
}
.svc-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background .2s;
}
.svc-card:hover { background: var(--cream); }
.svc-card__num {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--brass);
  margin-bottom: .8rem;
}
.svc-card__name {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60, 'wght' 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.svc-card__desc {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.svc-card__price {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'wght' 700;
  font-size: 1.6rem;
  color: var(--cedar);
}
.svc-card--featured {
  background: var(--navy);
  grid-column: span 1;
}
.svc-card--featured .svc-card__num { color: var(--amber); opacity: .7; }
.svc-card--featured .svc-card__name { color: var(--cream); }
.svc-card--featured .svc-card__desc { color: rgba(253,250,246,.6); }
.svc-card--featured .svc-card__price { color: var(--amber); }
.svc-card--featured:hover { background: var(--navy-lt); }

/* ─── LOUNGE SECTION ─── */
.lounge {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.lounge__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lounge__photo {
  position: relative;
  overflow: hidden;
}
.lounge__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.9);
  transition: transform 8s ease-out, filter .4s;
}
.lounge:hover .lounge__photo img { transform: scale(1.03); filter: brightness(.85) saturate(1); }
.lounge__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--charcoal) 100%);
}
.lounge__content {
  padding: 5rem 4rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.lounge__title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 55, 'wght' 700;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--cream);
  line-height: 1.05;
}
.lounge__title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 400;
}
.lounge__body {
  font-size: 1rem;
  color: rgba(245,240,232,.72);
  line-height: 1.8;
  max-width: 44ch;
}
.lounge__perks {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: .5rem 0;
}
.lounge__perk {
  font-family: var(--font-m);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lounge__perk::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--amber);
  opacity: .6;
}

/* ─── STORY ─── */
.story {
  background: var(--navy);
  padding: 6rem 2rem;
}
.story__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story__content { display: flex; flex-direction: column; gap: 1.2rem; }
.story__title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 55, 'wght' 700;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--cream);
  line-height: 1.1;
}
.story__body {
  font-size: 1rem;
  color: rgba(245,240,232,.72);
  line-height: 1.85;
}
.story__facts {
  display: flex;
  gap: 2rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.story__fact-num {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'wght' 700;
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
}
.story__fact-label {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
  margin-top: .2rem;
}
.story__photo {
  position: relative;
}
.story__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(176,122,62,.2);
}
.story__photo::before {
  content: 'EST. 2009';
  position: absolute;
  top: -1rem; right: -1rem;
  z-index: 2;
  background: var(--brass);
  color: var(--navy);
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .15em;
  padding: .7rem 1.2rem;
}

/* ─── PRODUCTS TEASER ─── */
.products-teaser { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.prod-card {
  background: var(--paper);
  border: 1px solid rgba(13,27,40,.08);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(13,27,40,.12); }
.prod-card__img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: #f0ece4;
}
.prod-card__body { padding: 1.5rem; }
.prod-card__name {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60, 'wght' 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.prod-card__sub { font-size: .85rem; color: var(--gray); margin-bottom: .8rem; }
.prod-card__price {
  font-family: var(--font-m);
  font-size: .8rem;
  color: var(--brass);
  letter-spacing: .05em;
}
.products-cta { margin-top: 3rem; text-align: center; }

/* ─── TEAM PREVIEW ─── */
.team-preview { background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card { display: flex; flex-direction: column; }
.team-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy-lt);
}
.team-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.2);
  transition: transform .5s var(--ease), filter .3s;
}
.team-card:hover .team-card__img { transform: scale(1.04); filter: grayscale(0); }
.team-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,40,.85) 0%, transparent 60%);
  padding: 1.5rem 1.2rem .8rem;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.team-card:hover .team-card__overlay { transform: translateY(0); }
.team-card__overlay-text {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
}
.team-card__body { padding: 1rem 0 0; }
.team-card__name {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60, 'wght' 600;
  font-size: 1.15rem;
  color: var(--navy);
}
.team-card__role {
  font-family: var(--font-m);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: .2rem;
}
.team-card--featured .team-card__img-wrap { aspect-ratio: 3/4; grid-row: span 1; }

/* ─── REVIEWS ─── */
.reviews-bg { background: var(--navy); padding: 6rem 2rem; }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,.06);
  margin-top: 3rem;
  border: 1.5px solid rgba(255,255,255,.06);
}
.review-card {
  background: var(--navy);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s;
}
.review-card:hover { background: var(--navy-mid); }
.review-card__stars { color: var(--amber); letter-spacing: .15em; font-size: .9rem; }
.review-card__body {
  font-size: .95rem;
  color: rgba(245,240,232,.8);
  line-height: 1.75;
  font-style: italic;
}
.review-card__author {
  font-family: var(--font-m);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: auto;
}
.review-card__source { color: rgba(245,240,232,.35); font-size: .65rem; margin-top: .2rem; font-family: var(--font-m); letter-spacing: .1em; }

/* ─── BOOK CTA ─── */
.book-cta {
  background: var(--cedar);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cta::before {
  content: 'BOOK';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'wght' 900;
  font-size: 20vw;
  color: rgba(0,0,0,.07);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.book-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.book-cta__title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 55, 'wght' 700;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.book-cta__sub { color: rgba(245,240,232,.75); margin-bottom: 2.5rem; font-size: 1rem; }
.book-cta__hours {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hours-item { display: flex; flex-direction: column; gap: .2rem; }
.hours-item__day { font-family: var(--font-m); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,240,232,.55); }
.hours-item__time { font-family: var(--font-d); font-variation-settings: 'opsz' 72, 'SOFT' 40; font-size: 1rem; color: var(--cream); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(176,122,62,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 55, 'wght' 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 1rem;
}
.page-hero__sub { font-size: 1.05rem; color: rgba(245,240,232,.65); max-width: 52ch; }

/* ─── SERVICES PAGE ─── */
.svc-section { padding: 5rem 2rem; background: var(--paper); }
.svc-section + .svc-section { border-top: 1px solid rgba(13,27,40,.1); }
.svc-section__inner { max-width: 1280px; margin: 0 auto; }
.svc-category-label {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(176,122,62,.25);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.svc-category-label::after { content: ''; flex: 1; height: 1px; background: rgba(176,122,62,.15); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(13,27,40,.07);
}
.svc-row:last-child { border-bottom: none; }
.svc-row__name {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60, 'wght' 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.svc-row__includes {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 56ch;
}
.svc-row__includes li { display: flex; align-items: baseline; gap: .5rem; }
.svc-row__includes li::before { content: '·'; color: var(--brass); font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.svc-row__price-col { text-align: right; min-width: 80px; }
.svc-row__price {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'wght' 700;
  font-size: 1.8rem;
  color: var(--cedar);
  white-space: nowrap;
}
.svc-row__price-note { font-size: .78rem; color: var(--gray); font-family: var(--font-m); letter-spacing: .05em; }
.svc-row--featured { background: var(--navy); margin: 1rem -2rem; padding: 2rem 2rem; }
.svc-row--featured .svc-row__name { color: var(--cream); }
.svc-row--featured .svc-row__includes { color: rgba(245,240,232,.65); }
.svc-row--featured .svc-row__includes li::before { color: var(--amber); }
.svc-row--featured .svc-row__price { color: var(--amber); }
.svc-row--featured .svc-row__price-note { color: rgba(245,240,232,.45); }

/* ─── EXPERIENCE PAGE ─── */
.exp-section {
  padding: 6rem 2rem;
}
.exp-section:nth-child(even) { background: var(--navy); }
.exp-section:nth-child(odd) { background: var(--paper); }
.exp-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.exp-section__inner--reverse { direction: rtl; }
.exp-section__inner--reverse > * { direction: ltr; }
.exp-section--full-dark { background: var(--charcoal); padding: 5rem 2rem; }
.exp-section--full-dark .exp-section__inner { display: block; }
.exp-photo {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.exp-content { display: flex; flex-direction: column; gap: 1.2rem; }
.exp-title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 55, 'wght' 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
}

/* ─── TEAM PAGE ─── */
.team-page { padding: 5rem 2rem; background: var(--paper); }
.team-page__inner { max-width: 1280px; margin: 0 auto; }
.team-featured {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(13,27,40,.1);
}
.team-featured__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.team-featured__content { display: flex; flex-direction: column; gap: 1rem; }
.team-featured__name {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 144, 'SOFT' 55, 'wght' 700;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--navy);
}
.team-featured__role {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brass);
}
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ─── PRODUCTS PAGE ─── */
.products-page { padding: 5rem 2rem; background: var(--paper); }
.products-page__inner { max-width: 1280px; margin: 0 auto; }
.prod-category { margin-bottom: 4rem; }
.prod-category__title {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(176,122,62,.25);
  margin-bottom: 2rem;
}
.prod-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ─── CONTACT PAGE ─── */
.contact-page { padding: 5rem 2rem; background: var(--paper); }
.contact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-book { background: var(--navy); padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-book__title {
  font-family: var(--font-d);
  font-variation-settings: 'opsz' 72, 'SOFT' 60, 'wght' 700;
  font-size: 2rem;
  color: var(--cream);
}
.contact-book__body { color: rgba(245,240,232,.7); font-size: .95rem; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; flex-direction: column; gap: .4rem; }
.contact-info-item__label { font-family: var(--font-m); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--brass); }
.contact-info-item__val { font-size: 1rem; color: var(--navy); font-family: var(--font-d); font-variation-settings: 'opsz' 72, 'SOFT' 40'; font-size: 1.15rem; }
.contact-hours-table { width: 100%; border-collapse: collapse; }
.contact-hours-table td { padding: .5rem 0; font-size: .9rem; color: var(--navy); border-bottom: 1px solid rgba(13,27,40,.06); }
.contact-hours-table td:last-child { text-align: right; color: var(--gray); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(176,122,62,.2);
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,.08);
}
.footer__logo { height: 40px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer__tagline { font-size: .88rem; color: rgba(245,240,232,.55); line-height: 1.7; max-width: 30ch; }
.footer__heading { font-family: var(--font-m); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .88rem; color: rgba(245,240,232,.6); transition: color .2s; }
.footer__links a:hover { color: var(--amber); }
.footer__social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,240,232,.15);
  border-radius: 50%;
  color: rgba(245,240,232,.6);
  font-size: .8rem;
  transition: border-color .2s, color .2s;
}
.footer__social a:hover { border-color: var(--amber); color: var(--amber); }
.footer__bottom {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: rgba(245,240,232,.3);
  font-family: var(--font-m);
  letter-spacing: .05em;
}
.footer__bottom a { color: rgba(245,240,232,.45); transition: color .2s; }
.footer__bottom a:hover { color: var(--amber); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brass-ul::after { width: 100%; transition: none; }
  .hero__bg { transform: none; transition: none; }
  .ticker__track { animation: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .lounge__inner { grid-template-columns: 1fr; }
  .lounge__photo { aspect-ratio: 16/9; }
  .lounge__photo::after { background: linear-gradient(to top, var(--charcoal) 0%, transparent 60%); }
  .story__inner { grid-template-columns: 1fr; gap: 3rem; }
  .exp-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .exp-section__inner--reverse { direction: ltr; }
  .team-featured { grid-template-columns: 1fr; }
  .team-featured__img { max-height: 400px; }
  .contact-inner { grid-template-columns: 1fr; }
  .prod-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav, .header__actions .btn--ghost { display: none; }
  .burger { display: flex; }
  .hero { padding-bottom: 5rem; }
  .hero__scroll { display: none; }
  .trust-bar { gap: 1.5rem; padding: 1rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: span 1; }
  .lounge__content { padding: 3rem 1.5rem; }
  .story__facts { gap: 1.5rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .prod-full-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-full-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .book-cta__hours { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 1.5rem; }
  .svc-row { grid-template-columns: 1fr; gap: .75rem; }
  .svc-row__price-col { text-align: left; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .prod-full-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-full-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__title { font-size: 2.8rem; }
}
