/* ============================================
   Maa's Magic Food Catering Services
   ============================================ */

:root {
  --color-bg: #fdfbf7;
  --color-bg-warm: #f8f0e6;
  --color-bg-dark: #2a0f14;
  --color-surface: #ffffff;
  --color-primary: #7a1c2e;
  --color-primary-dark: #5c1422;
  --color-primary-light: #9e2d42;
  --color-gold: #c9a227;
  --color-gold-light: #e8c547;
  --color-gold-dark: #a6851a;
  --color-accent: #3d5a3a;
  --color-accent-light: #4d7349;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;
  --color-text: #2a1218;
  --color-text-muted: #6b5258;
  --color-text-light: #a89096;
  --color-border: rgba(122, 28, 46, 0.08);
  --color-border-strong: rgba(122, 28, 46, 0.14);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(42, 15, 20, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 15, 20, 0.08);
  --shadow-lg: 0 20px 56px rgba(42, 15, 20, 0.12);
  --shadow-glow: 0 0 80px rgba(201, 162, 39, 0.18);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.35);

  --header-height: 80px;
  --container: 1140px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.875rem;
}

.eyebrow--light { color: var(--color-gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2.125rem, 4vw, 3rem); }
h3 { font-size: 1.3125rem; }

h2 em {
  font-style: italic;
  color: var(--color-primary);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.section-sub {
  color: var(--color-text-muted);
  max-width: 520px;
  margin-top: 1rem;
  line-height: 1.65;
}

.highlight {
  color: var(--color-primary);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.12em;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.35), rgba(201, 162, 39, 0.1));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-sm), 0 4px 20px rgba(122, 28, 46, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 8px 28px rgba(122, 28, 46, 0.32);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

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

.btn-ghost {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(253, 251, 247, 0.96);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 2px 12px rgba(122, 28, 46, 0.12);
  transition: var(--transition);
}

.logo:hover .logo-img {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow);
}

.logo-img--sm {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo-text small {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--color-primary);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5625rem 1.375rem !important;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) !important;
  color: #fff !important;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(122, 28, 46, 0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122, 28, 46, 0.3) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb--1 {
  width: 560px;
  height: 560px;
  background: rgba(122, 28, 46, 0.1);
  top: -15%;
  right: -8%;
}

.hero-orb--2 {
  width: 440px;
  height: 440px;
  background: rgba(201, 162, 39, 0.12);
  bottom: 5%;
  left: -12%;
}

.hero-ring {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-content { max-width: 540px; }

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 1.5rem 0 2rem;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-gold-dark);
  border-radius: 50%;
}

.trust-icon svg {
  width: 12px;
  height: 12px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-logo-frame {
  position: relative;
  margin-bottom: 0.5rem;
}

.hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-logo {
  position: relative;
  width: min(280px, 70vw);
  height: auto;
  border-radius: 50%;
  border: 3px solid rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: #fff;
}

.thali-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 300px;
  transition: var(--transition);
}

.thali-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.thali-card--featured {
  position: relative;
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.thali-card__badge {
  position: absolute;
  top: -11px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-bg-dark);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.thali-card__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.thali-card h3 { margin-bottom: 0.75rem; }

.thali-card ul li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
}

.thali-card ul li::before {
  content: "•";
  color: var(--color-gold);
  margin-right: 0.5rem;
}

.floating-tag {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  letter-spacing: 0.02em;
}

.floating-tag--1 {
  top: 8%;
  left: 0;
  background: var(--color-primary);
  color: #fff;
}

.floating-tag--2 {
  bottom: 12%;
  right: 0;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-bg-dark);
  animation-delay: -2s;
}

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

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #3d1520 100%);
  color: #fff;
  padding: 2.75rem 0;
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Sections */
.section { padding: 6.5rem 0; }

.section--dark {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #1f0a0f 100%);
  color: #fff;
}

.section--warm { background: var(--color-bg-warm); }

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

