/* ============================================================
   Stay Sharp Men's Grooming Studio
   Editorial luxury: espresso black, warm cream, brushed brass
   ============================================================ */

:root {
  --bg: #0c0a08;
  --bg-2: #141009;
  --bg-card: #161209;
  --cream: #f2ebdf;
  --cream-60: rgba(242, 235, 223, 0.6);
  --cream-40: rgba(242, 235, 223, 0.4);
  --hairline: rgba(242, 235, 223, 0.08);
  --hairline-strong: rgba(242, 235, 223, 0.14);
  --brass: #c8a165;
  --brass-bright: #e3c28d;
  --brass-dim: rgba(200, 161, 101, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --serif: "Fraunces", georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brass); color: var(--bg); }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}

h2 em, h1 em, .word-italic {
  font-style: italic;
  font-weight: 340;
  color: var(--brass-bright);
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-60);
  background: rgba(242, 235, 223, 0.03);
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px var(--brass);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.78rem 0.78rem 0.78rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
  will-change: transform;
}

.btn:active { transform: scale(0.97); }

.btn-brass {
  background: linear-gradient(135deg, var(--brass-bright), var(--brass) 55%, #a8814b);
  color: #1a1410;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 16px 40px -16px rgba(200, 161, 101, 0.45);
}

.btn-brass:hover { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 22px 56px -14px rgba(200, 161, 101, 0.6); }

.btn-ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--cream);
  background: rgba(242, 235, 223, 0.03);
  padding-right: 1.5rem;
}

.btn-ghost:hover { background: rgba(242, 235, 223, 0.07); border-color: rgba(242, 235, 223, 0.25); }

.btn-ghost .btn-orb { background: rgba(242, 235, 223, 0.08); color: var(--cream); }

.btn-orb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(12, 10, 8, 0.18);
  color: #1a1410;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.6s var(--ease);
}

.btn-orb svg { width: 11px; height: 11px; }

.btn:hover .btn-orb { transform: translate(2px, -2px) scale(1.06); }

.btn-lg { padding: 0.95rem 0.95rem 0.95rem 1.8rem; font-size: 1rem; }
.btn-lg .btn-orb { width: 34px; height: 34px; }
.btn-xl { padding: 1.15rem 1.15rem 1.15rem 2.2rem; font-size: 1.08rem; }
.btn-xl .btn-orb { width: 40px; height: 40px; }
.btn-ghost.btn-lg, .btn-ghost.btn-xl { padding-right: 1.8rem; }

/* ---------- floating island nav ---------- */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1.4rem 1rem 0;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.55rem 0.55rem 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(12, 10, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.9);
  transition: transform 0.7s var(--ease), background 0.7s var(--ease);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.nav-mark { width: 20px; height: 20px; color: var(--brass); }

.nav-links { display: flex; gap: 1.6rem; }

.nav-links a {
  color: var(--cream-60);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.5s var(--ease);
}

.nav-links a:hover { color: var(--cream); }

.nav-cta { font-size: 0.85rem; padding: 0.6rem 0.6rem 0.6rem 1.2rem; }
.nav-cta .btn-orb { width: 26px; height: 26px; }

.nav-burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  cursor: pointer;
}

.nav-burger span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.4px;
  background: var(--cream);
  transition: transform 0.55s var(--ease), top 0.55s var(--ease);
}

.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 23px; }

body.menu-open .nav-burger span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { top: 19.5px; transform: rotate(-45deg); }

