/* Three 31 Catering - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --red: #C8102E;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gold: #D4A017;
  --gray: #6B6B6B;
  --light-gray: #F5F5F5;
  --card-bg: #FAFAFA;
  --border: #E0E0E0;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: 'Bebas Neue', cursive; letter-spacing: 0.04em; }
h4, h5     { font-family: 'Playfair Display', serif; }

/* ─── NOTICE BAR ─── */
.notice-bar {
  background: var(--gold);
  text-align: center;
  padding: 10px 16px;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--black);
  line-height: 1.4;
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-h);
}

.nav-logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover  { background: #a50d24 !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-content { padding-top: 0; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  background-color: rgb(37,36,36);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-stripe { position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--red); }

.hero-content { position: relative; z-index: 2; padding: 60px 80px; max-width: 860px; }

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero h1 { font-size: clamp(2.8rem, 8vw, 7rem); color: var(--white); line-height: 0.92; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tagline::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 36px; font-weight: 300; }

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

.hero-stats { position: absolute; bottom: 36px; right: 80px; display: flex; gap: 40px; }
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', cursive; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 14px 32px;
  font-family: 'Bebas Neue', cursive; font-size: 1.05rem; letter-spacing: 0.1em;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a50d24; transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 12px 30px;
  font-family: 'Bebas Neue', cursive; font-size: 1.05rem; letter-spacing: 0.1em;
  border: 2px solid var(--white); cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 12px 28px;
  font-family: 'Bebas Neue', cursive; font-size: 1.05rem; letter-spacing: 0.1em;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: #b8860b; transform: translateY(-2px); }

/* ─── CONTACT STRIP ─── */
.contact-strip {
  background: var(--black);
  padding: 14px 80px;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
}
.contact-strip a, .contact-strip span {
  color: rgba(255,255,255,0.75); font-size: 0.87rem; text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.contact-strip a:hover { color: var(--gold); }

/* ─── GALLERY STRIP ─── */
.gallery-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 260px; overflow: hidden; }
.gallery-strip > div { overflow: hidden; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-strip > div:hover img { transform: scale(1.06); }

/* ─── SECTIONS ─── */
.section { padding: 80px 80px; }
.section-header { margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  font-family: 'Bebas Neue', cursive; font-size: 0.82rem; letter-spacing: 0.25em;
  color: var(--red); margin-bottom: 10px; text-transform: uppercase;
}
.section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--black); line-height: 1; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 540px; }

/* ─── MENU SECTION ─── */
.order-section { background: var(--light-gray); padding: 80px 80px; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }

.menu-card {
  background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--red);
  overflow: hidden; position: relative; transition: box-shadow 0.2s, transform 0.2s;
}
.menu-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-3px); }

.menu-card-img-wrap { overflow: hidden; height: 190px; }
.menu-card-img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform 0.4s; }
.menu-card:hover .menu-card-img { transform: scale(1.05); }

.menu-card-body { padding: 18px 20px 20px; }
.menu-card h4 { font-size: 1.05rem; margin-bottom: 5px; color: var(--black); }
.menu-card .price { font-family: 'Bebas Neue', cursive; font-size: 1.35rem; color: var(--red); letter-spacing: 0.05em; }
.menu-card .price-note { font-size: 0.76rem; color: var(--gray); margin-left: 4px; font-family: 'Source Sans 3', sans-serif; font-weight: 400; }
.menu-card .market { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 0.92rem; }

