:root {
  color-scheme: dark;
  --bg: #0b0a10;
  --bg-alt: #131020;
  --surface: rgba(24, 22, 32, 0.85);
  --surface-strong: rgba(15, 14, 22, 0.95);
  --accent-gold: #f6be4b;
  --accent-ember: #f05a3d;
  --accent-jade: #4ac49b;
  --text: rgba(252, 251, 255, 0.94);
  --text-muted: rgba(215, 212, 230, 0.68);
  --border: rgba(255, 255, 255, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 40px 110px -40px rgba(0, 0, 0, 0.8);
  --shadow-md: 0 24px 70px -40px rgba(0, 0, 0, 0.65);
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(240, 90, 61, 0.08), transparent 45%),
    radial-gradient(circle at bottom left, rgba(74, 196, 155, 0.08), transparent 55%), var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 6, 14, 0.82);
  border-bottom: 1px solid var(--border);
}

.top-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem clamp(1.2rem, 5vw, 2.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: clamp(120px, 23vw, 165px);
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.55));
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 15, 24, 0.75);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease;
}

.nav-toggle span {
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(246, 190, 75, 0.6);
}

.nav-menu {
  position: fixed;
  inset: 74px 1.25rem auto 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 10, 18, 0.96);
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
  transform-origin: top right;
  transform: scale(0);
  transition: transform 200ms ease;
}

.nav-menu a {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-menu.active {
  transform: scale(1);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(4rem, 18vw, 9rem) clamp(1.2rem, 6vw, 4rem)
    clamp(3.5rem, 12vw, 6.5rem);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: clamp(380px, 70vw, 520px);
  background: radial-gradient(circle at center, rgba(246, 190, 75, 0.18), transparent 55%);
  filter: blur(12px);
  z-index: -1;
  animation: shimmer 18s ease-in-out infinite alternate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.5);
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(150deg, rgba(4, 3, 7, 0.82), rgba(4, 3, 7, 0.45));
}

.hero-container {
  display: grid;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 1.6rem;
  max-width: 560px;
}

.eyebrow {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-muted);
}

#hero-title {
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1.05;
  color: var(--text);
}

.no-break {
  white-space: nowrap;
}

.hero-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-gold), #ffe8a4);
  color: #1b1306;
  box-shadow: 0 15px 40px -20px rgba(246, 190, 75, 0.8);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(20, 18, 28, 0.5);
  backdrop-filter: blur(8px);
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(20, 18, 28, 0.35);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.metric-card {
  min-width: 120px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 18, 28, 0.6);
  display: grid;
  gap: 0.3rem;
}

.metric-number {
  font-family: "Sora", sans-serif;
  font-size: 1.65rem;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
}

.metric-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 18, 28, 0.55);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-gallery {
  position: relative;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 22, 35, 0.9);
  box-shadow: var(--shadow-lg);
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 400ms ease,
    border-color 400ms ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.gallery-main {
  width: clamp(240px, 60vw, 320px);
  aspect-ratio: 4 / 5;
}

.gallery-accent {
  position: absolute;
  top: 45%;
  right: -6%;
  width: clamp(180px, 40vw, 220px);
  aspect-ratio: 4 / 5;
  transform: translate(0, -50%) rotate(-6deg);
  opacity: 0.85;
  transition: transform 240ms ease;
}

.hero-gallery:hover .gallery-accent,
.hero-gallery:focus-within .gallery-accent {
  transform: translate(0, -50%) rotate(0deg) scale(1.05);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-16px) rotate(-3deg) scale(1.08);
  box-shadow: 0 55px 150px -30px rgba(246, 190, 75, 0.85);
  border-color: rgba(246, 190, 75, 0.45);
}

.gallery-card:hover + .gallery-card,
.gallery-card:focus-visible + .gallery-card {
  transform: translate(20%, -45%) rotate(-1deg) scale(1.02);
}

.gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 9, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  width: clamp(280px, 42vw, 360px);
  height: clamp(280px, 42vw, 360px);
  background: radial-gradient(circle, rgba(246, 190, 75, 0.28), transparent 65%);
  filter: blur(60px);
  z-index: -1;
}

