:root {
  --bg: #120d08;
  --bg-soft: #21140c;
  --card: rgba(33, 20, 12, 0.65);
  --accent: #f4b45a;
  --accent-2: #ff834e;
  --text: #f8efe6;
  --muted: #d8c6b3;
  --line: rgba(255, 220, 180, 0.2);
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 166, 112, 0.22), transparent 38%),
    radial-gradient(circle at 80% 10%, rgba(255, 210, 130, 0.14), transparent 42%),
    linear-gradient(155deg, #0f0906 0%, #1a110b 48%, #120d08 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -90px;
  background: radial-gradient(circle, rgba(255, 160, 77, 0.35), rgba(255, 160, 77, 0));
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 108, 70, 0.24), rgba(255, 108, 70, 0));
  animation: float 9s ease-in-out infinite reverse;
}

.topbar {
  width: min(1120px, 92vw);
  margin: 1.2rem auto;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 8, 5, 0.55);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a110b;
}

.brand-text {
  font-family: "Cinzel", serif;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

main {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  align-items: center;
  margin: 3.6rem 0 4.5rem;
}

.kicker {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 14ch;
}

.lead {
  margin: 1.25rem 0 1.8rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.76rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #24160e;
  background: linear-gradient(120deg, var(--accent), #ffd48a);
  box-shadow: 0 8px 24px rgba(244, 180, 90, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 10px 28px rgba(244, 180, 90, 0.48);
}

.btn-outline {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.hero-stats {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.8rem;
}

.hero-stats article {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: #ffd8a2;
}

.hero-stats span {
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-photo {
  margin: 0 0 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 180, 0.25);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.hero-photo img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-photo img {
  transform: scale(1.08);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.16) 45%, transparent 65%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
}

.hero-card-tag {
  display: inline-block;
  margin: 0;
  color: #1a110b;
  background: #ffd8a2;
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}

.hero-card h2 {
  margin-top: 0.85rem;
  font-size: 1.8rem;
}

.hero-card p {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffd8a2;
}

.price-row a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  max-width: 16ch;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1rem;
}

.menu-card {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 220, 180, 0.55);
}

.menu-card h3 {
  margin-bottom: 0.5rem;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
}

.menu-card span {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: #ffd8a2;
}

.highlights {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight {
  padding: 1.1rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 14px;
}

.highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight p {
  margin: 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
}

cite {
  display: block;
  margin-top: 0.8rem;
  color: #ffe0b3;
  font-style: normal;
  font-weight: 700;
}

.cta {
  margin-top: 3.8rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem 1rem;
  background: linear-gradient(160deg, rgba(255, 189, 112, 0.12), rgba(255, 107, 72, 0.08));
}

.cta h2 {
  margin: 0.6rem auto 1.2rem;
  max-width: 16ch;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

footer {
  width: min(1120px, 92vw);
  margin: 2.5rem auto 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.section-reveal.visible {
  animation: reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0%,
  65% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(160%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .topbar {
    border-radius: 16px;
    padding: 0.8rem;
  }

  .menu-grid,
  .highlights,
  .testimonial-grid,
  .hero-stats,
  footer {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  footer {
    display: grid;
  }
}