.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.qty-btn {
  width: 34px; height: 34px; background: var(--black); color: var(--white);
  border: none; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.qty-btn:hover { background: var(--red); }
.qty-display { font-family: 'Bebas Neue', cursive; font-size: 1.25rem; min-width: 22px; text-align: center; }
.qty-unit { font-size: 0.78rem; color: var(--gray); }

.add-btn {
  margin-top: 12px; width: 100%; background: var(--red); color: var(--white);
  border: none; padding: 12px; font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 0.08em;
  cursor: pointer; transition: background 0.2s;
}
.add-btn:hover { background: #a50d24; }
.add-btn.added { background: #1a7a40; }

/* ─── CART SIDEBAR ─── */
.cart-sidebar {
  position: fixed; top: var(--nav-h); right: -420px;
  width: 400px; height: calc(100vh - var(--nav-h));
  background: var(--white); box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  z-index: 900; display: flex; flex-direction: column;
  transition: right 0.3s ease; border-left: 4px solid var(--red);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  background: var(--black); color: var(--white);
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h3 { font-size: 1.3rem; color: var(--white); }
.cart-close { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 4px; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 40px 16px; color: var(--gray); }

.cart-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border); gap: 10px;
}
.cart-item-info h5 { font-size: 0.92rem; margin-bottom: 3px; }
.cart-item-info span { font-size: 0.8rem; color: var(--gray); }
.cart-item-price { font-family: 'Bebas Neue', cursive; font-size: 1.05rem; color: var(--red); white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1rem; padding: 2px 6px; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--red); }

.cart-footer { padding: 16px; border-top: 2px solid var(--border); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; font-family: 'Bebas Neue', cursive; font-size: 1.35rem; margin-bottom: 12px; }
.cart-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 12px; font-style: italic; }
.cart-checkout-btn {
  width: 100%; background: var(--red); color: var(--white); border: none; padding: 15px;
  font-family: 'Bebas Neue', cursive; font-size: 1.15rem; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s;
}
.cart-checkout-btn:hover { background: #a50d24; }

.cart-btn-float {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--red); color: var(--white); border: none;
  width: 58px; height: 58px; border-radius: 50%; font-size: 1.4rem; cursor: pointer;
  z-index: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,16,46,0.4); transition: transform 0.2s;
}
.cart-btn-float:hover { transform: scale(1.08); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--black);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.68rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}

/* ─── ABOUT TEASER ─── */
.about-teaser {
  background: var(--black); padding: 80px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-text .section-title { color: var(--white); }
.about-text .section-tag { color: var(--gold); }
.about-text p { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: 1rem; }

.about-img-stack { position: relative; height: 400px; }
.about-img-stack img { position: absolute; object-fit: cover; border: 4px solid var(--white); }
.about-img-stack .img1 { width: 72%; height: 80%; top: 0; left: 0; }
.about-img-stack .img2 { width: 52%; height: 55%; bottom: 0; right: 0; border-color: var(--gold); }

/* ─── WHY US ─── */
.why-us { padding: 80px 80px; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.why-card {
  padding: 30px 24px; border: 1px solid var(--border); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--red); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--black); }
.why-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--red); padding: 56px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 6px; font-size: 1rem; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--black); padding: 120px 80px 80px; position: relative; overflow: hidden;
}
.about-hero::after {
  content: '31'; position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', cursive; font-size: 18rem;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.about-hero .section-title { color: var(--white); font-size: clamp(2.6rem, 7vw, 5.5rem); }
.about-hero .section-tag { color: var(--gold); }
.about-hero p { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 1.05rem; line-height: 1.8; }

.story-section {
  padding: 80px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.story-section img { width: 100%; height: 440px; object-fit: cover; border: 4px solid var(--gold); }
.story-text h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 20px; }
.story-text p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 18px; }
.story-quote { border-left: 4px solid var(--red); padding: 14px 20px; margin: 24px 0; background: var(--light-gray); }
.story-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--black); margin: 0; }

.values-section { background: var(--light-gray); padding: 80px 80px; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); padding: 32px; border-left: 5px solid var(--gold); }
.value-card h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--black); }
.value-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

.team-section { padding: 80px 80px; }
.service-types { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.service-type-card { position: relative; height: 300px; overflow: hidden; }
.service-type-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-type-card:hover img { transform: scale(1.05); }
.service-type-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.service-type-overlay h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 6px; }
.service-type-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ─── CONTACT PAGE ─── */
.contact-hero { background: var(--black); padding: 120px 80px 72px; }
.contact-hero .section-title { color: var(--white); font-size: clamp(2.6rem, 7vw, 5.5rem); }
.contact-hero .section-tag { color: var(--gold); }
.contact-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.contact-grid { padding: 80px 80px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { padding: 24px; border: 1px solid var(--border); border-left: 5px solid var(--red); background: var(--card-bg); }
.contact-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--black); }
.contact-card p, .contact-card a { font-size: 0.93rem; color: var(--gray); text-decoration: none; display: block; line-height: 1.7; }
.contact-card a:hover { color: var(--red); }
.contact-icon { font-size: 1.5rem; margin-bottom: 10px; }