/* ---------- overlay menu ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 10, 8, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.menu-open .overlay { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.overlay-inner { display: flex; flex-direction: column; gap: 0.4rem; padding: 2rem; width: min(540px, 100%); }

.overlay-link {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), color 0.5s var(--ease);
}

.overlay-link em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brass);
}

.overlay-link:hover { color: var(--brass-bright); }

body.menu-open .overlay-link { opacity: 1; transform: translateY(0); }
body.menu-open .overlay-link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .overlay-link:nth-child(2) { transition-delay: 0.16s; }
body.menu-open .overlay-link:nth-child(3) { transition-delay: 0.22s; }
body.menu-open .overlay-link:nth-child(4) { transition-delay: 0.28s; }
body.menu-open .overlay-link:nth-child(5) { transition-delay: 0.34s; }

.overlay-meta {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--cream-40);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.42s, transform 0.8s var(--ease) 0.42s;
}

body.menu-open .overlay-meta { opacity: 1; transform: translateY(0); }

.overlay-meta a { color: var(--cream-60); text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 6rem;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.55) contrast(1.05);
  mask-image: radial-gradient(ellipse 85% 70% at 50% 38%, black 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 38%, black 20%, transparent 78%);
  animation: hero-photo-in 2.4s var(--ease) both;
}

@keyframes hero-photo-in {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 0.16; transform: scale(1); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(200, 161, 101, 0.22), transparent 65%);
  animation: drift 14s var(--ease) infinite alternate;
}

.hero-orb-2 {
  width: 480px;
  height: 480px;
  bottom: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(120, 70, 30, 0.25), transparent 65%);
  animation: drift 18s var(--ease) infinite alternate-reverse;
}

.hero-orb-3 {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  margin: -260px 0 0 -260px;
  background: radial-gradient(circle, rgba(200, 161, 101, 0.14), transparent 65%);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-60px, 50px, 0) scale(1.12); }
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--hairline) 1px, transparent 1px), linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 10%, transparent 70%);
  opacity: 0.5;
}

.hero-inner { position: relative; max-width: 1000px; display: flex; flex-direction: column; align-items: center; gap: 2.2rem; }

.hero-title {
  font-size: clamp(3.2rem, 9.5vw, 7.6rem);
  font-weight: 360;
}

.hero-title .line { display: block; overflow: hidden; padding: 0.04em 0.1em; }

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(2deg);
  filter: blur(6px);
  animation: word-in 1.1s var(--ease) forwards;
  animation-delay: var(--d, 0.3s);
}

@keyframes word-in {
  to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}

.hero-fade {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
  animation: fade-up 1.1s var(--ease) forwards;
  animation-delay: var(--d, 0.2s);
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-sub {
  max-width: 520px;
  color: var(--cream-60);
  font-size: 1.05rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--cream-60);
}

.stars { display: inline-flex; gap: 3px; color: var(--brass); }
.stars svg { width: 13px; height: 12px; }
.stars-lg svg { width: 22px; height: 21px; }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--brass), transparent);
  animation: scroll-pulse 2.4s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- marquee ---------- */
.marquee-band {
  position: relative;
  transform: rotate(-1.6deg);
  margin: -1.5rem -2rem 0;
  z-index: 2;
}

.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #b08c54, var(--brass) 40%, #d8b67e 70%, #b08c54);
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #1a1410;
  white-space: nowrap;
}

.marquee-track i { font-style: normal; color: rgba(26, 20, 16, 0.55); font-size: 0.8rem; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
.section {
  position: relative;
  padding: 9rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.section-head { max-width: 640px; margin-bottom: 4.5rem; display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start; }
.section-head p { color: var(--cream-60); }

/* ---------- stats ---------- */
.stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6.5rem 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--hairline-strong);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  color: var(--brass-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-40);
}

/* ---------- double-bezel shell ---------- */
.shell {
  background: rgba(242, 235, 223, 0.035);
  border: 1px solid var(--hairline);
  border-radius: 1.8rem;
  padding: 0.45rem;
  transition: transform 0.8s var(--ease), border-color 0.8s var(--ease);
}

.shell:hover { border-color: rgba(200, 161, 101, 0.35); transform: translateY(-4px); }

