/* =====================================================================
   REVATI CONSULTANCY — brand + site styles (bright edition)
   CSS custom properties ARE the brand tokens. Reuse for any future asset.
   ===================================================================== */

:root {
  /* Brand accent (exact from the official Revati logo) */
  --gold:         #C9A263;
  --gold-deep:    #A2793A;   /* gold text/hover on light */
  --gold-light:   #E3CD9A;
  --gold-soft:    #F4EAD4;   /* pale gold wash for tints/badges */
  --silver:       #A7ACB2;

  /* Bright surfaces */
  --white:        #FFFFFF;
  --ivory:        #FBF8F2;   /* warm off-white */
  --cream:        #F5EFE3;   /* soft warm panel */
  --sand:         #EEE5D3;   /* deeper warm panel */

  /* Text (warm charcoal — never pure black) */
  --ink:          #2A2825;
  --ink-soft:     #5B584F;
  --ink-muted:    #8C887E;

  --border:       #ECE4D6;   /* warm hairline */
  --border-strong:#DDD2BE;

  --wa:           #25D366;
  --wa-deep:      #128C7E;

  --bg:           var(--ivory);
  --text:         var(--ink);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --container:    1180px;
  --gutter:       clamp(1.15rem, 4vw, 2.5rem);
  --section-y:    clamp(4.5rem, 9vw, 8rem);
  --radius:       14px;
  --radius-sm:    9px;

  --shadow-sm:    0 10px 30px -18px rgba(42, 40, 37, 0.28);
  --shadow-md:    0 26px 60px -30px rgba(42, 40, 37, 0.30);
  --shadow-lg:    0 40px 90px -40px rgba(120, 90, 30, 0.35);
  --shadow-float: 0 22px 48px -22px rgba(120, 90, 30, 0.30);
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--gold); color: #241a08; padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 3px; }

/* ---------- Type helpers ---------- */
.eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; font-weight: 500; color: var(--ink-muted); margin: 0 0 1rem; display: inline-flex; align-items: center; gap: 0.7rem; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow--gold { color: var(--gold-deep); }