.social-links { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  background: var(--black); color: var(--white) !important;
  font-family: 'Bebas Neue', cursive; letter-spacing: 0.1em; font-size: 0.9rem;
  text-decoration: none; transition: background 0.2s;
}
.social-link:hover { background: var(--red) !important; }

.icon { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: text-bottom; fill: currentColor; }

.contact-form-wrap { background: var(--light-gray); padding: 36px; }
.contact-form-wrap h3 { font-size: 1.9rem; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--gray); margin-bottom: 24px; font-size: 0.93rem; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 6px; color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 0;
  background: var(--white); font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem;
  color: var(--black); transition: border-color 0.2s; appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--red); color: var(--white); border: none; padding: 15px;
  font-family: 'Bebas Neue', cursive; font-size: 1.15rem; letter-spacing: 0.1em;
  cursor: pointer; transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: #a50d24; }

/* ─── CHECKOUT MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
  padding: 16px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white); width: 100%; max-width: 560px;
  max-height: calc(100svh - 32px); overflow-y: auto; padding: 28px;
  position: relative; border-radius: 2px;
}

.modal-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px;
}
.modal-header h2 { font-size: 1.9rem; }
.modal-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--gray); line-height: 1; padding: 0 4px; flex-shrink: 0; }

.order-summary-modal { background: var(--light-gray); padding: 18px; margin-bottom: 20px; }
.order-summary-modal h4 { margin-bottom: 10px; font-size: 0.95rem; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.86rem; padding: 4px 0; color: var(--gray); gap: 8px; }
.summary-line span:first-child { flex: 1; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Bebas Neue', cursive; font-size: 1.25rem;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border);
}

/* ─── PAYMENT TABS ─── */
.pay-tab {
  flex: 1; padding: 12px 6px;
  background: var(--white); border: none; border-right: 1px solid var(--border);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--gray);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: background 0.15s, color 0.15s; line-height: 1.3;
}
.pay-tab:last-child { border-right: none; }
.pay-tab:hover { background: var(--light-gray); color: var(--black); }
.pay-tab.active { background: var(--black); color: var(--white); }

.qr-panel img {
  width: min(200px, 60vw); height: min(200px, 60vw);
  object-fit: contain; border: 1px solid var(--border); padding: 8px; background: #fff;
  display: block; margin: 0 auto;
}

/* ─── FOOTER ─── */
.footer { background: var(--black); padding: 56px 80px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; max-width: 240px; }
.footer-col h5 { font-family: 'Bebas Neue', cursive; font-size: 0.95rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem; text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }



/* ─── STATS BAND ─── */
.stats-band {
  background: var(--red);
  padding: 56px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 16px;
    gap: 20px;
  }
}

@media (max-width: 380px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
}

