/* =====================================================================
   PANAMÁ FOREVER GREEN — Design System
   Editorial green + bone. Inspired by refined, spacious editorial layouts.
   Display: Fraunces (optical serif) · UI/Body: DM Sans
   ===================================================================== */

:root {
  /* Surfaces */
  --bg:        #F4F1E8;   /* warm bone */
  --bg-alt:    #ECE7DA;   /* deeper sand for alternating sections */
  --surface:   #FBFAF4;   /* cards */
  --surface-2: #FFFFFF;

  /* Ink */
  --ink:    #18201A;      /* warm near-black */
  --muted:  #5B6357;      /* secondary text */
  --faint:  #8A8F82;      /* captions */

  /* Brand */
  --forest:    #15402A;   /* deep forest green */
  --forest-2:  #1E5638;
  --forest-3:  #0F2E1E;   /* darkest, footers */
  --leaf:      #74B23C;   /* lime / leaf accent */
  --leaf-2:    #8DC75A;
  --leaf-soft: #CFE4AB;

  /* Lines */
  --line:        rgba(21,64,42,0.14);
  --line-soft:   rgba(21,64,42,0.08);
  --line-strong: rgba(21,64,42,0.26);

  /* On dark */
  --cream:    #F4F1E8;
  --cream-dim:rgba(244,241,232,0.66);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --wide: 1360px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* Subtle paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 460; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
.display {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.04; letter-spacing: -0.025em; font-weight: 450;
}
h2.section-title { font-size: clamp(1.85rem, 3.6vw, 2.9rem); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.18; }
em, .italic { font-style: italic; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.6; color: var(--muted); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--forest-2);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--leaf);
  display: inline-block;
}
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: var(--leaf); display: inline-block;
}
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container.wide { max-width: var(--wide); }
.section { padding-block: var(--section-y); position: relative; z-index: 2; }
.section.bg-alt { background: var(--bg-alt); }
.section.tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-prose { max-width: 62ch; }
.maxw-680 { max-width: 680px; }

.hairline { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.6em; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.005em; line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(21,64,42,0.55); }
.btn-leaf { background: var(--leaf); color: #14331a; }
.btn-leaf:hover { background: var(--leaf-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(116,178,60,0.6); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--forest); background: rgba(21,64,42,0.04); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--forest-3); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
.btn-outline-light { border: 1px solid var(--cream-dim); color: var(--cream); }
.btn-outline-light:hover { background: rgba(244,241,232,0.08); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.92rem; color: var(--forest-2);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 0.85em; border-color: var(--leaf); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,241,232,0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 30px -22px rgba(21,64,42,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink); position: relative;
  padding: 0.4em 0; transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--leaf); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest-2); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.88rem; font-weight: 600; color: var(--forest-2); }
.nav-phone svg { width: 1.05em; height: 1.05em; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: 0.3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 450; }
.hero h1 em { font-style: italic; color: var(--forest-2); }
.hero .lead { margin-top: 1.5rem; max-width: 46ch; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -40px rgba(21,64,42,0.45);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -28px; bottom: 36px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem;
  box-shadow: 0 24px 50px -28px rgba(21,64,42,0.5);
}
.hero-badge .dot { width: 38px; height: 38px; border-radius: 12px; background: rgba(116,178,60,0.16); display: grid; place-items: center; color: var(--forest-2); }
.hero-badge .dot svg { width: 20px; height: 20px; }
.hero-badge strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.hero-badge span { display: block; font-size: 0.78rem; color: var(--muted); }

