/* ===========================================================
   EdibleQween — style.css
   =========================================================== */

:root {
  --maroon-950: #1f0919;
  --maroon-900: #2a0f22;
  --maroon-800: #35152b;
  --cream: #f4ead6;
  --cream-2: #efe1c6;
  --gold: #cf9f3e;
  --gold-dark: #b98a2f;
  --green-900: #1e3a2c;
  --green-800: #244734;
  --ink: #241017;
  --ink-soft: #6d6156;
  --line: #e2d4b8;
  --line-dark: rgba(244, 234, 214, 0.18);

  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
}

em { font-style: italic; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--maroon-950);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 234, 214, 0.55);
}
.btn-outline-light:hover {
  background: rgba(244, 234, 214, 0.1);
}

.btn-quote-header {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 234, 214, 0.55);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-quote-header:hover { background: rgba(244,234,214,0.1); }

/* ---------- section headings ---------- */
.section-kicker {
  color: var(--gold-dark);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.section-kicker--light { color: var(--gold); }

.section-title {
  font-size: 2.4rem;
  line-height: 1.2;
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-title--light { color: var(--cream); }

.section-sub {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 48px;
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  background: var(--maroon-950);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(244,234,214,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  flex-shrink: 0;
}
.logo em { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: rgba(244,234,214,0.85);
  font-size: 0.92rem;
}
.main-nav a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  background: var(--maroon-900);
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0 0 22px;
}

.hero-copy h1 {
  color: var(--cream);
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-copy h1 em { color: var(--gold); }

.hero-desc {
  color: rgba(244,234,214,0.78);
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.badge-circle {
  position: absolute;
  top: 4%;
  left: 46%;
  width: 92px;
  height: 92px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--maroon-950);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.hero-img {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 22px 40px rgba(0,0,0,0.4);
}
.hero-img-1 {
  width: 62%;
  top: 6%;
  right: 0;
  height: 260px;
  z-index: 2;
}
.hero-img-2 {
  width: 32%;
  bottom: 0;
  left: 2%;
  height: 220px;
  z-index: 2;
}
.hero-img-3 {
  width: 46%;
  bottom: 4%;
  right: 8%;
  height: 190px;
  z-index: 1;
}

/* ===========================================================
   STATS BAR
   =========================================================== */
.stats-bar {
  background: var(--green-900);
  padding: 36px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 0 6px;
}
.stat-label {
  color: rgba(244,234,214,0.75);
  font-size: 0.85rem;
  margin: 0;
}

/* ===========================================================
   OFFER GRID
   =========================================================== */
.offer { background: var(--cream); padding: 100px 0; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 22px;
}

.offer-card {
  padding: 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-card--wide { grid-column: span 2; }
.offer-card--full { grid-column: span 3; }

.offer-tag {
  font-size: 0.78rem;
  margin: 0 0 12px;
  opacity: 0.75;
}
.offer-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.offer-card p { margin: 0; font-size: 0.95rem; }

.offer-card--dark {
  background: var(--maroon-900);
  color: var(--cream);
}
.offer-card--dark p { color: rgba(244,234,214,0.75); }

.offer-card--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.offer-card--outline p { color: var(--ink-soft); }

.offer-card--gold {
  background: var(--gold);
  color: var(--maroon-950);
}
.offer-card--gold p { color: rgba(31,9,25,0.75); }

.offer-card--green {
  background: var(--green-900);
  color: var(--cream);
}
.offer-card--green p { color: rgba(244,234,214,0.75); }

.offer-card--photo {
  background: var(--cream-2);
  border: 1px solid var(--line);
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 20px;
}
.offer-photo-text { flex: 1; }
.offer-photo-text p { color: var(--ink-soft); }
.offer-card--photo img {
  width: 320px;
  height: 150px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ===========================================================
   OUR STORY
   =========================================================== */
.story { background: var(--maroon-900); padding: 110px 0; }
.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.story-media { position: relative; }
.story-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}
.story-quote {
  position: absolute;
  bottom: -34px;
  left: 24px;
  right: -24px;
  max-width: 300px;
  background: var(--gold);
  color: var(--maroon-950);
  padding: 22px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  margin: 0;
  border-radius: 3px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}

.story-copy h2 {
  color: var(--cream);
  font-size: 2.3rem;
  line-height: 1.25;
  max-width: 480px;
  margin-bottom: 22px;
}
.story-copy > p {
  color: rgba(244,234,214,0.78);
  max-width: 500px;
  margin-bottom: 34px;
}

.story-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  margin-bottom: 30px;
}
.story-fact h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}
.story-fact p {
  color: rgba(244,234,214,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.text-link {
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  font-size: 0.95rem;
}

/* ===========================================================
   MENU
   =========================================================== */
.menu { background: var(--cream); padding: 100px 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-card-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.menu-card-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.menu-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: 600;
}
.badge-outline {
  background: rgba(244,234,214,0.92);
  color: var(--ink);
}
.badge-gold { background: var(--gold); color: var(--maroon-950); }
.badge-green { background: var(--green-900); color: var(--cream); }

.menu-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.menu-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0;
}

/* ===========================================================
   WHY CHOOSE US
   =========================================================== */
.why { background: var(--green-900); padding: 100px 0; }
.why .section-sub { color: rgba(244,234,214,0.75); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line-dark);
  padding-top: 40px;
}
.why-item h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-item p {
  color: rgba(244,234,214,0.72);
  font-size: 0.88rem;
  margin: 0;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { background: var(--cream); padding: 100px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.testimonial-card p {
  color: var(--ink);
  font-size: 0.95rem;
  margin: 0 0 24px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.person-name { margin: 0; font-weight: 600; font-size: 0.9rem; }
.person-role { margin: 0; color: var(--ink-soft); font-size: 0.82rem; }

/* ===========================================================
   CTA
   =========================================================== */
.cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(31,9,25,0.92) 0%, rgba(31,9,25,0.55) 60%, rgba(31,9,25,0.35) 100%);
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; }
.cta h2 {
  color: var(--cream);
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta h2 em { color: var(--gold); }
.cta p {
  color: rgba(244,234,214,0.82);
  margin-bottom: 34px;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--maroon-950); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p {
  color: rgba(244,234,214,0.6);
  font-size: 0.88rem;
  max-width: 260px;
  margin: 18px 0 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244,234,214,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(244,234,214,0.75);
}

.footer-col h5 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(244,234,214,0.65);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  color: rgba(244,234,214,0.5);
  font-size: 0.78rem;
}
.footer-note { max-width: 500px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(244,234,214,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-media img { height: 380px; }
  .story-quote { right: 24px; max-width: none; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .main-nav { display: none; }
  .btn-quote-header { display: none; }
  .hamburger { display: flex; }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--maroon-950);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 18px;
    border-bottom: 1px solid rgba(244,234,214,0.1);
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.6rem; }
  .hero-visual { height: 340px; margin-top: 20px; }
  .badge-circle { left: auto; right: 0; top: -6%; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card--wide { grid-column: span 2; }
  .offer-card--full { grid-column: span 2; }
  .offer-card--photo { flex-direction: column; align-items: flex-start; }
  .offer-card--photo img { width: 100%; height: 180px; }

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

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

  .testimonial-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }

  .hero { padding: 60px 0 80px; }
  .hero-copy h1 { font-size: 2.1rem; }
  .hero-desc { max-width: none; }
  .hero-actions .btn { flex: 1; text-align: center; }

  .hero-visual { height: 280px; }
  .badge-circle { width: 72px; height: 72px; font-size: 0.62rem; }

  .stats-inner { grid-template-columns: 1fr 1fr; }

  .section-title { font-size: 1.8rem; }

  .offer { padding: 70px 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card--wide { grid-column: span 1; }
  .offer-card--full { grid-column: span 1; }

  .story { padding: 70px 0; }
  .story-copy h2 { font-size: 1.8rem; }
  .story-facts { grid-template-columns: 1fr; }
  .story-quote { position: static; margin-top: 20px; }

  .menu { padding: 70px 0; }
  .menu-grid { grid-template-columns: 1fr; }

  .why { padding: 70px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 26px; }

  .testimonials { padding: 70px 0; }

  .cta { padding: 90px 0; }
  .cta h2 { font-size: 2rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { text-align: center; }

  .footer-top { grid-template-columns: 1fr; padding-bottom: 40px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