/* ─── SHIPPING CARDS ─── */
.shipping-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .shipping-cards { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.35s; }
.fade-up-4 { animation-delay: 0.5s; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 0 28px; }
  .nav-links { gap: 20px; }

  .hero-content { padding: 60px 40px; }
  .hero-stats   { right: 40px; }

  .section, .order-section, .why-us, .team-section, .values-section { padding: 64px 40px; }
  .about-teaser  { padding: 64px 40px; gap: 40px; }
  .story-section { padding: 64px 40px; gap: 40px; }
  .contact-grid  { padding: 64px 40px; gap: 40px; }
  .footer        { padding: 48px 40px 24px; }
  .cta-band      { padding: 48px 40px; }
  .contact-strip { padding: 14px 40px; }
  .about-hero, .contact-hero { padding: 110px 40px 64px; }

  .about-teaser   { grid-template-columns: 1fr; }
  .about-img-stack { height: 340px; }
  .story-section  { grid-template-columns: 1fr; }
  .story-section img { height: 340px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid       { grid-template-columns: 1fr 1fr; }

  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* ── Nav ── */
  .navbar { padding: 0 16px; height: var(--nav-h); }
  .nav-logo img { height: 44px; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #111;
    flex-direction: column;
    padding: 8px 0 24px;
    gap: 0;
    border-top: 2px solid var(--gold);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a { display: block; padding: 14px 20px; font-size: 1.2rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 16px 0; text-align: center; display: block; }

  /* ── Notice bar ── */
  .notice-bar { font-size: 0.78rem; letter-spacing: 0.06em; padding: 8px 12px; }

  /* ── Hero ── */
  .hero { min-height: 100svh; padding-top: var(--nav-h); }
  .hero-content { padding: 36px 20px 80px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .hero-tagline { font-size: 0.95rem; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
  .hero-stats { display: none; }
  .hero-stripe { display: none; }

  /* ── Contact strip ── */
  .contact-strip { padding: 12px 16px; gap: 12px; flex-direction: column; align-items: flex-start; }

  /* ── Gallery ── */
  .gallery-strip { grid-template-columns: 1fr 1fr; height: 180px; }

  /* ── Sections ── */
  .section, .order-section, .why-us, .team-section, .values-section { padding: 48px 16px; }
  .about-teaser  { padding: 48px 16px; gap: 32px; }
  .story-section { padding: 48px 16px; gap: 24px; }
  .contact-grid  { padding: 48px 16px; gap: 24px; }
  .footer        { padding: 40px 16px 20px; }
  .cta-band      { padding: 36px 16px; gap: 20px; }
  .about-hero, .contact-hero { padding: 96px 16px 48px; }

  /* ── About teaser ── */
  .about-teaser { grid-template-columns: 1fr; }
  .about-img-stack { height: 280px; margin-top: 8px; }
  .about-img-stack .img1 { width: 78%; height: 78%; }
  .about-img-stack .img2 { width: 56%; height: 52%; }

  /* ── Grids → single col ── */
  .why-grid, .values-grid, .service-types, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ── Why cards ── */
  .why-card { padding: 22px 18px; }

  /* ── Story section ── */
  .story-section { grid-template-columns: 1fr; }
  .story-section img { height: 260px; }

  /* ── Service cards ── */
  .service-type-card { height: 240px; }

  /* ── CTA band ── */
  .cta-band { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-band > div:last-child { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

  /* ── Menu grid ── */
  .menu-grid { grid-template-columns: 1fr; gap: 16px; }
  .menu-card-img-wrap { height: 200px; }
  .menu-card-img { height: 200px; }

  /* ── Cart sidebar ── */
  .cart-sidebar { width: 100%; right: -100%; top: var(--nav-h); height: calc(100svh - var(--nav-h)); }

  /* ── Cart float button ── */
  .cart-btn-float { bottom: 20px; right: 16px; width: 54px; height: 54px; font-size: 1.3rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { max-width: 100%; }

  /* ── Social buttons ── */
  .social-links { flex-direction: column; gap: 8px; }
  .social-link { justify-content: center; }

  /* ── Shipping section ── */
  #shipping > div > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important; flex-direction: column; gap: 16px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MODAL / CHECKOUT  (all sizes)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .modal { padding: 20px 16px; max-height: calc(100svh - 24px); }
  .modal-header h2 { font-size: 1.6rem; }

  .order-summary-modal { padding: 14px; }
  .summary-line { font-size: 0.82rem; flex-wrap: wrap; }

  .pay-tab { font-size: 0.78rem; padding: 10px 4px; gap: 3px; }
  .pay-tab span { font-size: 0.95rem; }

  .qr-panel img { width: min(180px, 70vw); height: min(180px, 70vw); }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .form-submit,
  .cart-checkout-btn { font-size: 1rem; padding: 13px; }
}

/* ══════════════════════════════════════════════
   SMALL PHONES  (≤380px)
══════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .about-hero .section-title, .contact-hero .section-title { font-size: 2.4rem; }
  .modal { padding: 16px 12px; }
  .pay-tab { font-size: 0.72rem; }
  .navbar { padding: 0 12px; }
}