/* page hero (inner pages) */
.page-hero { padding-top: clamp(3.5rem, 6vw, 6rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.028em; max-width: 16ch; }
.page-hero .lead { margin-top: 1.4rem; max-width: 56ch; }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2.5rem); }
.stat { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.stat .num { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 450; line-height: 1; letter-spacing: -0.02em; color: var(--forest); }
.stat .num span { color: var(--leaf); }
.stat .lbl { margin-top: 0.6rem; font-size: 0.9rem; color: var(--muted); max-width: 22ch; }

/* =====================================================================
   LOGO MARQUEE
   ===================================================================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: clamp(3rem, 6vw, 5.5rem); align-items: center; width: max-content; animation: scroll-x 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img { height: clamp(26px, 3vw, 34px); width: auto; object-fit: contain; opacity: 0.5; filter: grayscale(1); transition: opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.marquee img:hover { opacity: 0.9; filter: grayscale(0); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =====================================================================
   SERVICES — index list
   ===================================================================== */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 5rem 1.1fr 1.4fr auto; gap: 1.5rem; align-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem) 0.5rem; border-bottom: 1px solid var(--line);
  position: relative; transition: padding 0.4s var(--ease);
}
.svc-row .idx { font-family: var(--serif); font-size: 1.1rem; color: var(--faint); }
.svc-row h3 { font-size: clamp(1.3rem, 2.2vw, 1.85rem); transition: color 0.3s var(--ease); }
.svc-row p { color: var(--muted); font-size: 0.96rem; max-width: 46ch; }
.svc-row .go { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--forest); transition: 0.35s var(--ease); }
.svc-row .go svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.svc-row:hover { background: linear-gradient(90deg, rgba(116,178,60,0.05), transparent 70%); padding-inline: 1.5rem; }
.svc-row:hover h3 { color: var(--forest-2); }
.svc-row:hover .go { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.svc-row:hover .go svg { transform: translate(2px,-2px); }

/* Service detail rows (servicios page) */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.svc-detail + .svc-detail { margin-top: clamp(3.5rem, 7vw, 6.5rem); }
.svc-detail:nth-child(even) .svc-detail-media { order: -1; }
.svc-detail-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 34px 70px -42px rgba(21,64,42,0.5); }
.svc-detail-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.svc-detail-media:hover img { transform: scale(1.05); }
.svc-detail .num-tag { font-family: var(--serif); font-size: 0.95rem; color: var(--leaf); letter-spacing: 0.05em; }
.svc-detail h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0.6rem 0 1rem; }
.svc-detail ul.ticks { margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.svc-detail ul.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.svc-detail ul.ticks svg { width: 18px; height: 18px; color: var(--leaf); flex: none; margin-top: 2px; }

/* =====================================================================
   CARDS / FEATURE GRID
   ===================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -34px rgba(21,64,42,0.45); border-color: var(--line-strong); }
.card .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(116,178,60,0.14); color: var(--forest-2); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.94rem; }

/* =====================================================================
   SUSTAINABILITY BAND (dark forest)
   ===================================================================== */
.band-dark { background: var(--forest-3); color: var(--cream); position: relative; z-index: 2; overflow: hidden; }
.band-dark .eyebrow { color: var(--leaf-2); }
.band-dark .eyebrow::before, .band-dark .eyebrow.center::after { background: var(--leaf); }
.band-dark h2 { color: var(--cream); }
.band-dark .lead, .band-dark p { color: var(--cream-dim); }
.band-dark .muted { color: var(--cream-dim); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.pill { font-size: 0.82rem; font-weight: 500; padding: 0.5em 1em; border-radius: 999px; border: 1px solid rgba(244,241,232,0.22); color: var(--cream); }
.glow-orb { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(120px); opacity: 0.22; background: var(--leaf); pointer-events: none; }

/* =====================================================================
   PROJECTS GALLERY (masonry)
   ===================================================================== */
.gallery { columns: 3; column-gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.gallery.preview { columns: 3; }
.tile {
  break-inside: avoid; margin-bottom: clamp(0.8rem, 1.6vw, 1.4rem);
  border-radius: var(--radius); overflow: hidden; position: relative; display: block;
  background: var(--bg-alt);
}
.tile img { width: 100%; height: auto; object-fit: cover; transition: transform 0.9s var(--ease); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,46,30,0.82));
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.tile .meta {
  position: absolute; left: 1.1rem; bottom: 1.1rem; right: 1.1rem; z-index: 2;
  color: var(--cream); transform: translateY(8px); opacity: 0; transition: 0.45s var(--ease);
}
.tile .meta .cat { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--leaf-2); font-weight: 600; }
.tile .meta h4 { font-family: var(--serif); color: var(--cream); font-size: 1.15rem; font-weight: 500; margin-top: 0.2rem; }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 1; }
.tile:hover .meta { transform: translateY(0); opacity: 1; }

