/* ============================================================
   BAKPIA SORSAWO — Modern Landing Page Stylesheet
   ============================================================ */

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --clr-cream:       #fdf6ec;
  --clr-cream-dark:  #f5e6cc;
  --clr-gold:        #c8903e;
  --clr-gold-light:  #e5b76a;
  --clr-gold-dark:   #a06c2a;
  --clr-brown:       #5c3317;
  --clr-brown-deep:  #3a1f0d;
  --clr-brown-rich:  #7b3f1d;
  --clr-text:        #2d1810;
  --clr-text-light:  #6b5344;
  --clr-white:       #ffffff;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #e5b76a 0%, #c8903e 50%, #a06c2a 100%);
  --grad-warm: linear-gradient(135deg, #fdf6ec 0%, #f5e6cc 100%);
  --grad-dark: linear-gradient(160deg, #3a1f0d 0%, #5c3317 60%, #7b3f1d 100%);
  --grad-hero: linear-gradient(160deg, #fdf6ec 0%, #f5e6cc 40%, #e5d4b5 100%);

  /* Typography */
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body:    "Inter", "Poppins", system-ui, sans-serif;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(45, 24, 16, 0.06);
  --shadow-md:   0 8px 30px rgba(45, 24, 16, 0.1);
  --shadow-lg:   0 20px 60px rgba(45, 24, 16, 0.15);
  --shadow-glow: 0 0 40px rgba(200, 144, 62, 0.3);

  /* Transitions */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  background-color: var(--clr-cream);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul { list-style: none; }


/* ─── Layout ─── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* ─── Shared Typography ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 1px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--clr-brown-deep);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad-gold);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(200, 144, 62, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 144, 62, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-brown);
  border: 2px solid var(--clr-gold-light);
}

.btn-secondary:hover {
  background: var(--clr-gold-light);
  color: var(--clr-white);
  transform: translateY(-3px);
}


/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}


/* ============================================================
   NAVBAR — Glassmorphism on Scroll
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-base);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(253, 246, 236, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(45, 24, 16, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: var(--transition-base);
}

.navbar.scrolled .nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-brown-deep);
}

.nav-logo-text em {
  font-style: normal;
  color: var(--clr-gold);
}

/* Nav Links Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--clr-gold-dark);
  background: rgba(200, 144, 62, 0.1);
}

.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn-primary {
  padding: 12px 24px;
  font-size: 13px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--clr-brown);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.show {
  display: block;
  opacity: 1;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Decorative blobs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(229, 183, 106, 0.18) 0%, transparent 70%);
  top: -180px;
  right: -80px;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 144, 62, 0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(25px, -25px) scale(1.04); }
}

/* Hero Grid */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content (left) */
.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 144, 62, 0.12);
  border: 1px solid rgba(200, 144, 62, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-gold-dark);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "🔥";
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--clr-brown-deep);
  margin-bottom: var(--space-md);
}

.hero-title .accent {
  position: relative;
  display: inline-block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--grad-gold);
  border-radius: 3px;
  opacity: 0.25;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text-light);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 144, 62, 0.15);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--clr-text-light);
  margin-top: 4px;
}

/* Hero Image (right) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-wrapper > img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease-out);
}

.hero-img-wrapper:hover > img {
  transform: scale(1.02);
}

/* Floating decorative cards */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float-card.top-card {
  top: -8px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-card.bottom-card {
  bottom: 24px;
  right: -16px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.float-icon {
  font-size: 26px;
  line-height: 1;
}

.float-text-small {
  font-size: 12px;
  color: var(--clr-text-light);
  line-height: 1.4;
}

.float-text-big {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-brown-deep);
  line-height: 1.4;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--space-2xl) 0;
  background: var(--grad-warm);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image Gallery */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  position: relative;
}

.about-images .img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-images .img-card:first-child {
  margin-top: 40px;
}

.about-images .img-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-images .img-card:hover img {
  transform: scale(1.06);
}

.about-images .img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(58, 31, 13, 0.2));
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--clr-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
  z-index: 5;
}

/* About Text */
.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.about-text p:first-of-type {
  font-size: 17px;
  color: var(--clr-text);
  font-weight: 500;
}