.section-header--center { text-align: center; }

.section-header--center .section-sub { margin-inline: auto; }

.about-logo-wrap {
  margin-top: 2rem;
}

.about-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-md);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-content .lead { margin-bottom: 1rem; }

.about-content > p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pillar {
  padding: 1.625rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122, 28, 46, 0.08), rgba(201, 162, 39, 0.1));
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.pillar p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.2);
}

.price-card--popular {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.35);
  transform: scale(1.04);
}

.price-card--popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-bg-dark);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.4rem 1.125rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card__tier {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  margin-top: 0.5rem;
}

.price-card__amount span {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-card__list {
  flex: 1;
  margin-bottom: 1.75rem;
}

.price-card__list li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.price-card__list li::before {
  content: "✓";
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.price-card__highlight {
  color: var(--color-gold-light) !important;
  font-weight: 600;
}

.price-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.65;
}

.pricing-note strong { color: rgba(255, 255, 255, 0.65); }

/* Packaging */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pack-card {
  padding: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.pack-card--accent {
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-color: transparent;
}

.pack-card--accent p { color: rgba(255, 255, 255, 0.7); }

.pack-card__number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.pack-card--accent .pack-card__number {
  color: var(--color-gold-light);
  opacity: 0.55;
}

.pack-card h3 { margin-bottom: 0.75rem; }

.pack-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pack-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-gold-dark);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pack-card--accent .pack-card__tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-gold-light);
}

.custom-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(122, 28, 46, 0.06), rgba(201, 162, 39, 0.1));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
}

.custom-banner h3 { margin-bottom: 0.4rem; }

.custom-banner p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Samples */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.sample-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sample-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.25);
}

.sample-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.sample-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sample-card:hover .sample-card__media img {
  transform: scale(1.06);
}

.sample-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 15, 20, 0.88) 0%,
    rgba(42, 15, 20, 0.35) 45%,
    rgba(42, 15, 20, 0.05) 100%
  );
  pointer-events: none;
}

.sample-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg-dark);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.sample-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.25rem;
}

.sample-card__caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.sample-card__caption p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.sample-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  border-top: 3px solid var(--color-gold);
}

.sample-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.125rem;
}

.sample-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

.sample-items li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.sample-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Contact */
.contact-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info .lead { margin: 1rem 0 2rem; }

.contact-card {
  padding: 2.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.35rem;
}

.contact-card__name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
}

.contact-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.contact-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.contact-btn span small {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.contact-btn--call {
  background: var(--color-surface);
  color: var(--color-primary);
  border-color: rgba(122, 28, 46, 0.15);
  box-shadow: var(--shadow-sm);
}

.contact-btn--call:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.contact-btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.contact-card__hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  text-align: center;
}

.contact-quote {
  padding: 2.25rem;
  background: linear-gradient(145deg, var(--color-bg-dark), #3d1520);
  color: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-quote cite {
  font-size: 0.8125rem;
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

.contact-checklist li {
  padding: 0.875rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.contact-checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: fab-pulse 3s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

.whatsapp-fab:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 3rem 0 0;
  border-top: 2px solid rgba(201, 162, 39, 0.25);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: #fff;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
}

.footer-brand span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
  word-break: break-word;
}

.footer-list a:hover { color: #fff; }

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer-copy { font-size: 0.8125rem; }

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { order: -1; }

  .hero-logo { width: min(220px, 55vw); }

  .hero-ring { display: none; }

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

  .pricing-grid,
  .packaging-grid,
  .samples-grid { grid-template-columns: 1fr; }

  .price-card--popular { transform: none; }

  .price-card--popular:hover { transform: translateY(-4px); }

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

  .custom-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .about-logo-wrap { display: none; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }

  .floating-tag { display: none; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
  }

  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-value { font-size: 1.75rem; }

  .section { padding: 4.5rem 0; }

  .sample-items { grid-template-columns: 1fr; }
}
