/* ============================================================
   THE GRAND SWEETS & SNACKS — styles.css
   Premium South Indian Legacy Brand | Est. 1982
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --saffron:      #E8851A;
  --saffron-dark: #C96D0A;
  --gold:         #D4A017;
  --gold-light:   #F0C040;
  --gold-pale:    #F5E5A0;
  --cream:        #FFF8EE;
  --cream-dark:   #F5EDDA;
  --brown:        #3E1F00;
  --brown-mid:    #7A3B00;
  --brown-light:  #A05C1A;
  --white:        #FFFFFF;
  --green-wa:     #25D366;
  --green-wa-dk:  #1DA851;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  --container:  1240px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(62, 31, 0, 0.08);
  --shadow-md:  0 6px 24px rgba(62, 31, 0, 0.12);
  --shadow-lg:  0 16px 48px rgba(62, 31, 0, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--brown-mid);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Scroll Fade-In Animation ─────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ── Kolam / Rangoli Decorative Divider ───────────────────── */
.kolam-divider {
  width: 100%;
  height: 48px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.kolam-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px),
    radial-gradient(circle, var(--saffron) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.45;
}

.kolam-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 90%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--saffron) 50%,
    var(--gold) 80%,
    transparent
  );
}

/* Diamond accent for section headers */
.diamond-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.diamond-rule::before,
.diamond-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.diamond-rule::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.diamond-rule span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 133, 26, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 133, 26, 0.5);
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dk));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}

.btn-outline:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 238, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(62, 31, 0, 0.12);
  border-bottom-color: rgba(212, 160, 23, 0.25);
}

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

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav-logo .brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-logo .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron);
}

/* Nav phone */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  flex-shrink: 0;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--saffron);
  flex-shrink: 0;
}

.nav-phone a {
  color: var(--brown);
  transition: color var(--transition);
}

.nav-phone a:hover {
  color: var(--saffron);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(232, 133, 26, 0.1);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Mobile Nav Open State */
.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO SECTION ─────────────────────────────────────────── */
#home {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--cream);
}

/* Decorative background pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(232, 133, 26, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 160, 23, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(212, 160, 23, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-block: 120px 80px;
}

.hero-content {
  animation: heroFadeUp 0.9s ease 0.2s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown-mid);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--saffron);
  font-style: italic;
}

.hero-title .year {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.trust-stat {
  text-align: center;
}

.trust-stat .number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}

.trust-stat .label {
  font-size: 0.75rem;
  color: var(--brown-mid);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 160, 23, 0.3);
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  animation: heroFadeUp 0.9s ease 0.45s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Decorative frame around hero image */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--gold));
  z-index: -1;
}

.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--saffron);
  min-width: 160px;
}

.hero-float-badge .float-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 4px;
}

.hero-float-badge .float-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
}

.hero-float-badge .float-sub {
  font-size: 0.7rem;
  color: var(--brown-mid);
}

/* ── PRODUCTS SECTION ─────────────────────────────────────── */
#products {
  padding-block: 96px;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin-inline: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.35);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(232, 133, 26, 0.1), rgba(212, 160, 23, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: var(--transition);
  border: 2px solid rgba(212, 160, 23, 0.2);
}

.product-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, rgba(232, 133, 26, 0.18), rgba(212, 160, 23, 0.25));
  transform: scale(1.08);
}

.card-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 160, 23, 0.12);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
#about {
  padding-block: 96px;
  background: var(--cream);
}

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

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gold corner accents */
.about-img-frame::before,
.about-img-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.about-img-frame::before {
  top: 12px;
  left: 12px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
}

.about-img-frame::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
}

.about-year-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-year-badge .badge-year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.about-year-badge .badge-text {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content {
  padding-left: 16px;
}

.about-story {
  font-size: 1rem;
  color: var(--brown-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-story strong {
  color: var(--brown);
  font-weight: 600;
}

.founder-quote {
  background: linear-gradient(135deg, rgba(232, 133, 26, 0.06), rgba(212, 160, 23, 0.08));
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1.65;
}

/* Timeline milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.milestone {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}

.milestone:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.milestone-dot {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(232, 133, 26, 0.3);
}

.milestone-body .milestone-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--saffron);
  text-transform: uppercase;
}

.milestone-body .milestone-text {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.5;
  margin-top: 2px;
}

/* ── BRANCHES SECTION ─────────────────────────────────────── */
#branches {
  padding-block: 96px;
  background: var(--white);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.branch-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.branch-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--saffron);
}

.branch-pin {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(232, 133, 26, 0.12), rgba(212, 160, 23, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}

.branch-info .branch-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.branch-info .branch-address {
  font-size: 0.8rem;
  color: var(--brown-mid);
  line-height: 1.5;
}

.branch-info .branch-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(232, 133, 26, 0.1);
  color: var(--saffron);
  padding: 2px 10px;
  border-radius: 50px;
}

/* ── ORDER / COURIER SECTION ──────────────────────────────── */
#order {
  padding-block: 96px;
  background: linear-gradient(135deg, var(--brown) 0%, #5C2A00 50%, var(--brown) 100%);
  position: relative;
  overflow: hidden;
}

#order::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 160, 23, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.order-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.order-inner .section-tag {
  color: var(--gold-light);
}

.order-inner .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.order-inner .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin-inline: auto;
  max-width: 520px;
}

.order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
  max-width: 700px;
  margin-inline: auto;
  margin-block: 48px;
}

.order-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.order-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-4px);
}

.order-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.order-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.order-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.order-whatsapp-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.order-whatsapp-group .wa-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.order-whatsapp-group .wa-note strong {
  color: var(--gold-light);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: rgba(255, 248, 238, 0.8);
  padding-block: 64px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,248,238,0.65);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.2);
  color: rgba(255,248,238,0.75);
  transition: var(--transition);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,248,238,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--saffron);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255,248,238,0.65);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--saffron);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,248,238,0.65);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,248,238,0.45);
}

.footer-copy strong {
  color: rgba(255,248,238,0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,248,238,0.45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ── FLOATING WHATSAPP BUTTON ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.wa-float-btn:hover {
  background: var(--green-wa-dk);
  transform: scale(1.08);
}

.wa-float-label {
  background: var(--white);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 160, 23, 0.2);
  white-space: nowrap;
}

/* ── RESPONSIVE BREAKPOINTS ───────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 110px 60px;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

  .hero-desc {
    margin-inline: auto;
  }

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

  .about-img-wrap {
    max-width: 500px;
    margin-inline: auto;
  }

  .about-content {
    padding-left: 0;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Navbar */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 248, 238, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }

  .site-header.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    display: block;
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(232, 133, 26, 0.08);
  }

  .nav-phone {
    display: none;
  }

  /* Floating WhatsApp */
  .wa-float {
    display: flex;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Branches */
  .branches-grid {
    grid-template-columns: 1fr;
  }

  /* Order */
  .order-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Hero */
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-img-wrap img {
    height: 300px;
  }

  .hero-float-badge {
    bottom: -12px;
    left: -8px;
  }

  .about-img-frame img {
    height: 420px;
    object-position: center top;
  }

  .about-year-badge {
    bottom: -16px;
    right: -10px;
    width: 80px;
    height: 80px;
  }

  .about-year-badge .badge-year {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }

  .btn-whatsapp {
    padding: 14px 28px;
  }

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

  .container {
    padding-inline: 16px;
  }
}

/* ── Accent / Misc ────────────────────────────────────────── */
::selection {
  background: rgba(232, 133, 26, 0.2);
  color: var(--brown);
}

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth scroll for anchor links */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--saffron);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}