/* Feature grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 144, 62, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.feature-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-brown);
  line-height: 1.3;
}


/* ============================================================
   MENU
   ============================================================ */
.menu {
  padding: var(--space-2xl) 0;
  background: var(--clr-white);
}

.menu-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.menu-header .section-label {
  justify-content: center;
}

.menu-header .section-label::before {
  display: none;
}

.menu-desc {
  font-size: 16px;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.menu-card {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200, 144, 62, 0.08);
  transition: var(--transition-base);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 144, 62, 0.25);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-gold-dark);
}

.menu-card-body {
  padding: var(--space-md);
}

.menu-card-body h3 {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--clr-brown-deep);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 144, 62, 0.12);
}

.shelf-life {
  font-size: 13px;
  color: var(--clr-text-light);
}

.detail-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.detail-link:hover {
  gap: 8px;
  color: var(--clr-gold-dark);
}

.menu-cta {
  text-align: center;
  margin-top: var(--space-lg);
}


/* ============================================================
   ORDER / CARA PEMESANAN
   ============================================================ */
.order {
  padding: var(--space-2xl) 0;
  background: var(--grad-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.order::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 183, 106, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.order-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

.order-header .section-label {
  color: var(--clr-gold-light);
  justify-content: center;
}

.order-header .section-label::before {
  background: var(--clr-gold-light);
  display: none;
}

.order-header .section-title {
  color: var(--clr-white);
}

/* Steps Grid */
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

/* Connecting line between steps */
.order-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 17%;
  width: 66%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
  opacity: 0.2;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 40px var(--space-md) 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: var(--transition-base);
  position: relative;
  z-index: 2;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 144, 62, 0.25);
  transform: translateY(-6px);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 3;
}

.step-card h4 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-cream);
}

.step-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.order-cta {
  text-align: center;
  margin-top: var(--space-xl);
  position: relative;
  z-index: 2;
}

.order-cta .btn-primary {
  padding: 18px 40px;
  font-size: 16px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  padding: var(--space-2xl) 0;
  background: var(--clr-cream);
}

.testimonial-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

.testimonial-header .section-label {
  justify-content: center;
}

.testimonial-header .section-label::before {
  display: none;
}

/* Testimonial Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--clr-white);
  padding: 36px var(--space-md) 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 144, 62, 0.08);
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 144, 62, 0.2);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--ff-display);
  font-size: 60px;
  color: rgba(200, 144, 62, 0.12);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--clr-gold);
  font-size: 15px;
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.85;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--clr-white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-brown);
  line-height: 1.3;
}

.author-role {
  font-size: 12px;
  color: var(--clr-text-light);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-brown-deep);
  color: var(--clr-white);
  padding-top: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* Footer Brand */
.footer-brand h2 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand h2 em {
  font-style: normal;
  color: var(--clr-gold-light);
}

.footer-brand > p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
  max-width: 300px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-base);
}

.footer-socials a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--clr-gold-light);
  padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition-base);
  z-index: 999;
  border: none;
  line-height: 1;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(200, 144, 62, 0.5);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ─── Tablet ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-img-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-lg);
  }
}


/* ─── Mobile ─── */
@media (max-width: 768px) {
  :root {
    --space-2xl: 80px;
    --space-xl: 56px;
  }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Mobile slide menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(253, 246, 236, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px var(--space-md) var(--space-lg);
    transition: right 0.45s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-sm);
    width: 100%;
  }

  .nav-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 56px;
  }

  .hero-float-card { display: none; }

  /* Grids → 1 col */
  .menu-grid,
  .order-steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .order-steps::before { display: none; }

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

  .about-images .img-card:first-child {
    margin-top: 0;
  }

  .about-images .img-card img {
    height: 200px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    gap: var(--space-md);
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 28px;
  }
}


/* ─── Small Phones ─── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .stat-item {
    text-align: center;
    flex: 1;
  }

  .stat-number {
    font-size: 24px;
  }

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

  .about-images .img-card img {
    height: 220px;
  }

  .about-badge {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--space-sm);
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}