.section {
  padding: clamp(3.5rem, 10vw, 6.5rem) clamp(1.2rem, 6vw, 4rem);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--text);
}

.section-intro .lede {
  font-size: 1rem;
  color: var(--text-muted);
}

.pulse {
  position: relative;
}

.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(64, 40, 110, 0.5), transparent 60%);
  filter: blur(140px);
  z-index: -1;
}

.pulse-grid {
  display: grid;
  gap: 1.25rem;
}

.pulse-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(23, 21, 35, 0.9), rgba(17, 15, 26, 0.85));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.pulse-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(246, 190, 75, 0.14), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.pulse-number {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.pulse-card h3 {
  font-size: 1.25rem;
  margin-top: 0.75rem;
  color: var(--text);
}

.pulse-card p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.pulse-card:hover,
.pulse-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(246, 190, 75, 0.35);
  box-shadow: 0 30px 100px -50px rgba(246, 190, 75, 0.7);
}

.menu {
  position: relative;
  background: linear-gradient(160deg, rgba(12, 9, 18, 0.95), rgba(9, 8, 16, 0.78));
  overflow: hidden;
}

.menu::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: clamp(420px, 70vw, 600px);
  background: radial-gradient(circle at center, rgba(246, 190, 75, 0.2), transparent 60%);
  filter: blur(18px);
}

.menu-marquee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(150deg, rgba(26, 23, 37, 0.92), rgba(16, 14, 24, 0.75));
  overflow: hidden;
  display: grid;
  gap: 1.2rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.menu-count {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.2);
}

.menu-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.menu-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.menu-card:hover img,
.menu-card:focus-within img {
  transform: scale(1.05);
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(246, 190, 75, 0.35);
  box-shadow: 0 35px 120px -45px rgba(246, 190, 75, 0.65);
}

.menu-copy {
  display: grid;
  gap: 0.6rem;
}

.menu-copy h3 {
  font-size: 1.25rem;
  color: var(--text);
}

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

.dash {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 9, 14, 0.95), rgba(8, 7, 12, 0.88));
  overflow: hidden;
}

.dash::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -40%;
  height: clamp(300px, 55vw, 480px);
  background: radial-gradient(circle, rgba(74, 196, 155, 0.16), transparent 60%);
  filter: blur(110px);
}

.dash-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
}

.dash-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(150deg, rgba(22, 20, 32, 0.92), rgba(10, 9, 16, 0.9));
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 0.85rem;
}

.dash-count {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.dash-card h3 {
  font-size: 1.3rem;
  color: var(--text);
}

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

.dash-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.dash-link::after {
  content: "↗";
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 190, 75, 0.4);
  background: rgba(246, 190, 75, 0.12);
  color: var(--accent-gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.build {
  background: rgba(11, 10, 18, 0.9);
}

.build-grid {
  display: grid;
  gap: 1.25rem;
}

.build-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(25, 23, 34, 0.95), rgba(14, 12, 21, 0.9));
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.build-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.build-card p {
  margin: 0;
}

.build-card:hover,
.build-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(246, 190, 75, 0.35);
  box-shadow: 0 30px 100px -50px rgba(246, 190, 75, 0.6);
}

.build-footnote {
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.social {
  background: radial-gradient(circle at top left, rgba(74, 196, 155, 0.09), transparent 55%);
}

.social-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 60vw);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.social-strip::-webkit-scrollbar {
  display: none;
}

.social-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scroll-snap-align: center;
  background: rgba(18, 16, 28, 0.85);
  display: block;
}

.social-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 14, 26, 0.7);
  color: var(--text);
  font-weight: 600;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(246, 190, 75, 0.45);
  box-shadow: 0 18px 50px -30px rgba(246, 190, 75, 0.5);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem clamp(1.2rem, 5vw, 3rem);
  background: linear-gradient(180deg, rgba(7, 6, 12, 0.95), rgba(7, 6, 12, 1));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: grid;
  gap: 0.4rem;
}