.section { padding-block: var(--section-y); }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
.section__head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section__sub { color: var(--ink-soft); font-size: 1.08rem; margin: 1rem 0 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.92rem 1.6rem; font-family: var(--font-body); font-weight: 500; font-size: 0.98rem; letter-spacing: 0.01em; border-radius: 100px; border: 1.5px solid transparent; transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn span[aria-hidden] { transition: transform 0.25s var(--ease); }
.btn:hover span[aria-hidden] { transform: translateX(3px); }

.btn--gold { background: var(--gold); color: #2a1e06; box-shadow: 0 14px 30px -12px rgba(201, 162, 99, 0.65); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline { border-color: var(--border-strong); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ink:hover { background: #443f38; }
.btn--outline-ink { border-color: rgba(42,40,37,0.3); color: var(--ink); }
.btn--outline-ink:hover { border-color: var(--ink); background: rgba(42,40,37,0.05); }
.btn--whatsapp { background: var(--wa); color: #04321f; box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.55); }
.btn--whatsapp:hover { background: #2ee06f; }
.btn--whatsapp span[aria-hidden] { transform: none; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--cream); color: var(--ink-soft); font-size: 0.82rem; border-bottom: 1px solid var(--border); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; padding-block: 0.35rem; }
.topbar__tag { margin: 0; letter-spacing: 0.02em; }
.topbar__links { display: flex; gap: 1.4rem; }
.topbar__link { color: var(--ink); transition: color 0.2s; white-space: nowrap; }
.topbar__link:hover { color: var(--gold-deep); }
.topbar__link span { color: var(--gold-deep); margin-right: 0.3rem; }
@media (max-width: 760px) { .topbar__tag { display: none; } .topbar__inner { justify-content: center; } .topbar__links { gap: 1rem; font-size: 0.78rem; } }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251, 248, 242, 0.85); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.site-header.is-stuck { border-bottom-color: var(--border); box-shadow: 0 6px 24px -18px rgba(42, 40, 37, 0.3); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 0.85rem; color: var(--ink); }
.brand__logo { height: 44px; width: auto; display: block; }
.brand__logo--footer { height: 58px; }
.brand__divider { width: 1px; height: 30px; background: var(--border-strong); }
.brand__division { font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--ink-soft); }
@media (max-width: 560px) { .brand__divider, .brand__division { display: none; } .brand__logo { height: 40px; } }

.nav__menu { list-style: none; display: flex; align-items: center; gap: 0.4rem; margin: 0; padding: 0; }
.nav__menu > li > a { display: inline-block; padding: 0.55rem 0.95rem; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); border-radius: 100px; position: relative; transition: color 0.2s; }
.nav__menu > li > a:not(.nav__cta)::after { content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.36rem; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease); }
.nav__menu > li > a:not(.nav__cta):hover { color: var(--ink); }
.nav__menu > li > a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta { background: var(--gold); color: #2a1e06 !important; margin-left: 0.5rem; padding: 0.6rem 1.25rem !important; transition: background 0.25s, transform 0.25s; }
.nav__cta:hover { background: var(--gold-deep); color: #fff !important; transform: translateY(-1px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border-strong); border-radius: 10px; }
.nav__toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu { position: absolute; top: calc(100% + 1px); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0.15rem; background: var(--ivory); border-bottom: 1px solid var(--border); padding: 0.8rem var(--gutter) 1.4rem; box-shadow: var(--shadow-md); clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none; transition: clip-path 0.35s var(--ease), opacity 0.3s; }
  .nav__menu.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav__menu > li > a { padding: 0.85rem 0.5rem; font-size: 1.05rem; border-radius: 8px; }
  .nav__menu > li > a::after { display: none; }
  .nav__cta { margin: 0.5rem 0 0; text-align: center; }
}

/* ---------- Hero (bright, floating) ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6rem); background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 60%, var(--cream) 100%); }
.hero__decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); }
.hero__blob--1 { top: -12%; right: -6%; width: 46vw; max-width: 620px; aspect-ratio: 1; background: radial-gradient(circle at center, rgba(201,162,99,0.28), rgba(201,162,99,0.05) 55%, transparent 72%); }
.hero__blob--2 { bottom: -18%; left: -10%; width: 40vw; max-width: 540px; aspect-ratio: 1; background: radial-gradient(circle at center, rgba(201,162,99,0.14), transparent 66%); }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(162,121,58,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(162,121,58,0.05) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(circle at 76% 26%, #000 0%, transparent 60%); mask-image: radial-gradient(circle at 76% 26%, #000 0%, transparent 60%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.7rem, 6.6vw, 5rem); font-weight: 700; letter-spacing: -0.02em; margin: 0.4rem 0 0; }
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero__lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 540px; margin: 1.4rem 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin: 2.2rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--border); }
.hero__chips li { position: relative; padding-left: 1.5rem; font-size: 0.92rem; color: var(--ink-soft); }
.hero__chips li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

/* Hero media + floating cards */
.hero__media { position: relative; }
.hero__media-frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--white); aspect-ratio: 4 / 3.4; }
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media::before { content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; background: var(--gold-soft); border-radius: 26px; z-index: -1; }
.hero__float { position: absolute; display: flex; align-items: center; gap: 0.7rem; background: rgba(255,255,255,0.94); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 14px; padding: 0.75rem 0.95rem; box-shadow: var(--shadow-float); }
.hero__float strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
.hero__float span { font-size: 0.78rem; color: var(--ink-soft); }
.hero__float-icon { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--gold); color: #2a1e06; display: inline-flex; align-items: center; justify-content: center; }
.hero__float--stat { top: 1.4rem; left: -1.4rem; }
.hero__float--chip { bottom: 1.4rem; right: -1.4rem; max-width: 260px; }
.hero__float--chip .hero__float-icon { background: var(--ink); color: var(--gold-light); }
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero__media { max-width: 560px; }
  .hero__float--stat { left: 0; }
  .hero__float--chip { right: 0; }
}
@media (max-width: 480px) {
  .hero__float { padding: 0.6rem 0.75rem; }
  .hero__float--stat { top: 0.8rem; left: 0.5rem; }
  .hero__float--chip { bottom: 0.8rem; right: 0.5rem; max-width: 210px; }
}

