/* ============================================================
   PRECIOUS MOMENTS PHOTOGRAPHY
   Earthy luxury aesthetic — sage, forest, olive, teal
   ============================================================ */

:root {
  /* Brand palette */
  --sage: #7B9669;
  --gray: #E6E6E6;
  --teal: #6C8480;
  --olive: #BAC8B1;
  --forest: #404E3B;

  /* Derived */
  --forest-dark: #2C3729;
  --forest-soft: #4D5C47;
  --cream: #F7F4ED;
  --cream-warm: #EFE9DC;
  --ink: #1F2620;
  --ink-soft: #3A4338;
  --muted: #6F7A6B;

  /* Typography */
  --f-display: 'Fraunces', 'Cormorant Garamond', serif;
  --f-serif: 'Cormorant Garamond', serif;
  --f-sans: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

/* Subtle film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ===================== TYPOGRAPHY ===================== */

.italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(123, 150, 105, 0.18);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 20px;
}

.section-sub, .lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.65;
}

.lead { margin-bottom: 16px; }

/* ===================== NAV ===================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px var(--pad);
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(247, 244, 237, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(64, 78, 59, 0.08);
  padding: 12px var(--pad);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--forest);
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}
.brand-light, .brand-light .brand-mark { color: var(--cream); }
.brand-light .brand-sub { color: var(--olive); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--forest); }
.nav-link.active {
  color: var(--forest);
  background: rgba(186, 200, 177, 0.45);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(64, 78, 59, 0.25);
}

.hamburger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: rgba(64, 78, 59, 0.06);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--forest);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 70px; left: 16px; right: 16px;
  background: var(--cream);
  border: 1px solid rgba(64, 78, 59, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 30px 60px -20px rgba(64, 78, 59, 0.25);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 999;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.m-link {
  padding: 14px 16px;
  font-size: 16px;
  color: var(--ink-soft);
  border-radius: 12px;
  transition: background 0.2s;
}
.m-link:hover, .m-link:active { background: rgba(186, 200, 177, 0.4); }
.m-cta {
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--pad) 60px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(186, 200, 177, 0.55), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(108, 132, 128, 0.30), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(123, 150, 105, 0.20), transparent 60%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: var(--sage);
  top: -100px; right: -50px;
  animation: orbDrift 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: var(--teal);
  bottom: 50px; left: -80px;
  animation: orbDrift 22s ease-in-out infinite reverse;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(64, 78, 59, 0.1);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 150, 105, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(123, 150, 105, 0); }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--forest);
  margin-bottom: 28px;
}
.hero-title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 25px -8px rgba(64, 78, 59, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--forest-dark);
  box-shadow: 0 16px 32px -10px rgba(64, 78, 59, 0.55);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--forest);
  border: 1px solid rgba(64, 78, 59, 0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
.stat-num small { font-size: 0.6em; color: var(--sage); }
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px; height: 32px;
  background: rgba(64, 78, 59, 0.15);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 560px;
}
.hv-frame {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--olive);
  box-shadow: 0 30px 60px -20px rgba(64, 78, 59, 0.35);
  transition: transform 0.6s var(--ease);
}
.hv-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hv-frame-main {
  width: 65%; height: 70%;
  top: 8%; left: 0;
  z-index: 2;
  animation: float1 6s ease-in-out infinite;
}
.hv-frame-acc {
  width: 45%; height: 50%;
  bottom: 5%; right: 0;
  z-index: 3;
  border: 8px solid var(--cream);
  animation: float2 7s ease-in-out infinite;
}
.hv-frame-acc-2 {
  width: 38%; height: 32%;
  top: 0; right: 8%;
  z-index: 1;
  animation: float3 8s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes float3 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(-2deg)} }

.hv-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}

.hv-badge {
  position: absolute;
  bottom: 30px; left: -10px;
  z-index: 5;
  padding: 14px 20px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 16px 40px -10px rgba(64, 78, 59, 0.3);
  border: 1px solid rgba(64, 78, 59, 0.08);
  animation: float2 6s ease-in-out infinite;
}
.hv-badge-stars {
  color: var(--sage);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.hv-badge-text {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Hero marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(64, 78, 59, 0.1);
  overflow: hidden;
  background: rgba(247, 244, 237, 0.4);
  backdrop-filter: blur(10px);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
  font-weight: 400;
}
.marquee-track span:nth-child(even) {
  color: var(--sage);
  font-style: normal;
  font-weight: 300;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */

.section {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.section-head {
  max-width: 780px;
  margin-bottom: 64px;
}

/* ===================== CATEGORIES ===================== */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  border: 1px solid rgba(64, 78, 59, 0.06);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(64, 78, 59, 0.4);
}

.cat-card.span-6 { grid-column: span 6; }
.cat-card.span-4 { grid-column: span 4; }
.cat-card.span-8 { grid-column: span 8; min-height: 320px; }
.cat-card.span-12 { grid-column: span 12; min-height: 280px; }

.cat-card.tall { min-height: 460px; }

.cat-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.cat-card:hover .cat-img img { transform: scale(1.06); }

.cat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(64, 78, 59, 0.1) 0%,
    rgba(64, 78, 59, 0.5) 60%,
    rgba(44, 55, 41, 0.85) 100%);
}

.cat-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: var(--cream);
}

.cat-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.6;
  z-index: 2;
}

.cat-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.cat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 244, 237, 0.78);
  margin-bottom: 20px;
  max-width: 90%;
}

.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 244, 237, 0.4);
  padding-bottom: 6px;
  width: fit-content;
  transition: all 0.3s var(--ease);
}
.cat-card:hover .cat-cta {
  color: var(--olive);
  border-color: var(--olive);
  gap: 12px;
}

/* ===================== ABOUT ===================== */

.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about-imgs {
  position: relative;
  aspect-ratio: 4/5;
}
.ai-1, .ai-2 {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--olive);
}
.ai-1 {
  width: 70%; height: 80%;
  top: 0; left: 0;
  z-index: 2;
  box-shadow: 0 30px 50px -20px rgba(64, 78, 59, 0.35);
}
.ai-2 {
  width: 50%; height: 50%;
  bottom: 0; right: 0;
  z-index: 3;
  border: 8px solid var(--cream);
  box-shadow: 0 20px 40px -15px rgba(64, 78, 59, 0.4);
}
.ai-1 img, .ai-2 img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ai-deco {
  position: absolute;
  top: -30px; right: 10%;
  width: 140px; height: 140px;
  color: var(--sage);
  opacity: 0.4;
  z-index: 1;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.pillar {
  padding: 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(64, 78, 59, 0.08);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.pillar:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
  border-color: rgba(123, 150, 105, 0.3);
}
.pillar-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--olive);
  color: var(--forest);
  border-radius: 12px;
  margin-bottom: 14px;
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px 32px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(123, 150, 105, 0.4), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(108, 132, 128, 0.3), transparent 50%);
}
.counter {
  position: relative;
  text-align: center;
  border-right: 1px solid rgba(247, 244, 237, 0.12);
  padding: 0 16px;
}
.counter:last-child { border-right: none; }
.c-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.c-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

/* ===================== CONTACT ===================== */

.contact {
  background: var(--cream-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 32px 0;
}
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(64, 78, 59, 0.1);
  align-items: flex-start;
}
.contact-list li:last-child { border-bottom: none; }
.cl-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--olive);
  color: var(--forest);
  border-radius: 10px;
  flex-shrink: 0;
}
.cl-icon svg { width: 18px; height: 18px; }
.cl-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 500;
}
.contact-list a { color: var(--forest); font-weight: 500; transition: color 0.2s; }
.contact-list a:hover { color: var(--sage); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.5);
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(37, 211, 102, 0.55);
}

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(64, 78, 59, 0.08);
  box-shadow: 0 30px 60px -25px rgba(64, 78, 59, 0.18);
}
.form-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}
.field-row .field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-warm);
  border: 1.5px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  font-size: 14.5px;
  transition: all 0.25s var(--ease);
  font-family: var(--f-sans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--cream);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23404E3B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ===================== FOOTER ===================== */

.footer {
  background: var(--forest);
  color: var(--olive);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(123, 150, 105, 0.18), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(108, 132, 128, 0.18), transparent 40%);
}

.footer-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
}

.f-brand .brand { margin-bottom: 16px; }
.f-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--olive);
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 280px;
}
.f-socials {
  display: flex;
  gap: 10px;
}
.f-socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(247, 244, 237, 0.06);
  border: 1px solid rgba(247, 244, 237, 0.12);
  border-radius: 50%;
  color: var(--olive);
  transition: all 0.3s var(--ease);
}
.f-socials a:hover {
  background: var(--cream);
  color: var(--forest);
  transform: translateY(-2px);
}