.footer-logo {
  width: clamp(150px, 24vw, 210px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.powered-by {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 14, 26, 0.7);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.powered-by img {
  height: 34px;
  width: auto;
}

.powered-by:hover,
.powered-by:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.scroll-top {
  position: fixed;
  bottom: clamp(1.5rem, 5vw, 2.5rem);
  right: clamp(1.5rem, 5vw, 2.5rem);
  z-index: 30;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 190, 75, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 200ms ease, box-shadow 200ms ease;
  opacity: 0;
  pointer-events: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 25px 80px -40px rgba(246, 190, 75, 0.7);
}

.scroll-top span {
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 720px) {
  .nav-menu {
    position: static;
    transform: none;
    display: inline-flex;
    gap: 1.75rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    align-items: center;
    min-height: calc(100vh - 80px);
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    align-items: center;
  }

  .hero-gallery {
    justify-self: end;
  }

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

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

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

  .simple-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  }

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

  .signature-card {
    grid-template-columns: minmax(0, 180px) 1fr;
  }

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

}

@media (hover: hover) {
  .menu-card {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .menu-card:hover,
  .menu-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
}

/* ---------- Simple menu page ---------- */

.simple-page {
  background: linear-gradient(140deg, rgba(11, 10, 18, 0.94), rgba(9, 8, 14, 0.98));
  min-height: 100vh;
  color: var(--text);
}

.simple-header {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.75rem clamp(1.2rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.simple-brand img {
  width: clamp(160px, 32vw, 200px);
  height: auto;
}

.simple-link {
  margin-left: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.simple-link:hover,
.simple-link:focus-visible {
  color: var(--accent-gold);
}

.simple-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 2.5rem) 4rem;
  display: grid;
  gap: 3rem;
}

.simple-section h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.simple-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.simple-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(150deg, rgba(24, 22, 34, 0.65), rgba(15, 13, 24, 0.6));
  padding: 2.5rem clamp(1.2rem, 5vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.simple-hero-copy {
  display: grid;
  gap: 1.2rem;
}

.simple-hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.simple-hero-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.simple-card-grid {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.simple-card {
  background: linear-gradient(150deg, rgba(24, 22, 34, 0.92), rgba(15, 13, 24, 0.9));
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.simple-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.signature-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.signature-card {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 120px) 1fr;
  align-items: center;
  background: linear-gradient(150deg, rgba(24, 22, 34, 0.9), rgba(16, 13, 26, 0.85));
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.signature-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.signature-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-copy h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.signature-copy p {
  margin: 0;
  color: var(--text-muted);
}

.simple-accent {
  background: rgba(9, 8, 14, 0.65);
  border-radius: var(--radius-lg);
  padding: 2.5rem clamp(1.2rem, 5vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.build-detail {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.build-detail h2 {
  font-size: 1.4rem;
}

.build-detail dl {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.build-detail dt {
  font-weight: 600;
}

.build-detail dd {
  margin: 0;
  color: var(--text-muted);
}

.build-detail ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  color: var(--text-muted);
}

.build-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.build-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(246, 190, 75, 0.18);
  border: 1px solid rgba(246, 190, 75, 0.32);
  color: var(--accent-gold);
  font-family: "Sora", sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.toppings-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, rgba(24, 22, 34, 0.9), rgba(16, 13, 26, 0.8));
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.grid-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.grid-list li::before {
  content: "•";
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.simple-hero,
.signature-card,
.simple-card,
.simple-hero-gallery img {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.signature-card:hover,
.signature-card:focus-visible,
.simple-card:hover,
.simple-card:focus-visible,
.simple-hero-gallery img:hover,
.simple-hero-gallery img:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px -40px rgba(246, 190, 75, 0.55);
}

.simple-note {
  margin-top: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.simple-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .gallery-accent {
    display: none;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
  }

  .footer-content,
  .powered-by {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    justify-items: center;
  }

  #hero-title {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes shimmer {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.1) translateY(5%);
  }