/* ---------- Stats ---------- */
.stats { background: var(--white); border-block: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(1.8rem, 4vw, 2.6rem) 1rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.1rem); color: var(--gold-deep); line-height: 1; }
.stat__label { display: block; margin-top: 0.6rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
@media (max-width: 680px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); } }

/* ---------- About ---------- */
.about { background: var(--ivory); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.about__body p { color: var(--ink-soft); margin: 0 0 1.2rem; font-size: 1.06rem; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.about__media::before { content: ""; position: absolute; inset: -16px -16px auto auto; width: 55%; height: 55%; background: var(--gold-soft); border-radius: 24px; z-index: -1; }
.about__badge { position: absolute; left: -1.2rem; bottom: 1.4rem; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 0.9rem 1.1rem; box-shadow: var(--shadow-float); display: flex; align-items: center; gap: 0.7rem; }
.about__badge strong { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--gold-deep); }
.about__badge span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.2; }
.pull-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--ink); margin: 1.6rem 0 0; padding: 0.4rem 0 0.4rem 1.6rem; border-left: 3px solid var(--gold); position: relative; line-height: 1.3; }
.pull-quote__mark { color: var(--gold); font-size: 1.4em; margin-right: 0.1em; }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; gap: 2.6rem; } .about__media { order: -1; max-width: 480px; } }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.4vw, 1.6rem); }
.service-card { position: relative; background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.7rem, 3vw, 2.2rem); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease); }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); transition: width 0.45s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,162,99,0.5); background: var(--white); }
.service-card:hover::before { width: 100%; }
.service-card__no { position: absolute; top: 1.3rem; right: 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: rgba(201,162,99,0.22); }
.service-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: var(--gold-soft); color: var(--gold-deep); margin-bottom: 1.2rem; }
.service-card__title { font-size: 1.32rem; margin-bottom: 0.5rem; }
.service-card__desc { color: var(--ink-soft); margin: 0 0 1.1rem; font-size: 0.97rem; }
.service-card__list { list-style: none; margin: 0; padding: 1.1rem 0 0; border-top: 1px solid var(--border); display: grid; gap: 0.65rem; }
.service-card__list li { position: relative; padding-left: 1.7rem; font-size: 0.94rem; color: var(--ink); }
.service-card__list li::before { content: ""; position: absolute; left: 0; top: 0.32em; width: 15px; height: 9px; border-left: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(-45deg); }
@media (max-width: 820px) { .services__grid { grid-template-columns: 1fr; } }

/* ---------- HR feature ---------- */
.hr-feature { background: var(--cream); }
.hr-feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hr-feature__media { position: relative; }
.hr-feature__media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); display: block; aspect-ratio: 5 / 4; object-fit: cover; }
.hr-feature__media::before { content: ""; position: absolute; inset: auto auto -16px -16px; width: 52%; height: 52%; background: var(--gold-soft); border-radius: 22px; z-index: -1; }
.hr-feature__list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.4rem; }
.hr-feature__list li { position: relative; padding-left: 1.7rem; font-size: 0.96rem; color: var(--ink); }
.hr-feature__list li::before { content: ""; position: absolute; left: 0; top: 0.34em; width: 15px; height: 9px; border-left: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(-45deg); }
@media (max-width: 860px) { .hr-feature__grid { grid-template-columns: 1fr; gap: 2.4rem; } .hr-feature__media { max-width: 520px; } .hr-feature__list { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { background: var(--sand); }
.process__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.process__step { position: relative; padding: 1.8rem 1.4rem; border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.process__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process__num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #2a1e06; background: var(--gold); width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.process__step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.process__step p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }
@media (max-width: 900px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__steps { grid-template-columns: 1fr; } }

/* ---------- Why ---------- */
.why { background: var(--ivory); }
.why__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.why__cta { margin-top: 1.8rem; }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.6rem; }
.why__item { display: flex; gap: 1rem; padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-soft); color: var(--gold-deep); }
.why__item h3 { font-size: 1.14rem; margin-bottom: 0.35rem; }
.why__item p { margin: 0; font-size: 0.93rem; color: var(--ink-soft); }
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 560px) { .why__list { grid-template-columns: 1fr; } }

