/* =========
   Base styles
   ========= */
:root {
  --bg: #050609;
  --bg-alt: #0b0f16;
  --card: #10141e;
  --border-subtle: #202532;
  --text: #f6f6f7;
  --muted: #9ea3b5;
  --accent: #e1c560; /* warm gold accent */
  --accent-soft: rgba(225, 197, 96, 0.1);
  --danger: #ff4c4c;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
  --shadow-subtle: 0 4px 20px rgba(0,0,0,0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #101320 0, #050609 40%, #010308 100%);
  color: var(--text);
  line-height: 1.6;
}

/* =========
   Layout helpers
   ========= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  padding: 4.5rem 0;
  background: radial-gradient(circle at top, #151a28 0, #050609 60%);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========
   Header / nav
   ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,6,9,0.95), rgba(5,6,9,0.7));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.75rem;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(225,197,96,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: radial-gradient(circle at top, rgba(225,197,96,0.15), transparent);
}

.logo-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

/* =========
   Buttons
   ========= */
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-small-primary,
.btn-small-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: var(--accent);
  color: #050609;
  box-shadow: 0 10px 28px rgba(225,197,96,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(225,197,96,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(225,197,96,0.6);
}

.btn-secondary:hover {
  background: rgba(225,197,96,0.1);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

.btn-small-primary {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  background: var(--accent);
  color: #050609;
}

.btn-small-outline {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--muted);
  background: transparent;
}

.btn-mini {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}

.full-width {
  width: 100%;
}

/* =========
   Hero slider
   ========= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(5,6,9,0.8), rgba(5,6,9,0.5));
}

.slide-content {
  position: absolute;
  bottom: 16%;
  left: 10%;
  color: #fff;
  z-index: 3;
  max-width: 460px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.7);
}

.slide-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 0.5rem;
}

.slide-content p {
  margin: 0 0 1.4rem;
  color: #d6d7e0;
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.slider-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.slider-dots .dot.active {
  background: var(--accent);
  transform: scale(1.1);
}

/* =========
   Ribbon
   ========= */
.ribbon {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: radial-gradient(circle at left, rgba(225,197,96,0.05), transparent),
              radial-gradient(circle at right, rgba(98,205,175,0.03), transparent);
}

.ribbon-inner {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1rem 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.ribbon-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

/* =========
   Typographic elements
   ========= */
h1, h2, h3, h4 {
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.section h2 {
  font-size: 1.9rem;
}

.section-intro {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

.tiny {
  font-size: 0.78rem;
}

.bullet-list {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0.75rem;
}

.bullet-list li {
  margin-bottom: 0.18rem;
}

/* =========
   Cards / imagery
   ========= */
.card {
  background: radial-gradient(circle at top left, rgba(225,197,96,0.08), var(--card));
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.7rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.error-card {
  border-color: var(--danger);
  background: radial-gradient(circle at top left, rgba(255,76,76,0.12), #1a1115);
}

.rounded-image {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.shadowed {
  box-shadow: var(--shadow-soft);
}

/* =========
   Flip cards
   ========= */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

@media (max-width: 1100px) {
  .flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .flip-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.flip-card {
  perspective: 1200px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(225,197,96,0.08), #10131f);
  border: 1px solid var(--border-subtle);
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-cta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nutrition-list {
  padding-left: 1rem;
  margin: 0.5rem 0;
}

.nutrition-list li {
  margin-bottom: 0.18rem;
}

/* =========
   Order form
   ========= */
.order-form {
  margin-top: 2.5rem;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr;
  gap: 2.2rem;
}

@media (max-width: 900px) {
  .order-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.flavor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  gap: 0.9rem;
}

.field-label {
  display: block;
  font-size: 0.85rem;
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
}

.input,
.select,
textarea.input,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(15,18,28,0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.input:focus,
.select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(225,197,96,0.4);
}

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

/* =========
   Map section
   ========= */
.map-graphic {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem;
  background: radial-gradient(circle at top left, rgba(63,126,211,0.16), #050609);
  box-shadow: var(--shadow-subtle);
}

.map-dot {
  fill: var(--accent);
}

.map-line {
  stroke: rgba(255,255,255,0.4);
  stroke-width: 1.3;
}

/* =========
   Footer
   ========= */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at top, #151a28 0, #050609 45%, #020308 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
}

.footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 0.22rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .hero-slider {
    height: 70vh;
  }
}
