/* ===================================================
   KEREN SNACK — PREMIUM REDESIGN
   Color System: Warm Neutral + Red Accent Only
   =================================================== */

:root {
  /* Brand accent — RED only as CTA & key highlights */
  --red:        #D92B2B;
  --red-dark:   #A8140D;
  --red-glow:   rgba(217,43,43,0.25);

  /* Warm Neutrals — the new dominant palette */
  --cream:      #FDF6EE;
  --cream-2:    #F5E8D4;
  --cream-3:    #EDD9BF;
  --parchment:  #FAF0E2;

  /* Ink / Typography */
  --ink:        #1E130A;
  --ink-mid:    #3D2B1F;
  --ink-soft:   #7A6655;
  --ink-muted:  #B09A86;

  /* Amber / Secondary accent */
  --amber:      #E8973A;
  --amber-soft: #F5C87A;

  /* Dark (footer bg) */
  --dark:       #1A0F08;
  --dark-2:     #271710;
  --dark-card:  rgba(255,255,255,0.04);

  /* Whites */
  --white:      #FFFFFF;
  --white-soft: rgba(255,255,255,0.9);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(30,19,10,0.06);
  --shadow-md:  0 6px 20px rgba(30,19,10,0.10);
  --shadow-lg:  0 16px 40px rgba(30,19,10,0.14);
  --shadow-card:0 4px 14px rgba(30,19,10,0.08);

  /* Transitions */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================================================
   BASE RESET
   =================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
  font-family: 'Baloo 2', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent rubber-band scroll from interfering with our custom scroll animation */
  overscroll-behavior-y: none;
  /* Remove iOS tap highlight flash */
  -webkit-tap-highlight-color: transparent;
}
/* iOS: Remove default button appearance */
button, [role="button"] {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
/* Remove 300ms tap delay on iOS for all interactive elements */
a, button, [role="button"], input, select, textarea {
  touch-action: manipulation;
}
h1, h2, h3, h4, .display {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 calc(28px + env(safe-area-inset-right)) 0 calc(28px + env(safe-area-inset-left));
}
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ===================================================
   NAVBAR — Glassmorphism + Warm Tone
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Extend behind Dynamic Island / notch */
  padding-top: env(safe-area-inset-top);
  z-index: 100;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.4s var(--ease);
}
.nav.hide {
  transform: translateY(-100%);
}
.nav.scrolled {
  background: rgba(253,246,238,0.98);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid rgba(30,19,10,0.06);
  box-shadow: 0 2px 20px rgba(30,19,10,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Left/right safe area already handled by parent .nav padding-top */
  padding: 14px calc(28px + env(safe-area-inset-right)) 14px calc(28px + env(safe-area-inset-left));
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { height: 44px; }

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}
.nav.scrolled .nav-links {
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
  color: inherit;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* CTA — Dark, NOT red */
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(30,19,10,0.2);
}
.nav-cta:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,19,10,0.3);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s;
}
.nav.scrolled .nav-toggle {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav.scrolled .nav-toggle span {
  background: var(--ink);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px calc(28px + env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) calc(28px + env(safe-area-inset-left));
  border-top: 1px solid rgba(255,255,255,0.15);
  background: rgba(11, 45, 30, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  /* iOS momentum scroll if drawer is long */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer a {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: #fff; }
.nav-drawer .nav-cta {
  margin-top: 12px;
  text-align: center;
  border-radius: 12px;
  padding: 13px 22px;
}
.nav-drawer.open { display: flex; }

/* Scrolled state for drawer (Cream bg) */
.nav.scrolled .nav-drawer {
  background: rgba(253,246,238,0.98);
  border-top: 1px solid rgba(30,19,10,0.06);
}
.nav.scrolled .nav-drawer a:not(.nav-cta) {
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(30,19,10,0.06);
}
.nav.scrolled .nav-drawer a:not(.nav-cta):hover {
  color: var(--ink);
}

/* ===================================================
   EYEBROW BADGE
   =================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--cream-3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  /* Add safe-area-inset-top so content clears Dynamic Island / notch */
  padding: calc(120px + env(safe-area-inset-top)) 0 60px;
  min-height: 100vh; /* fallback */
  min-height: 100dvh; /* iOS Safari: accounts for dynamic toolbar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(11, 45, 30, 0.88), rgba(11, 45, 30, 0.96)), url('../assets/about/kolase-produk.png') center/cover no-repeat;
  color: white;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.1;
  margin: 20px 0 18px;
  color: #ffffff;
  text-align: center;
  text-wrap: balance;
}
/* Only em is red — a targeted accent */
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative;
}

.hero p.lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.65;
  margin: 0 auto 32px auto;
  text-align: center;
  text-wrap: balance;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }

/* Primary CTA — RED */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s;
}
.btn-primary:hover {
  background: #c21a12;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.25s var(--ease), border-color 0.25s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Stats */
.hero-stats { display: flex; gap: 40px; justify-content: center; }
.hero-stats div strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--amber);
  line-height: 1;
}
.hero-stats div span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  display: block;
}



