:root {
  --bg: #0A0A14;
  --bg-2: #111120;
  --bg-3: #181828;
  --fg: #F5F0E8;
  --fg-dim: #8A8A9A;
  --accent: #FFB84D;
  --accent-dim: rgba(255,184,77,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5vw;
  background: var(--bg);
  overflow: hidden;
}

.hero-content {
  padding: 4vw 0;
  z-index: 2;
  position: relative;
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero .lede {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 40ch;
  line-height: 1.75;
}

.hero-image {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,184,77,0.18) 0%, transparent 70%);
  filter: blur(30px);
}

.hero-streets {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 15%;
}

.street-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,77,0.25), transparent);
}

.hero-windows {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8%;
  padding: 8% 12%;
}

.window-row {
  display: flex;
  gap: 4%;
}

.window {
  background: rgba(255,184,77,0.12);
  border: 1px solid rgba(255,184,77,0.2);
  flex: 1;
  aspect-ratio: 1 / 1.4;
  animation: windowPulse 4s ease-in-out infinite;
}

.w1 { animation-delay: 0.2s; }
.w2 { animation-delay: 0.6s; }
.w3 { animation-delay: 1.1s; }
.w4 { animation-delay: 0.8s; }
.w5 { animation-delay: 1.5s; }
.w6 { animation-delay: 0.4s; }
.w7 { animation-delay: 1.0s; }
.w8 { animation-delay: 0.7s; }
.w9 { animation-delay: 1.3s; }
.w10 { animation-delay: 0.9s; }
.w11 { animation-delay: 0.5s; }
.w12 { animation-delay: 1.7s; }

@keyframes windowPulse {
  0%, 100% { opacity: 0.3; background: rgba(255,184,77,0.08); }
  50% { opacity: 1; background: rgba(255,184,77,0.25); }
}

.hero-clock {
  position: absolute;
  bottom: 25%;
  right: 8%;
  width: 18%;
}

.clock-outer {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,184,77,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,184,77,0.04);
}

.clock-face {
  width: 85%;
  aspect-ratio: 1;
  position: relative;
}

.clock-hands {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hand-hour {
  position: absolute;
  width: 2px;
  height: 28%;
  background: var(--accent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(60deg);
  transform-origin: bottom center;
  border-radius: 2px;
}

.hand-minute {
  position: absolute;
  width: 1px;
  height: 38%;
  background: rgba(255,184,77,0.6);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: bottom center;
  border-radius: 1px;
}

.hand-center {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clock-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--accent);
  opacity: 0.7;
}

.num-2 { top: 8%; left: 50%; transform: translateX(-50%); }

/* ── DISCRETION ── */
.discretion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 8vw 5vw;
  background: var(--bg-2);
}

.disc-visual {
  height: 65vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.box-illustration {
  position: relative;
  z-index: 2;
}

.box-body {
  width: 55%;
  margin: 0 auto;
}

.box-lid {
  width: 100%;
  height: 12px;
  background: rgba(255,184,77,0.35);
  border-radius: 2px 2px 0 0;
}

.box-base {
  width: 100%;
  height: 60px;
  background: rgba(255,184,77,0.15);
  border: 1px solid rgba(255,184,77,0.3);
  border-radius: 0 0 4px 4px;
  position: relative;
  overflow: hidden;
}

.box-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(255,184,77,0.25), transparent);
}

.door-mat {
  width: 45%;
  margin: 8px auto 0;
  height: 6px;
  background: rgba(245,240,232,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mat-text {
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  font-family: var(--font-body);
}

.ambient-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255,184,77,0.12) 0%, transparent 70%);
  filter: blur(20px);
}

.disc-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.disc-content > p {
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.disc-pillars { display: flex; flex-direction: column; gap: 1.4rem; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.pillar-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.2rem; }
.pillar-desc { font-size: 0.85rem; color: var(--fg-dim); }

/* ── HOURS ── */
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 8vw 5vw;
  background: var(--bg);
}

