@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #050403;
  --bg-soft: #0b0907;
  --surface: #11100d;
  --surface-2: #17140f;
  --surface-3: #201b13;
  --gold: #c6923d;
  --gold-light: #f0cf82;
  --gold-soft: #d9ae5f;
  --gold-dark: #74511f;
  --text: #f4e8d0;
  --text-soft: #c9bea8;
  --text-muted: #8f8472;
  --border-gold: rgba(198, 146, 61, 0.42);
  --border-gold-strong: rgba(240, 207, 130, 0.78);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 40px rgba(198, 146, 61, 0.12);
  --instagram-1: #f58529;
  --instagram-2: #dd2a7b;
  --instagram-3: #8134af;
  --tiktok-cyan: #25f4ee;
  --tiktok-red: #fe2c55;
  --transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease, opacity .25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

.page {
  min-height: 100vh;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(198,146,61,.16), transparent 34%),
    radial-gradient(circle at 12% 22%, rgba(198,146,61,.08), transparent 28%),
    linear-gradient(135deg, #050403 0%, #0b0907 45%, #030302 100%);
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image:
    radial-gradient(circle at 16% 24%, rgba(255,255,255,.54) 0 1px, transparent 1px),
    radial-gradient(circle at 68% 48%, rgba(255,255,255,.34) 0 1px, transparent 1px),
    radial-gradient(circle at 34% 78%, rgba(255,255,255,.38) 0 1px, transparent 1px);
  background-size: 90px 90px, 130px 130px, 110px 110px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--bg);
}

.skip-link:focus {
  top: 12px;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-shell {
  margin-top: 10px;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: rgba(5,4,3,0.78);
  border: 1px solid rgba(198,146,61,.42);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}

.site-header.is-scrolled .header-shell {
  background: rgba(5,4,3,.9);
}

.brand-link {
  display: inline-flex;
}

.brand-link img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.desktop-nav,
.mobile-menu,
.footer-links {
  display: flex;
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.mobile-menu a,
.header-route,
.footer-links a {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-menu a,
.footer-links a {
  color: var(--text-soft);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.header-route {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--gold-light);
  border: 1px solid rgba(198,146,61,.42);
  border-radius: 999px;
  background: rgba(5,4,3,.54);
  transition: var(--transition);
}

.header-route__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.header-route__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(198,146,61,.42);
  border-radius: 14px;
  background: rgba(5,4,3,.54);
  color: var(--gold-light);
  transition: var(--transition);
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: var(--transition);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(17,16,13,.96), rgba(7,6,4,.98));
  border: 1px solid rgba(198,146,61,.42);
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(0,0,0,.36);
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
}

.hero,
.feature-section,
.social-section,
.contact-section,
.site-footer {
  margin-top: 26px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
  background: url("public/assets/streetpoint-hero-mobile.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,5,4,.32), rgba(6,5,4,.72)),
    radial-gradient(circle at 50% 38%, rgba(0,0,0,.08), rgba(0,0,0,.66) 66%),
    linear-gradient(90deg, rgba(5,4,3,.82) 0%, rgba(5,4,3,.48) 30%, rgba(5,4,3,.48) 70%, rgba(5,4,3,.86) 100%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(240,207,130,.16);
  border-radius: 24px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 34px 16px 28px;
  text-align: center;
}

.hero-ornament {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.hero-ornament > span {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,207,130,.9), transparent);
}

.hero-skyline {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
}

.hero-skyline i {
  display: block;
  width: 8px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #fff1c2 0%, #d7a84f 48%, #80591f 100%);
}

.hero-skyline i:nth-child(1) { height: 12px; }
.hero-skyline i:nth-child(2) { height: 18px; }
.hero-skyline i:nth-child(3) { height: 28px; }
.hero-skyline i:nth-child(4) { height: 36px; }
.hero-skyline i:nth-child(5) { height: 22px; }
.hero-skyline i:nth-child(6) { height: 26px; }
.hero-skyline i:nth-child(7) { height: 14px; }

.hero-title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 13vw, 4.4rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff1c2 0%, #d7a84f 48%, #80591f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 12px 40px rgba(0,0,0,.65);
}

.hero-title span {
  display: block;
}

.hero-script {
  margin: 0;
  max-width: 12ch;
  color: var(--text);
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.1rem, 9vw, 3.2rem);
  line-height: 1;
}

.hero-subline,
.hero-copy,
.feature-body p,
.contact-copy p,
.footer-shell p {
  margin: 0;
}

.hero-subline {
  max-width: 24ch;
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 30ch;
  color: var(--text-soft);
  line-height: 1.6;
}

.hero-actions {
  width: 100%;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.button-primary {
  color: var(--bg);
  background: linear-gradient(135deg, #f0cf82 0%, #c6923d 52%, #74511f 100%);
  box-shadow: 0 18px 40px rgba(198,146,61,.24);
}

.button-secondary {
  color: var(--gold-light);
  border: 1px solid rgba(198,146,61,.7);
  background: rgba(5,4,3,.5);
}

.section-divider,
.footer-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-divider span,
.footer-divider span:not(.footer-dot) {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,207,130,.92), transparent);
}

.section-divider p {
  margin: 0;
  color: var(--gold-light);
  text-align: center;
  font-size: .8rem;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.feature-grid,
.social-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(32,27,19,.78), rgba(8,7,5,.94)),
    radial-gradient(circle at top, rgba(240,207,130,.06), transparent 48%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.42);
  transition: var(--transition);
}

.feature-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.04), transparent 18%, transparent 82%, rgba(255,255,255,.03));
  pointer-events: none;
}

.feature-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.feature-icon,
.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  box-shadow: inset 0 0 0 1px rgba(240,207,130,.08);
}

.feature-icon svg,
.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-body h2,
.contact-eyebrow {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 1.12rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.feature-body p,
.contact-copy p {
  color: var(--text-soft);
  line-height: 1.6;
}

.social-card {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  transition: var(--transition);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .96;
}

.social-card-instagram::before {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
}

.social-card-tiktok {
  border: 1px solid rgba(37,244,238,.45);
  background:
    linear-gradient(180deg, rgba(9,9,9,.98), rgba(4,4,4,.98)),
    radial-gradient(circle at top, rgba(255,255,255,.03), transparent 52%);
  box-shadow:
    inset 0 0 0 1px rgba(254,44,85,.28),
    0 18px 50px rgba(0,0,0,.45);
}

.social-card-tiktok::before {
  background:
    radial-gradient(circle at left top, rgba(37,244,238,.12), transparent 36%),
    radial-gradient(circle at right bottom, rgba(254,44,85,.16), transparent 40%);
}

.social-card > * {
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}

.social-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
}

.social-card-tiktok .social-icon svg {
  filter: drop-shadow(-4px 0 0 var(--tiktok-cyan)) drop-shadow(4px 0 0 var(--tiktok-red));
}

.social-body {
  display: grid;
  gap: 4px;
}

.social-body span,
.social-body small {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-body strong {
  color: #fff;
  font-size: clamp(1.5rem, 6vw, 2rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-arrow {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.contact-grid {
  gap: 18px;
}

.contact-card {
  min-height: 188px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.contact-main {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 14px;
  align-content: end;
}

.contact-side img {
  width: min(180px, 100%);
  opacity: .82;
}

.contact-side-muted img {
  opacity: .62;
}

.opening-note {
  color: var(--gold-light) !important;
}

.site-footer {
  margin-bottom: 28px;
}

.footer-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff1c2 0%, #d7a84f 48%, #80591f 100%);
}

.footer-shell {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer-shell p {
  color: var(--text-soft);
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button:hover,
.button:focus-visible,
.feature-card:hover,
.contact-card:hover,
.social-card:hover,
.social-card:focus-visible,
.header-route:hover,
.header-route:focus-visible,
.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  transform: translateY(-4px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(198,146,61,.28), var(--shadow-gold);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.feature-card:hover,
.contact-card:hover,
.header-route:hover,
.header-route:focus-visible {
  border-color: var(--border-gold-strong);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
}

.social-card-instagram:hover {
  box-shadow: 0 28px 70px rgba(221,42,123,.22);
}

.social-card-tiktok:hover {
  box-shadow:
    0 24px 70px rgba(37,244,238,.12),
    inset 0 0 0 1px rgba(254,44,85,.48);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .desktop-nav,
  .header-route {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    display: flex;
  }
}

@media (min-width: 768px) {
  .header-shell {
    margin-top: 18px;
    min-height: 82px;
    padding: 12px 16px;
    grid-template-columns: auto 1fr auto;
  }

  .brand-link img {
    width: 64px;
    height: 64px;
  }

  .header-route {
    display: inline-flex;
  }

  .hero-panel {
    background: url("public/assets/streetpoint-hero-desktop.png") center center / cover no-repeat;
  }

  .hero-inner {
    padding: 56px 40px 44px;
  }

  .hero-title {
    font-size: clamp(4.5rem, 7vw, 7.4rem);
  }

  .hero-script {
    max-width: none;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
  }

  .hero-subline {
    max-width: none;
  }

  .hero-actions {
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: center;
  }

  .social-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    min-height: 220px;
  }
}

@media (min-width: 1024px) {
  .header-shell {
    margin-top: 24px;
    min-height: 88px;
    padding: 0 22px;
  }

  .brand-link img {
    width: 72px;
    height: 72px;
  }

  .desktop-nav {
    display: flex;
    justify-content: center;
    gap: 38px;
    padding-inline: 24px;
    white-space: nowrap;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero,
  .feature-section,
  .social-section,
  .contact-section,
  .site-footer {
    margin-top: 38px;
  }

  .hero-inner {
    padding: 72px 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 194px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: start;
    gap: 20px;
    padding: 30px 28px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .social-card {
    min-height: 136px;
    gap: 18px;
    padding: 22px 24px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .contact-side {
    justify-items: end;
    text-align: right;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