/* filter bar */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filter-btn {
  padding: 0.6em 1.25em; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.86rem; font-weight: 600; color: var(--muted); transition: 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.filter-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.tile.hide { display: none; }

/* =====================================================================
   ABOUT / EDITORIAL TWO-COL
   ===================================================================== */
.two-col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.two-col p + p { margin-top: 1.1rem; }
.quote-block {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.25;
  letter-spacing: -0.02em; font-weight: 420; color: var(--ink);
}
.quote-block em { color: var(--forest-2); }

/* values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value { background: var(--surface); padding: clamp(1.4rem, 2.5vw, 2rem); transition: background 0.3s var(--ease); }
.value:hover { background: var(--surface-2); }
.value .v-ic { color: var(--leaf); width: 24px; height: 24px; margin-bottom: 0.9rem; }
.value h4 { font-size: 1.1rem; }
.value p { font-size: 0.86rem; color: var(--muted); margin-top: 0.35rem; }

/* =====================================================================
   TEAM
   ===================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.member { text-align: left; }
.member .avatar {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-2) 60%, var(--leaf) 140%);
  display: grid; place-items: center; position: relative; margin-bottom: 1.1rem;
}
.member .avatar .mono { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: rgba(244,241,232,0.92); font-weight: 450; }
.member .avatar::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(141,199,90,0.4), transparent 60%); }
.member h4 { font-size: 1.25rem; }
.member .role { color: var(--forest-2); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.02em; margin-top: 0.2rem; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { background: var(--forest); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 5rem); position: relative; overflow: hidden; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; }
.cta-band p { color: var(--cream-dim); margin-top: 1rem; max-width: 50ch; }
.cta-band .hero-actions { margin-top: 2rem; }
.cta-band .glow-orb { top: -160px; right: -120px; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.85em 1em; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(116,178,60,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.info-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item .i-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(116,178,60,0.14); color: var(--forest-2); display: grid; place-items: center; flex: none; }
.info-item .i-ic svg { width: 20px; height: 20px; }
.info-item .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); }
.info-item .val { font-weight: 600; color: var(--ink); }
.info-item .val a:hover { color: var(--forest-2); }
.socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest-2); transition: 0.3s var(--ease); }
.socials a:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 1.4rem; }
.map-wrap iframe { display: block; width: 100%; height: 260px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.4rem 0; text-align: left; font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 450; color: var(--ink); }
.faq-q .pm { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; flex: none; position: relative; transition: 0.3s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--forest); transition: 0.3s var(--ease); }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .pm { background: var(--forest); border-color: var(--forest); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: var(--cream); }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding-bottom: 1.5rem; color: var(--muted); max-width: 70ch; }
.faq-a-inner ul { list-style: none; display: grid; gap: 0.4rem; margin-top: 0.6rem; }
.faq-a-inner li { padding-left: 1.2rem; position: relative; }
.faq-a-inner li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--forest-3); color: var(--cream-dim); position: relative; z-index: 2; padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(244,241,232,0.12); }
.footer .brand-word { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); letter-spacing: -0.01em; }
.footer .brand-word span { color: var(--leaf-2); }
.footer .tag { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--leaf-2); margin-top: 0.4rem; }
.footer p { font-size: 0.9rem; margin-top: 1rem; max-width: 34ch; color: var(--cream-dim); }
.footer h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; font-weight: 600; }
.footer ul li { margin-bottom: 0.65rem; }
.footer ul a { font-size: 0.9rem; color: var(--cream-dim); transition: color 0.25s var(--ease); }
.footer ul a:hover { color: var(--leaf-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.6rem 0 2rem; font-size: 0.82rem; color: var(--cream-dim); }
.footer-bottom .socials a { border-color: rgba(244,241,232,0.2); color: var(--cream-dim); }
.footer-bottom .socials a:hover { background: var(--leaf); color: var(--forest-3); border-color: var(--leaf); }

/* =====================================================================
   FLOATING WHATSAPP
   ===================================================================== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
  .split, .contact-grid, .svc-detail, .two-col { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-detail-media { order: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu-mobile {
    position: fixed; inset: 76px 0 auto 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: 1.5rem clamp(1.25rem,4vw,2.5rem) 2rem;
    display: flex; flex-direction: column; gap: 0.3rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.35s var(--ease); z-index: 99;
    box-shadow: 0 20px 40px -24px rgba(21,64,42,0.4);
  }
  body.menu-open .nav-menu-mobile { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu-mobile a { padding: 0.85rem 0; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
  .nav-menu-mobile .btn { margin-top: 1rem; justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 2.5rem 1fr auto; }
  .svc-row p { display: none; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; }
}
@media (max-width: 560px) {
  .values-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero-badge { left: 12px; bottom: 12px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .cta-band .hero-actions { width: 100%; }
}

/* nav mobile menu hidden on desktop */
.nav-menu-mobile { display: none; }
@media (max-width: 880px) { .nav-menu-mobile { display: flex; } }