.hours-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hours-content > p {
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.clock-block { text-align: left; }

.clock-display {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clock-display span { font-size: 2rem; }

.clock-label {
  font-size: 0.85rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

.hours-visual {
  height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hours-clock {
  position: relative;
  z-index: 2;
  width: 60%;
  aspect-ratio: 1;
}

.big-clock-face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255,184,77,0.35);
  background: rgba(255,184,77,0.04);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-clock-tick {
  position: absolute;
  width: 1px;
  height: 8%;
  background: rgba(255,184,77,0.4);
  left: 50%;
  transform: translateX(-50%);
}

.t12 { top: 5%; }
.t3 { top: 50%; right: 5%; transform: translateY(-50%) rotate(90deg); }
.t6 { bottom: 5%; transform: translateX(-50%) rotate(180deg); }
.t9 { top: 50%; left: 5%; transform: translateY(-50%) rotate(270deg); }

.big-clock-inner {
  width: 75%;
  height: 75%;
  position: relative;
}

.big-hand-hour {
  position: absolute;
  width: 3px;
  height: 30%;
  background: var(--accent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(60deg);
  transform-origin: bottom center;
  border-radius: 3px;
}

.big-hand-minute {
  position: absolute;
  width: 2px;
  height: 42%;
  background: rgba(255,184,77,0.7);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: bottom center;
  border-radius: 2px;
}

.big-hand-second {
  position: absolute;
  width: 1px;
  height: 45%;
  background: rgba(255,184,77,0.4);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  transform-origin: bottom center;
}

.big-hand-center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.big-clock-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.num-2 { top: 8%; left: 50%; transform: translateX(-50%); }

.hours-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.light-ray {
  position: absolute;
  background: linear-gradient(to bottom, rgba(255,184,77,0.08), transparent);
  width: 1px;
  height: 200%;
  top: -50%;
}

.ray1 { left: 30%; transform: rotate(15deg); }
.ray2 { left: 65%; transform: rotate(-10deg); }

/* ── STOREFRONT ── */
.storefront {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 8vw 5vw;
  background: var(--bg-3);
}

.sf-visual {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.store-building {
  width: 60%;
  position: relative;
  z-index: 2;
}

.store-sign {
  height: 20px;
  background: rgba(255,184,77,0.12);
  border: 1px solid rgba(255,184,77,0.3);
  border-radius: 2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sign-bar {
  width: 40%;
  height: 3px;
  background: var(--accent);
  opacity: 0.6;
}

.sign-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255,184,77,0.25) 0%, transparent 70%);
  filter: blur(10px);
}

.store-windows {
  display: flex;
  gap: 8%;
  padding: 0 5%;
}

.sf-win {
  flex: 1;
  aspect-ratio: 3 / 4;
  background: rgba(255,184,77,0.15);
  border: 1px solid rgba(255,184,77,0.25);
  animation: winGlow 3s ease-in-out infinite;
}

.w-a { animation-delay: 0s; }
.w-b { animation-delay: 1s; }
.w-c { animation-delay: 2s; }

@keyframes winGlow {
  0%, 100% { background: rgba(255,184,77,0.08); }
  50% { background: rgba(255,184,77,0.25); }
}

.store-ground {
  height: 4px;
  background: rgba(245,240,232,0.08);
  margin-top: 8px;
  border-radius: 2px;
}

.sf-ambient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,184,77,0.15) 0%, transparent 70%);
  filter: blur(20px);
}

.sf-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.sf-content > p {
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.sf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sf-list li {
  font-size: 0.95rem;
  color: var(--fg-dim);
  padding-left: 1.2rem;
  position: relative;
}

.sf-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 10vw 5vw;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--bg-3);
  position: relative;
  overflow: hidden;
}

.closing-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255,184,77,0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.closing-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.c-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,77,0.1), transparent);
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.closing-statement em {
  font-style: italic;
  color: var(--accent);
}

.closing-sub {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 5vw;
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--bg-3);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-hours {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--fg-dim);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 15vw 6vw;
    gap: 12vw;
  }
  .hero-image { height: 60vw; }
  .discretion, .hours, .storefront {
    grid-template-columns: 1fr;
    gap: 10vw;
  }
  .disc-visual, .hours-visual, .sf-visual { height: 55vw; }
  .clock-display { font-size: 3rem; }
  .big-clock-num { font-size: 0.8rem; }
}