:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --primary: #D42027;
  --accent: #F5C51A;
  --accent-dark: #C41E22;
  --text: #2b2b34;
  --muted: #6e6e7b;
  --border: #f0e7d8;
  --brand-red: #D42027;
  --brand-yellow: #F5C51A;
  --brand-dark: #5C1A1A;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

button,
.button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--brand-red);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(212, 32, 39, 0.2);
}

.nav-links {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-red);
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(245, 197, 26, 0.35);
}

.button-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
}

.button-secondary {
  background: #fff;
  color: var(--brand-red);
  box-shadow: inset 0 0 0 2px var(--brand-red);
}

.button-secondary:hover {
  box-shadow: inset 0 0 0 2px var(--brand-red), 0 14px 30px rgba(212,32,39,0.12);
}

.button-cta {
  background: var(--accent);
  color: var(--brand-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ── HERO ── */
.hero-section {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: var(--brand-dark);
}

.hero-copy p {
  max-width: 580px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.hero-highlights div {
  padding: 1.1rem 1.2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 12px 30px rgba(35, 31, 32, 0.07);
  border-left: 3px solid var(--accent);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-red);
  font-size: 0.95rem;
}

.hero-highlights p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(212, 32, 39, 0.15);
  object-fit: cover;
  max-height: 580px;
}

/* ── SECTIONS ── */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #fff5f0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  margin: 0.3rem 0 0.75rem;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}

.section-header p {
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}

/* ── PRODUCTS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(35,31,32,0.08);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(35,31,32,0.13);
}

.product-featured {
  border: 3px solid var(--accent);
  box-shadow: 0 20px 60px rgba(212, 32, 39, 0.12);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-body span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-body h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.about-story h3 {
  font-size: 1.5rem;
  color: var(--brand-red);
  margin: 0 0 1rem;
}

.about-story p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.about-story em {
  font-style: normal;
  color: var(--brand-red);
  font-weight: 600;
}

.about-media {
  margin-top: 1.5rem;
}

.about-image {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 55px rgba(212, 32, 39, 0.12);
  object-fit: cover;
  max-height: 380px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-card {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 1.6rem;
  border-left: 4px solid var(--brand-red);
  box-shadow: 0 8px 24px rgba(35,31,32,0.06);
}

.about-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.about-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── FEATURES ── */
.section-card-grid {
  background: #fff5f0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 16px 45px rgba(35,31,32,0.07);
  transition: transform 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  color: var(--brand-red);
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ── JAM OPERASIONAL ── */
.section-hours {
  background: var(--brand-dark);
  color: #fff;
}

.section-hours .section-header h2 {
  color: var(--accent);
}

.section-hours .section-header p {
  color: rgba(255,255,255,0.75);
}

.section-hours .section-header strong {
  color: var(--accent);
}

.section-hours .eyebrow {
  color: var(--accent);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.hours-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245, 197, 26, 0.25);
  border-radius: 2rem;
  padding: 2.2rem;
  text-align: center;
  transition: background 0.22s ease;
}

.hours-card:hover {
  background: rgba(245, 197, 26, 0.1);
}

.hours-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hours-card h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.2rem;
}

.hours-time {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hours-card p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.95rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: #ffffff;
}

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

.testimonial-card {
  background: #fff5f0;
  border-radius: 2rem;
  padding: 2rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 12px 35px rgba(212, 32, 39, 0.06);
}

.testimonial-card p {
  color: var(--text);
  font-size: 1rem;
  margin: 0 0 1.4rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  font-size: 0.98rem;
  color: var(--brand-red);
  margin-bottom: 0.2rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── CTA ── */
.section-cta {
  padding: 4rem 0 5rem;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(120deg, var(--brand-red) 0%, #A01621 100%);
  border-radius: 2rem;
  padding: 2.8rem;
  box-shadow: 0 24px 60px rgba(212, 32, 39, 0.22);
  color: white;
}

.cta-card .eyebrow,
.cta-eyebrow {
  color: var(--accent) !important;
}

.cta-card h2 {
  margin: 0.3rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white;
  letter-spacing: -0.03em;
}

.cta-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  font-size: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  background: #1a0a0a;
  color: #f6f5f0;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.site-footer h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer p {
  margin: 0.35rem 0;
  color: #b0a8a8;
  font-size: 0.93rem;
}

.footer-note {
  text-align: center;
  color: #6e6060;
  font-size: 0.88rem;
  border-top: 1px solid #2e1a1a;
  padding-top: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .button-cta {
    width: 100%;
    justify-content: center;
  }

  .product-card img {
    height: 220px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .nav-links {
    justify-content: center;
    order: 3;
    width: 100%;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 200px;
  }

  .about-cards {
    margin-top: 0;
  }

  .hours-time {
    font-size: 1.6rem;
  }
}