/* ===================================================
   SECTION GENERIC
   =================================================== */
section { padding: 80px 0; }
.sec-head { max-width: 600px; margin-bottom: 48px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { font-size: 38px; color: var(--ink); line-height: 1.12; }
.sec-head p { color: var(--ink-soft); margin-top: 14px; font-size: 16px; line-height: 1.65; }

/* ===================================================
   ABOUT
   =================================================== */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo .frame img { width: 100%; height: 360px; object-fit: cover; }

/* Chip — amber, not red */
.about-photo .chip {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--amber);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 13.5px;
  box-shadow: var(--shadow-md);
  max-width: 210px;
  line-height: 1.45;
  border: 3px solid var(--white);
}

.about-text .eyebrow { margin-bottom: 18px; }
.about-text h2 { font-size: 34px; margin-bottom: 18px; line-height: 1.15; }
.about-text p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; }
.about-list { margin-top: 24px; display: grid; gap: 14px; }
.about-list div { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink); font-weight: 600; }

/* Checkmarks — amber, not red */
.about-list .ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
  font-weight: 800;
}

/* ===================================================
   WHY (Keunggulan)
   =================================================== */
.why { background: var(--parchment); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.why-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--ink); }
.why-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ===================================================
   CATALOG
   =================================================== */
.catalog { background: var(--white); }
.cat-block { margin-bottom: 56px; }
.cat-block:last-child { margin-bottom: 0; }

.cat-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--cream-3);
}
/* Category number — amber/dark, not red */
.cat-count {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--amber);
  opacity: 0.9;
  line-height: 1;
}
.cat-heading h3 { font-size: 22px; color: var(--ink); }
.cat-heading p { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }

/* Category nav pills */
.cat-nav a,
.cat-nav-pill {
  font-size: 13px;
  font-weight: 700;
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--ink-soft);
  border: 1.5px solid var(--cream-3);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.cat-nav a:hover,
.cat-nav-pill:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* Product grid */
.p-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }

.p-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--cream-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
}
.p-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(30,19,10,0.14);
  border-color: var(--cream-3);
}
.p-card:hover::after {
  border-color: rgba(232,151,58,0.35);
}

.p-photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: var(--cream-2);
  overflow: hidden;
}
.p-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.p-card:hover .p-photo img { transform: scale(1.08); }

/* Carousel Additions */
.p-carousel-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: var(--cream-2);
}
.p-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  height: 100%;
}
.p-carousel::-webkit-scrollbar { display: none; }
.p-carousel img {
  scroll-snap-align: center;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.p-card:hover .p-carousel img { transform: scale(1.08); }

.p-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
}
.p-carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(30, 19, 10, 0.25);
  transition: all 0.3s ease;
}
.p-carousel-dots .dot.active {
  background: var(--amber);
  transform: scale(1.25);
}

.p-info { padding: 13px 15px 7px; }
.p-info h3 { font-family: 'Baloo 2', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.35; min-height: 38px; color: var(--ink); }
.p-barcode { font-size: 10px; color: var(--ink-muted); font-weight: 500; }

.p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 15px;
}
/* Price — dark red */
.p-price { font-weight: 800; color: var(--red-dark); font-size: 14px; }

/* Order button — dark/ink */
.p-order {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.25s var(--ease), transform 0.2s;
}
.p-order:hover {
  background: var(--amber);
  color: var(--ink);
  transform: scale(1.04);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testi { background: var(--parchment); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--cream-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-mark {
  font-family: 'Fraunces', serif;
  font-size: 50px;
  color: var(--amber);
  line-height: 0.9;
  margin-bottom: 10px;
}
.testi-card p.quote {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testi-person { display: flex; align-items: center; gap: 13px; }

/* Avatars — amber/dark, not red */
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 14px; color: var(--ink); }
.testi-person span { font-size: 12px; color: var(--ink-soft); }

/* ===================================================
   CONTACT — Dark charcoal, NOT red
   =================================================== */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* Contact info panel — sleek solid dark background */
.contact-info {
  background: var(--dark);
  color: var(--white);
  padding: 52px 48px;
}
.contact-info h2 { font-size: 30px; margin-bottom: 14px; line-height: 1.2; color: var(--cream); }
.contact-info > p { color: rgba(253,246,238,0.7); font-size: 14.5px; line-height: 1.7; margin-bottom: 34px; }

.contact-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-row .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.contact-row .ic svg {
  width: 20px;
  height: 20px;
}
.contact-row strong { display: block; font-size: 13.5px; color: var(--cream); font-weight: 600; margin-bottom: 4px; }
.contact-row span { display: block; font-size: 13.5px; color: rgba(253,246,238,0.7); line-height: 1.6; }

/* Contact actions wrapper */
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* WA buttons — professional contact style */
.contact-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.25s var(--ease), transform 0.2s, box-shadow 0.25s;
}
.contact-wa:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.25);
}

.contact-wa.alt {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--cream);
}
.contact-wa.alt:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}

.contact-map { background: var(--cream-2); display: flex; position: relative; user-select: none; -webkit-user-select: none; }
.map-link-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; cursor: pointer; }
.contact-map iframe { width: 100%; height: 100%; border: none; min-height: 360px; display: block; user-select: none; -webkit-user-select: none; }

/* ===================================================
   FOOTER — Dark charcoal
   =================================================== */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: 70px 0 calc(28px + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,246,238,0.1);
  position: relative;
}

.footer-brand-col { max-width: 320px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.footer-brand img {
  height: 64px;
}
.footer-brand span {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
}

.footer-desc { font-size: 14.5px; color: rgba(253,246,238,0.75); line-height: 1.7; }

.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-links div h4 {
  font-family: 'Fraunces', serif;
  font-size: 14.5px;
  color: var(--amber-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11.5px;
}
.footer-links div a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(253,246,238,0.6);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links div a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(253,246,238,0.38);
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 500;
  position: relative;
}

/* ===================================================
   FLOATING WA BUTTON
   =================================================== */
.wa-float {
  position: fixed;
  bottom: calc(26px + env(safe-area-inset-bottom));
  right: calc(26px + env(safe-area-inset-right));
  background: #25D366;
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  z-index: 60;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 36px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; position: relative; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0;   }
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.show { opacity: 1; transform: translateY(0); }

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

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Tablet: 980px --- */
@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 42px; }
  .sec-head h2 { font-size: 30px; }
  .about-photo .chip { left: 0; bottom: -16px; }
  .contact-map iframe { min-height: 300px; }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
  .wrap { padding: 0 calc(20px + env(safe-area-inset-right)) 0 calc(20px + env(safe-area-inset-left)); }
  section { padding: 60px 0; }
  .sec-head { margin-bottom: 36px; }
  .hero { padding: 100px 0 50px; }
  .hero h1 { font-size: 38px; }
  .hero p.lead { font-size: 16px; }
  .hero-stats { gap: 28px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand-col { max-width: 100%; }
}

/* --- Mobile: 660px --- */
@media (max-width: 660px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .p-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { font-size: 15px; max-width: 320px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .contact-info { padding: 36px 24px; }
  .contact-actions { flex-direction: row; gap: 10px; }
  .contact-wa { flex: 1; padding: 12px 10px; font-size: 13.5px; }
  .footer-links { gap: 28px; }
  .cat-heading { flex-wrap: wrap; gap: 10px; }
}

/* --- Small Mobile: 480px --- */
@media (max-width: 480px) {
  .wrap { padding: 0 calc(16px + env(safe-area-inset-right)) 0 calc(16px + env(safe-area-inset-left)); }
  section { padding: 50px 0; }
  .hero { padding: 90px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero-stats div strong { font-size: 22px; }
  .hero-stats div span { font-size: 11px; }
  .why-grid { grid-template-columns: 1fr; }
  .p-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .p-info h3 { font-size: 13px; }
  .sec-head h2 { font-size: 26px; }
  .about-text h2 { font-size: 26px; }
  .testi-card { padding: 24px 20px; }
  .contact-info h2 { font-size: 24px; }
  footer { padding: 50px 0 calc(20px + env(safe-area-inset-bottom)); }
}

/* --- Tiny Mobile: 360px --- */
@media (max-width: 360px) {
  .hero h1 { font-size: 24px; }
  .p-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stats { gap: 16px; }
  .btn-primary, .btn-secondary { font-size: 14px; padding: 13px 20px; }
}

/* --- Landscape Mobile (short screens) --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: unset;
    padding: 80px 0 40px;
  }
  .hero h1 { font-size: 28px; margin: 12px 0 10px; }
  .hero p.lead { display: none; }
  .hero-stats { display: none; }
}