.core {
  height: 100%;
  background: linear-gradient(160deg, var(--bg-card), #0e0b07);
  border-radius: 1.42rem;
  border: 1px solid rgba(242, 235, 223, 0.05);
  box-shadow: inset 0 1px 1px rgba(242, 235, 223, 0.06);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* ---------- bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.bento h3 { font-size: 1.45rem; font-weight: 420; }
.bento p { color: var(--cream-60); font-size: 0.93rem; }

.bento-a { grid-column: span 7; }
.bento-b { grid-column: span 5; }
.bento-c { grid-column: span 5; }
.bento-d { grid-column: span 3; }
.bento-e { grid-column: span 4; }
.bento-f { grid-column: span 12; }

.bento-f .core { flex-direction: row; align-items: center; gap: 2rem; flex-wrap: wrap; }
.bento-f h3 { min-width: 220px; }
.bento-f p { flex: 1; min-width: 260px; }

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  border: 1px solid var(--hairline-strong);
  background: var(--brass-dim);
  color: var(--brass-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.svc-icon svg { width: 26px; height: 26px; }

.svc-tag {
  margin-top: auto;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass-bright);
  border: 1px solid rgba(200, 161, 101, 0.3);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

/* ---------- studio ---------- */
.section-studio { max-width: 1240px; }

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.studio-copy { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.studio-copy p { color: var(--cream-60); }
.studio-copy .btn { margin-top: 0.6rem; }

.studio-cards { display: flex; flex-direction: column; gap: 1.2rem; }

.tilt { transform: rotate(var(--rot, 0deg)); }
.tilt:hover { transform: rotate(0deg) translateY(-4px); }

.studio-card { flex-direction: row; align-items: center; gap: 1.6rem; padding: 1.7rem 2rem; }

.studio-card-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--brass-bright);
  min-width: 110px;
  line-height: 1.1;
}

.studio-card p { font-size: 0.88rem; color: var(--cream-60); }

.photo-core { padding: 0.4rem; gap: 0; overflow: hidden; position: relative; }

.photo-core img {
  width: 100%;
  display: block;
  border-radius: 1.1rem;
  filter: saturate(0.85);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.photo-shell:hover .photo-core img { transform: scale(1.04); filter: saturate(1); }

.photo-caption {
  position: absolute;
  left: 1.3rem;
  bottom: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 10, 8, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.studio-brand { display: flex; align-items: center; gap: 1.1rem; }

.studio-brand img {
  width: 72px;
  height: 72px;
  border-radius: 1.1rem;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 14px 36px -18px rgba(0, 0, 0, 0.8);
}

/* ---------- reviews ---------- */
.section-reviews { text-align: center; }

.reviews-inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; max-width: 760px; margin: 0 auto; }

.review-score { display: flex; align-items: center; gap: 1.2rem; }

.review-five {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--cream);
}

.review-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 340;
  line-height: 1.4;
  color: var(--cream);
}

.review-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.review-context { color: var(--cream-60); max-width: 540px; }

.review-link {
  color: var(--brass-bright);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(200, 161, 101, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.5s var(--ease);
}

.review-link:hover { border-color: var(--brass-bright); }

/* ---------- visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.visit-card { gap: 1.4rem; }

.visit-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-60);
}

.visit-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-40);
}

.visit-status.is-open .visit-status-dot { background: #7fc97f; box-shadow: 0 0 10px rgba(127, 201, 127, 0.8); }
.visit-status.is-closed .visit-status-dot { background: #c97f7f; box-shadow: 0 0 10px rgba(201, 127, 127, 0.6); }

.hours { width: 100%; border-collapse: collapse; }

.hours td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.92rem;
  color: var(--cream-60);
}

.hours td:last-child { text-align: right; color: var(--cream); }

.hours tr:last-child td { border-bottom: none; }

.hours tr.today td { color: var(--brass-bright); }

.visit-h { font-size: 1.6rem; }

address { font-style: normal; color: var(--cream-60); line-height: 1.9; }

.visit-note { font-size: 0.82rem; color: var(--cream-40); }

.visit-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: auto; }

/* ---------- final cta ---------- */
.final-cta {
  position: relative;
  text-align: center;
  padding: 10rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  overflow: hidden;
}

.final-cta h2 { font-size: clamp(2.6rem, 6.5vw, 5rem); position: relative; }

.final-cta-sub { color: var(--cream-40); font-size: 0.88rem; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding: 5rem 2rem 2.5rem;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 17vw, 15rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 235, 223, 0.06);
  pointer-events: none;
  user-select: none;
}

.footer-grid {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.88rem; color: var(--cream-60); }

.footer-name { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.4rem; }

.footer-col a { color: var(--cream-60); text-decoration: none; transition: color 0.5s var(--ease); }
.footer-col a:hover { color: var(--brass-bright); }

.footer-links { text-align: right; }

.footer-base {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.75rem;
  color: var(--cream-40);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) rotate(var(--rot, 0deg));
  filter: blur(0);
}

.reveal.in:hover { transform: translateY(-4px) rotate(0deg); }

.section-head.reveal.in:hover, .stats.reveal.in:hover, .reviews-inner.reveal.in:hover, .final-cta.reveal.in:hover { transform: translateY(0); }

/* ---------- legal pages ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 11rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.legal h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.legal h2 { font-size: 1.4rem; margin-top: 1.6rem; }
.legal p, .legal li { color: var(--cream-60); font-size: 0.95rem; }
.legal ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal a { color: var(--brass-bright); }
.legal-date { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-40); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-title .word, .hero-fade, .hero-photo img { animation-duration: 0.01s; animation-delay: 0s; }
  .reveal { transition-duration: 0.01s; }
  .marquee-track { animation: none; }
  .hero-orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f { grid-column: span 6; }
  .bento-f .core { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .studio-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav { gap: 1.2rem; padding-right: 0.55rem; }

  .section { padding: 5.5rem 1.2rem; width: 100%; }
  .stats { padding: 4rem 1.2rem 0.5rem; gap: 1.6rem; }

  .bento { grid-template-columns: 1fr; gap: 1rem; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f { grid-column: span 1; }

  .tilt { transform: none; }

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

  .studio-card { flex-direction: column; align-items: flex-start; gap: 0.8rem; }

  .footer-links { text-align: left; }

  .marquee-band { transform: rotate(0deg); margin: 0; }

  .hero { padding: 7.5rem 1.2rem 5rem; }

  .final-cta { padding: 6.5rem 1.2rem; }

  .legal { padding: 8.5rem 1.2rem 4rem; }
}