.f-col h5 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.f-col a, .f-col p {
  display: block;
  font-size: 13.5px;
  color: var(--olive);
  margin-bottom: 10px;
  transition: color 0.2s;
  opacity: 0.85;
}
.f-col a:hover { color: var(--cream); opacity: 1; }

.f-bottom {
  position: relative;
  border-top: 1px solid rgba(247, 244, 237, 0.1);
  padding: 24px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--olive);
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 8px;
}
.f-credit { font-style: italic; font-family: var(--f-display); font-size: 14px; }

/* ===================== MODAL ===================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; animation: modalFade 0.4s var(--ease); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 55, 41, 0.65);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  animation: modalSlide 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
}
@keyframes modalSlide { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(247, 244, 237, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--forest);
  z-index: 10;
  transition: all 0.25s var(--ease);
}
.modal-close:hover {
  background: var(--forest);
  color: var(--cream);
  transform: rotate(90deg);
}

.modal-body {
  overflow-y: auto;
  padding: 0;
}

.mb-hero {
  position: relative;
  padding: 60px 50px 40px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--cream-warm) 100%);
}
.mb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(108, 132, 128, 0.25), transparent 50%);
}
.mb-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  align-items: center;
}
.mb-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 14px;
}
.mb-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.mb-title .italic { color: var(--sage); }
.mb-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 540px;
}
.mb-img {
  width: 200px; height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 40px -10px rgba(64, 78, 59, 0.3);
}
.mb-img img { width: 100%; height: 100%; object-fit: cover; }

.mb-pricing {
  padding: 50px;
}
.mb-pricing-head {
  margin-bottom: 30px;
}
.mb-pricing-title {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 6px;
}
.mb-pricing-sub {
  font-size: 14px;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.price-card {
  position: relative;
  background: var(--cream-warm);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 20px 40px -15px rgba(123, 150, 105, 0.3);
}
.price-card.featured {
  background: var(--forest);
  color: var(--cream);
  transform: scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(64, 78, 59, 0.45);
}
.price-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.price-card.featured .price-name { color: var(--olive); }
.price-card.featured .price-amount { color: var(--cream); }
.price-card.featured .price-features li { color: rgba(247, 244, 237, 0.85); }
.price-card.featured .price-features li::before { background: var(--sage); }

.price-badge {
  position: absolute;
  top: -10px; right: 20px;
  padding: 4px 12px;
  background: var(--sage);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}
.price-name {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.price-amount small {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--f-sans);
  font-weight: 400;
  margin-left: 2px;
}
.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 18px;
}
.price-features li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.4;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.price-book {
  width: 100%;
  padding: 12px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.price-book:hover { background: var(--forest-dark); }
.price-card.featured .price-book {
  background: var(--cream);
  color: var(--forest);
}
.price-card.featured .price-book:hover {
  background: var(--olive);
}

/* ===================== FLOATING WHATSAPP ===================== */

.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55);
  z-index: 500;
  transition: all 0.3s var(--ease);
  animation: pulseRing 2.5s ease-out infinite;
}
.float-wa:hover {
  transform: scale(1.1);
}
@keyframes pulseRing {
  0% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================== REVEAL ANIMATIONS ===================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 480px; max-width: 600px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-imgs { max-width: 420px; aspect-ratio: 5/4; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .cat-card.span-6, .cat-card.span-4, .cat-card.span-8 {
    grid-column: span 6;
  }
  .cat-card.span-12 { grid-column: span 12; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 110px; }
  .hero-visual { height: 420px; }
  .hv-frame-acc { width: 50%; }

  .pillars { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; gap: 0; padding: 30px 20px; }
  .counter:nth-child(2) { border-right: none; }
  .counter:nth-child(1), .counter:nth-child(2) {
    border-bottom: 1px solid rgba(247, 244, 237, 0.12);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px var(--pad) 30px; }
  .f-bottom { flex-direction: column; text-align: center; }

  .cat-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat-card.span-6, .cat-card.span-4, .cat-card.span-8, .cat-card.span-12 {
    grid-column: span 12;
    min-height: 340px;
  }
  .cat-card.tall { min-height: 340px; }

  .mb-hero { padding: 40px 28px 28px; }
  .mb-hero-inner { grid-template-columns: 1fr; }
  .mb-img { width: 140px; height: 140px; order: -1; }
  .mb-pricing { padding: 32px 24px; }
  .price-grid { grid-template-columns: 1fr; }

  .marquee-track { font-size: 18px; gap: 28px; }

  .float-wa { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 8px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .btn { padding: 14px 22px; font-size: 13px; }

  .contact-form { padding: 24px 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