/* ---------- CTA band (gold) ---------- */
.cta-band { background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%); color: #2a1e06; position: relative; overflow: hidden; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; padding-block: clamp(3rem, 6vw, 4.6rem); }
.cta-band__watermark { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 700; font-size: 15rem; line-height: 1; color: rgba(42,30,6,0.06); user-select: none; pointer-events: none; }
.cta-band__text { position: relative; max-width: 620px; }
.cta-band .eyebrow { color: rgba(42,30,6,0.7); }
.cta-band__text h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: #2a1e06; }
.cta-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Contact ---------- */
.contact { background: var(--ivory); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__lead { color: var(--ink-soft); margin: 1rem 0 2rem; }
.contact__details { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.1rem; }
.contact__details li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact__ico { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--gold-soft); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.contact__details strong { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-muted); }
.contact__details a, .contact__details span span { color: var(--ink); }
.contact__details a:hover { color: var(--gold-deep); }
.contact__wa { width: 100%; }

.contact__form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: 0.86rem; font-weight: 500; color: var(--ink); }
.field__opt { color: var(--ink-muted); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--ink); background: var(--ivory); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.8rem 0.95rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px var(--gold-soft); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink-muted); }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A2793A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.contact-form input:invalid:not(:placeholder-shown) { border-color: #c0603f; }
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: 0.92rem; min-height: 1.2em; }
.form-status.is-error { color: #b04a2c; }
.form-status.is-success { color: var(--wa-deep); }
.form-fineprint { margin: 0; font-size: 0.8rem; color: var(--ink-muted); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer (bright) ---------- */
.site-footer { background: var(--cream); color: var(--ink-soft); padding-top: clamp(3.5rem, 7vw, 5rem); border-top: 1px solid var(--border); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.site-footer__tag { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-deep); margin: 1.2rem 0 0.6rem; }
.site-footer__blurb { font-size: 0.92rem; max-width: 320px; margin: 0; color: var(--ink-soft); }
.site-footer__col h4 { font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-deep); margin-bottom: 1.1rem; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.site-footer__col a, .site-footer__contact li { color: var(--ink-soft); font-size: 0.94rem; transition: color 0.2s; }
.site-footer__col a:hover { color: var(--gold-deep); }
.site-footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.site-footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; transition: background 0.25s, transform 0.25s, border-color 0.25s, color 0.25s; }
.site-footer__social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); border-color: var(--gold); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: center; text-align: center; gap: 0.3rem 1.3rem; padding-block: 1.6rem 2.2rem; font-size: 0.85rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__credit { color: var(--ink-muted); }
@media (max-width: 620px) { .site-footer__bottom { padding-bottom: 5rem; } }
.site-footer__author { color: var(--gold-deep); font-weight: 500; }
.site-footer__author a, a.site-footer__author { color: var(--gold-deep); transition: color 0.2s; }
.site-footer__author a:hover, a.site-footer__author:hover { color: var(--ink); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px -10px rgba(37,211,102,0.6); transition: transform 0.3s var(--ease); animation: wa-pop 0.5s var(--ease) 1.2s both; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: wa-ping 2.6s ease-out infinite; }
@keyframes wa-ping { 0% { transform: scale(1); opacity: 0.7; } 80%, 100% { transform: scale(1.7); opacity: 0; } }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Scroll reveal (JS-gated) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal:nth-child(2) { transition-delay: 0.08s; }
.js .reveal:nth-child(3) { transition-delay: 0.16s; }
.js .reveal:nth-child(4) { transition-delay: 0.24s; }
.js .services__grid .reveal:nth-child(2), .js .why__list .reveal:nth-child(2), .js .process__steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.js .services__grid .reveal:nth-child(3), .js .why__list .reveal:nth-child(3), .js .process__steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.js .process__steps .reveal:nth-child(4), .js .why__list .reveal:nth-child(4), .js .services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }
