:root {
  --bg: #170712;
  --bg-2: #250b1a;
  --panel: rgba(255, 244, 240, 0.08);
  --panel-strong: rgba(255, 246, 242, 0.13);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fff7f6;
  --muted: rgba(255, 247, 246, 0.72);
  --pink: #ff5fa2;
  --pink-soft: #ff99be;
  --peach: #ffb07a;
  --gold: #ffdb8c;
  --berry: #6d1639;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-h: 84px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 95, 162, 0.25), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 176, 122, 0.18), transparent 22%),
    linear-gradient(180deg, #2c0c1e 0%, #170712 26%, #12050f 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}

.page-glow-a {
  top: -8rem;
  left: -8rem;
  background: rgba(255, 95, 162, 0.5);
}

.page-glow-b {
  right: -10rem;
  top: 22rem;
  background: rgba(255, 176, 122, 0.25);
}

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition:
    background 200ms ease,
    backdrop-filter 200ms ease,
    border-color 200ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(21, 6, 15, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #2b0815;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #fff2c3 44%, var(--pink-soft));
  box-shadow: 0 18px 30px rgba(255, 132, 183, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-kicker,
.eyebrow,
.overlay-kicker,
.mini-label {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.brand-kicker,
.eyebrow {
  color: var(--pink-soft);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 219, 140, 0.36);
  background: linear-gradient(135deg, #ffb66c, #ff5fa2);
  color: #2e0817;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(255, 95, 162, 0.24);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero {
  padding-top: 46px;
}

.hero-grid,
.feature-grid,
.cta-shell,
.about-shell {
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.about-copy h2,
.cta-shell h2 {
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  margin: 14px 0 18px;
}

.hero-text,
.section-heading p,
.feature-copy p,
.about-copy p,
.cta-shell p,
.footer-copy,
.footer-meta p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 247, 246, 0.88);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-card,
.menu-card,
.gallery-card,
.stat-card,
.testimonial-shell,
.cta-shell,
.about-shell,
.feature-photo,
.feature-copy {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  transform: rotate(2deg);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(20, 5, 12, 0.56));
}

.hero-photo-card img {
  height: 620px;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.overlay-kicker {
  color: var(--gold);
  margin: 0 0 10px;
}

.overlay-title {
  margin: 0;
  max-width: 20rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-mini-card {
  position: absolute;
  max-width: 230px;
  padding: 18px;
  border-radius: 22px;
  backdrop-filter: blur(18px);
  background: rgba(61, 11, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.hero-mini-card strong,
.feature-points strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}

.mini-label {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.hero-mini-a {
  top: 6%;
  left: -7%;
}

.hero-mini-b {
  right: -4%;
  bottom: 9%;
}

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ticker-track {
  display: flex;
  gap: 42px;
  padding: 16px 0;
  width: max-content;
  animation: ticker 28s linear infinite;
  color: rgba(255, 247, 246, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.feature-copy h2,
.about-copy h2,
.cta-shell h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  margin: 12px 0 14px;
}

.menu-grid,
.gallery-grid,
.about-stats {
  display: grid;
  gap: 22px;
}

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

.menu-card,
.stat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card-index,
.stat-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.menu-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.72rem;
}

.menu-card p,
.gallery-card figcaption,
.feature-points span,
.stat-label,
.testimonial-note {
  color: var(--muted);
  line-height: 1.68;
}

.feature-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.feature-photo,
.feature-copy,
.about-shell,
.testimonial-shell,
.cta-shell {
  border-radius: 30px;
}

.feature-photo {
  overflow: hidden;
}

.feature-photo img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.feature-copy {
  padding: 38px;
}

.feature-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-points div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 22px;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-large img {
  min-height: 100%;
}

.about-shell,
.cta-shell {
  padding: 36px;
}

.about-shell {
  grid-template-columns: 1fr 0.95fr;
}

.about-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-shell {
  padding: 46px;
  text-align: center;
}

.testimonial-shell blockquote {
  margin: 10px auto 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
}

.cta-shell {
  grid-template-columns: 1.1fr auto;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 219, 140, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 95, 162, 0.16), rgba(255, 176, 122, 0.1));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 0 0 42px;
}

.footer-inner,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner {
  padding: 24px 0 10px;
}

.footer-brand {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.footer-copy,
.footer-meta p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-credit {
  white-space: nowrap;
}

.footer-credit a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1100px) {
  .hero-grid,
  .feature-grid,
  .about-shell,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .gallery-grid,
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-mini-a,
  .hero-mini-b {
    position: static;
    max-width: none;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 0;
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .button-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  .menu-grid,
  .gallery-grid,
  .about-stats,
  .footer-inner,
  .footer-meta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-photo img,
  .hero-photo-card img {
    min-height: 360px;
    height: 360px;
  }

  .footer-credit {
    white-space: normal;
  }

  .feature-copy,
  .about-shell,
  .testimonial-shell,
  .cta-shell,
  .menu-card,
  .stat-card {
    padding: 24px;
  }

  .gallery-large {
    grid-row: auto;
  }
}

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

  .ticker-track,
  .reveal {
    animation: none;
    transition: none;
  }

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