/* =========================================================================
   KANHA ASSOCIATES: Legal & Finance
   Homepage stylesheet
   -------------------------------------------------------------------------
   1. Design tokens
   2. Base & typography
   3. Layout primitives
   4. Buttons, labels, icons
   5. Top bar
   6. Header & navigation
   7. Hero
   8. Service categories
   9. Service directory
   10. About
   11. Facts band
   12. Process
   13. Why choose us
   14. Founder
   15. Testimonials
   16. FAQ
   17. Insights
   18. Contact
   19. Footer
   20. Mobile WhatsApp bar
   21. Motion
   22. Responsive
   ========================================================================= */

/* 1. DESIGN TOKENS ------------------------------------------------------- */
:root {
  /* Brand */
  --forest-green: #0F3D2E;
  --gold: #C5A047;
  --charcoal: #2B2B2B;
  --white: #FFFFFF;

  /* Extended palette (derived from brand) */
  --forest-deep: #0A2E22;
  --forest-darker: #08251B;
  --forest-soft: #1B4D3C;
  --gold-deep: #86671B;        /* gold for small text on light bg (AA) */
  --gold-light: #E2C987;       /* gold for text on forest bg */
  --gold-tint: rgba(197, 160, 71, 0.12);
  --ivory: #F8F5EE;
  --parchment: #F1EBDD;
  --sage: #E8EFEA;
  --muted: #5A605C;
  --line: #E6E2D8;
  --line-strong: #D3CEC0;
  --line-on-green: rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-h3: clamp(1.45rem, 1.3rem + 0.5vw, 1.75rem);
  --fs-h2: clamp(2.1rem, 1.5rem + 1.9vw, 3.2rem);
  --fs-h1: clamp(2.6rem, 1.7rem + 3vw, 4.4rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --section-y: clamp(4rem, 2.8rem + 4.5vw, 7rem);

  /* Shape & depth */
  --radius-sm: 4px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(15, 61, 46, 0.06);
  --shadow: 0 16px 40px -20px rgba(15, 61, 46, 0.3);
  --shadow-lg: 0 30px 60px -28px rgba(15, 61, 46, 0.4);

  /* Layout */
  --container: 1600px;
  --gutter: clamp(1rem, 0.4rem + 2.6vw, 3rem);
  --edge: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  --header-h: 82px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 0.35s;
}

/* 2. BASE & TYPOGRAPHY --------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
em { font-style: italic; }

::selection { background: var(--gold); color: var(--forest-green); }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--forest-green);
  color: var(--white);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--forest-green);
}
.h2 em,
.hero-title em { font-weight: 500; color: var(--gold-deep); }

.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-green);
}

/* 3. LAYOUT PRIMITIVES --------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: var(--section-y); }
.section-ivory { background: var(--ivory); }
.section-green { background: var(--forest-green); color: var(--white); }

.section-head { max-width: 680px; }
.section-sub {
  margin-top: var(--space-4);
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 36rem;
}

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.head-row > .btn { flex: none; }
.process .section-head { margin-bottom: var(--space-7); }

/* 4. BUTTONS, LABELS, ICONS --------------------------------------------- */
.i {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.label,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.label-light { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn .i { transition: transform var(--dur) var(--ease); }
.btn:hover > .i:last-child:not(:first-child) { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-sm { min-height: 42px; padding: 0.55rem 1rem; font-size: var(--fs-sm); }
.btn-lg { min-height: 54px; padding: 0.95rem 1.6rem; }
.btn-block { display: flex; width: 100%; }

.btn-green { background: var(--forest-green); color: var(--white); }
.btn-green:hover { background: var(--forest-deep); box-shadow: inset 0 -2px 0 var(--gold); }

.btn-gold { background: var(--gold); color: var(--forest-darker); }
.btn-gold:hover { background: #D3B360; }

.btn-outline-green { border-color: var(--forest-green); color: var(--forest-green); background: transparent; }
.btn-outline-green:hover { background: var(--forest-green); color: var(--white); }

/* Placeholder marker for content still to be supplied */
.ph {
  background: var(--gold-tint);
  border-bottom: 1px dashed var(--gold);
  padding: 0 0.3em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 5. TOP BAR ------------------------------------------------------------- */
.topbar {
  background: var(--forest-darker);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 42px;
}
.topbar-info { display: flex; flex-wrap: wrap; gap: 0.4rem 1.75rem; }
.topbar-info li { display: flex; align-items: center; gap: 0.5rem; }
.topbar-info .i { width: 15px; height: 15px; color: var(--gold-light); }
.topbar a { transition: color var(--dur) var(--ease); }
.topbar a:hover { color: var(--gold-light); }
.topbar-actions { display: flex; align-items: stretch; gap: 1.5rem; align-self: stretch; }
.topbar-actions > a:not(.topbar-cta) { display: flex; align-items: center; }
.topbar-cta {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  background: var(--gold);
  color: var(--forest-darker);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.topbar .topbar-cta:hover { background: #D3B360; color: var(--forest-darker); }

/* 6. HEADER & NAVIGATION ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 28px -20px rgba(15, 61, 46, 0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: var(--header-h);
  transition: height var(--dur) var(--ease);
}
.site-header.is-scrolled .header-inner { height: 68px; }

.brand { display: flex; align-items: center; gap: 0.85rem; flex: none; }
.brand-plate {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--forest-green);
  border-radius: var(--radius-sm);
  transition: width var(--dur) var(--ease), height var(--dur) var(--ease);
}
.brand-plate img { width: 48px; height: auto; transition: width var(--dur) var(--ease); }
.site-header.is-scrolled .brand-plate { width: 50px; height: 50px; }
.site-header.is-scrolled .brand-plate img { width: 42px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-green);
}
.brand-tag {
  margin-top: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav-list { display: flex; align-items: center; gap: clamp(1.25rem, 0.2rem + 1.6vw, 2.4rem); }
.nav-list > li { position: relative; }
.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav-list > li > a:hover,
.nav-list > li > a.is-current { color: var(--forest-green); }
.nav-list > li > a:hover::after,
.nav-list > li > a.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav-list .i-caret { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.has-sub:hover .i-caret,
.has-sub:focus-within .i-caret { transform: rotate(180deg); }

.sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 250px;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a {
  display: flex;
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.sub-menu a:hover { background: var(--ivory); color: var(--forest-green); }

.nav-mobile-contact { display: none; }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }

/* WhatsApp team chooser */
.wa-menu { position: relative; }
.wa-menu-toggle .i-caret { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.wa-menu-toggle[aria-expanded="true"] .i-caret { transform: rotate(180deg); }
.wa-menu-toggle .i:first-child { color: var(--gold-light); }
.btn:hover > .i-caret:last-child { transform: none; }

.wa-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 290px;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: pop 0.25s var(--ease);
}
.wa-menu-panel[hidden] { display: none; }
.wa-menu-title {
  padding: 0.5rem 0.75rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.wa-menu-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--dur) var(--ease);
}
.wa-menu-item:hover { background: var(--ivory); }
.wa-menu-item-label { font-weight: 600; color: var(--forest-green); }
.wa-menu-item-num { font-size: var(--fs-sm); color: var(--muted); }

@keyframes pop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--forest-green);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* 7. HERO ---------------------------------------------------------------- */
.hero { position: relative; background: var(--ivory); overflow: hidden; }

.hero-main {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 40vw, 720px);
}
.hero-main > .container { position: relative; z-index: 2; }

.hero-copy {
  max-width: min(660px, 44vw);
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}

.eyebrow { margin-bottom: var(--space-5); }
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--forest-green);
}
.hero-title em { display: block; }

.hero-lede {
  max-width: 36rem;
  margin-top: var(--space-5);
  font-size: var(--fs-md);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Right-hand photo panel */
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
  border-top-left-radius: clamp(120px, 14vw, 300px);
  background: var(--forest-green);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  animation: heroZoom 14s var(--ease) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 37, 27, 0) 40%, rgba(8, 37, 27, 0.62) 100%),
    linear-gradient(90deg, rgba(15, 61, 46, 0.4) 0%, rgba(15, 61, 46, 0.08) 45%, rgba(15, 61, 46, 0.18) 100%);
}

.hero-float {
  position: absolute;
  right: var(--edge);
  bottom: 28px;
  z-index: 3;
  width: 290px;
  padding: 1rem 1.1rem 0.5rem;
  background: rgba(8, 37, 27, 0.92);
  border: 1px solid rgba(226, 201, 135, 0.35);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.6);
}
.hero-float-title {
  margin-bottom: 0.25rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-float-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--dur) var(--ease);
}
.hero-float-row:first-of-type { border-top: 0; }
.hero-float-row:hover { transform: translateX(3px); }
.hero-float-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-darker);
}
.hero-float-label { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); line-height: 1.3; }
.hero-float-num { display: block; font-weight: 700; letter-spacing: 0.01em; }

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.5rem 1.25rem;
}
.hero-features li:first-child { padding-left: 0; }
.hero-features li + li { border-left: 1px solid var(--line); }
.feat-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
}
.feat-ico .i { width: 20px; height: 20px; }
.hero-features strong { display: block; font-size: 0.95rem; color: var(--forest-green); line-height: 1.3; }
.hero-features small { display: block; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

/* 8. SERVICE CATEGORIES -------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }

.cat-visual {
  position: relative;
  height: 345px;
  overflow: hidden;
  background: var(--sage);
}
.cat-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.cat-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 37, 27, 0.35) 0%, rgba(8, 37, 27, 0) 45%);
  pointer-events: none;
}
.cat-card:hover .cat-visual img { transform: scale(1.05); }
.cat-index {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(8, 37, 27, 0.85);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
}

.cat-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.5rem, 1rem + 1.2vw, 2.25rem);
}
.cat-body > p { margin-top: var(--space-3); color: var(--muted); font-size: 0.95rem; }
@media (min-width: 961px) { .cat-body > p { min-height: 3.4em; } }

.cat-list {
  margin: var(--space-5) 0 var(--space-6);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-5);
}
.cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 46px;
  height: 100%;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--charcoal);
  transition: color var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.cat-list a::after {
  content: "→";
  color: var(--gold-deep);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cat-list a:hover,
.cat-list a:focus-visible { color: var(--forest-green); padding-left: 0.3rem; }
.cat-list a:hover::after,
.cat-list a:focus-visible::after { opacity: 1; transform: none; }

.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.35rem 0;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--forest-green);
  border-bottom: 1px solid var(--gold);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cat-cta:hover { gap: 0.9rem; color: var(--gold-deep); }

/* 9. SERVICE DIRECTORY --------------------------------------------------- */
.directory .head-row .section-head { margin: 0; }

.tabs {
  display: inline-flex;
  flex: none;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
}
.tab {
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tab:hover { color: var(--forest-green); background: var(--ivory); }
.tab.is-active { background: var(--forest-green); color: var(--white); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1rem + 1vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc[hidden] { display: none; }
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--line-strong); }
.svc:hover::before { transform: scaleX(1); }
.svc.is-entering { animation: fadeUp 0.5s var(--ease) both; }

.svc-meta { margin-bottom: var(--space-3); }
.svc-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.svc-cat::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.svc-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-green);
}
.svc-desc { margin: var(--space-3) 0 var(--space-5); color: var(--muted); font-size: 0.95rem; }
.svc-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: auto;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-green);
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.svc-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.svc-arrow .i { width: 15px; height: 15px; }
.svc-wa:hover { color: var(--gold-deep); gap: 0.8rem; }
.svc-wa:hover .svc-arrow { background: var(--forest-green); border-color: var(--forest-green); color: var(--gold-light); }

.directory-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: var(--space-5);
  font-size: var(--fs-sm);
  color: var(--muted);
}
.directory-note .i { margin-top: 3px; color: var(--gold-deep); }
.directory-note strong { color: var(--forest-green); font-weight: 700; white-space: nowrap; }

/* 10. ABOUT -------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--white);
}
.about-media { position: relative; min-height: 520px; overflow: hidden; background: var(--forest-green); }
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  transition: transform 1.2s var(--ease);
}
.about-media:hover .about-photo { transform: scale(1.03); }
.about-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 37, 27, 0) 55%, rgba(8, 37, 27, 0.45) 100%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  right: clamp(1.25rem, 1rem + 2vw, 3rem);
  bottom: clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.5rem;
  align-items: center;
  padding: 1.1rem 1.25rem 1.1rem 1.4rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease);
}
.about-badge:hover { transform: translateY(-3px); }
.about-badge-k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.about-badge-v {
  grid-row: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-green);
}
.about-badge-arrow {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest-green);
  color: var(--gold-light);
}

.about-content {
  align-self: center;
  padding: clamp(3rem, 2rem + 3vw, 5rem) var(--edge) clamp(3rem, 2rem + 3vw, 5rem) clamp(2rem, 1rem + 5vw, 6rem);
}
.about-content .h2 em { display: block; }
.about-lead { margin-top: var(--space-5); font-size: var(--fs-md); color: var(--muted); max-width: 38rem; }

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0 var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.point-ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--gold-deep);
}
.point-ico .i { width: 22px; height: 22px; }
.about-points strong { display: block; font-size: 0.95rem; color: var(--forest-green); }
.about-points small { display: block; font-size: 0.82rem; color: var(--muted); line-height: 1.45; margin-top: 0.15rem; }

/* 11. FACTS BAND --------------------------------------------------------- */
.facts-band { background: var(--forest-green); color: var(--white); }
.facts-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.facts-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2.4rem 1rem;
}
.facts-list li + li { border-left: 1px solid var(--line-on-green); }
.facts-list .i { width: 40px; height: 40px; stroke-width: 1.2; color: var(--gold); }
.facts-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}
.facts-list small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

/* 12. PROCESS ------------------------------------------------------------ */
.steps {
  --steps-gap: clamp(2rem, 1rem + 2.5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--steps-gap);
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.1rem;
  align-items: start;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  right: calc(var(--steps-gap) * -0.8);
  width: calc(var(--steps-gap) * 0.6);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 50%, transparent 0) 0 0 / 6px 1px repeat-x;
}
.step-ico {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest-green);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step-ico .i { width: 26px; height: 26px; stroke-width: 1.4; }
.step:hover .step-ico { background: var(--forest-green); border-color: var(--forest-green); color: var(--gold-light); }
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.step-title {
  margin: 0.25rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-green);
}
.step p:last-child { color: var(--muted); font-size: 0.93rem; }

/* 13. WHY CHOOSE US ------------------------------------------------------ */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 1rem + 5vw, 6rem);
  align-items: center;
}
.why-head .h2 em { display: block; }
.why-sub { margin: var(--space-5) 0 var(--space-6); color: var(--muted); max-width: 32rem; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}
.why-card {
  position: relative;
  padding: clamp(1.5rem, 1rem + 1vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.why-ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.why-ico .i { width: 22px; height: 22px; }
.why-card:hover .why-ico { background: var(--forest-green); color: var(--gold-light); border-color: var(--forest-green); }
.why-no {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-green);
}
.why-card p { margin-top: 0.5rem; color: var(--muted); font-size: 0.95rem; }

/* 14. FOUNDER ------------------------------------------------------------ */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 1rem + 6vw, 7rem);
  align-items: center;
}
.founder-portrait { position: relative; max-width: 440px; width: 100%; justify-self: center; }
.portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  background: var(--sage);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.founder-portrait:hover .portrait-frame img { transform: scale(1.03); }
.portrait-offset {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px 999px 0 0;
  z-index: 0;
}
.portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  height: 100%;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(15, 61, 46, 0.035) 14px 15px),
    var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-green);
}
.portrait-glyph { width: 88px; fill: none; stroke: var(--forest-green); stroke-width: 1.2; opacity: 0.45; }

.founder-copy .h2 { max-width: 18ch; }
.founder-id {
  margin-top: var(--space-6);
  padding-left: var(--space-5);
  border-left: 2px solid var(--gold);
}
.founder-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--forest-green); line-height: 1.2; }
.founder-role {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-bio { margin: var(--space-5) 0 var(--space-6); color: var(--muted); max-width: 38rem; }

/* 15. TESTIMONIALS ------------------------------------------------------- */
.testimonials { overflow: hidden; }
.testimonials::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -300px;
  width: 520px;
  height: 640px;
  border: 1px solid rgba(197, 160, 71, 0.18);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}
.testimonials .h2 { color: var(--white); }

.carousel-nav { display: flex; gap: 0.6rem; flex: none; }
.carousel-nav[hidden] { display: none; }
.carousel-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-darker); }
.carousel-btn:disabled { opacity: 0.35; pointer-events: none; }

.t-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--space-5)) / 3);
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1rem + 1vw, 2.2rem);
  background: var(--ivory);
  border-radius: var(--radius);
  color: var(--charcoal);
  scroll-snap-align: start;
}
.t-quote { width: 36px; height: 36px; color: var(--gold); }
.t-text { margin: 1rem 0 1.5rem; font-size: 1rem; line-height: 1.7; }
.t-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.t-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--forest-green);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.t-person strong { display: inline-block; color: var(--forest-green); }
.t-person small { display: block; font-size: 0.8rem; color: var(--muted); }

/* 16. FAQ ---------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 1rem + 5vw, 6rem);
  align-items: start;
}
.faq-head { position: sticky; top: 110px; }
.faq-head .h2 em { display: block; }
.faq-sub { margin: var(--space-5) 0 var(--space-6); color: var(--muted); max-width: 30rem; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-list details[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: 1rem 1.4rem;
  font-weight: 600;
  color: var(--forest-green);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--gold-deep); }
.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--forest-green);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq-icon { background: var(--forest-green); border-color: var(--forest-green); color: var(--gold-light); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a { padding: 0 1.4rem 1.25rem; color: var(--muted); }
.faq-a a { color: var(--forest-green); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* 17. INSIGHTS ----------------------------------------------------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
.post-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.post-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sage);
}
.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.post-cover::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  pointer-events: none;
}
.post-link:hover .post-cover img { transform: scale(1.05); }
.post-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.6rem 1.4rem; }
.post-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.post-title {
  margin: 0.5rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-green);
}
.post-excerpt { color: var(--muted); font-size: 0.93rem; }
.post-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest-green);
}
.post-excerpt + .post-more { margin-top: auto; }
.post-body .post-excerpt { margin-bottom: 1.25rem; }
.post-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.post-link:hover .post-arrow { background: var(--forest-green); border-color: var(--forest-green); color: var(--gold-light); }

/* 18. CONTACT ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  align-items: stretch;
}
.contact-info .h2 em { display: block; }
.contact-sub { margin-top: var(--space-4); color: var(--muted); }
.contact-list { display: grid; gap: 1.1rem; margin: var(--space-6) 0; }
.contact-list li { display: flex; align-items: center; gap: 0.9rem; }
.c-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--forest-green);
  color: var(--gold-light);
}
.contact-list small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a,
.contact-list address { display: block; font-weight: 600; color: var(--charcoal); overflow-wrap: anywhere; line-height: 1.45; }
.contact-list a:hover { color: var(--gold-deep); }

.enquiry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 1rem + 1.2vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.enquiry-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--forest-green); line-height: 1.1; }
.enquiry-note { margin-top: -0.6rem; font-size: 0.85rem; color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }
.field label span { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  padding-right: 2.5rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F3D2E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.8rem center / 18px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px var(--gold-tint);
}
.field .is-invalid { border-color: #A33A2B; }
.form-error { font-size: 0.85rem; font-weight: 600; color: #A33A2B; }
.form-error[hidden] { display: none; }

.map-card {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage);
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.02);
  transition: filter 0.6s var(--ease);
}
.map-card:hover iframe { filter: none; }
.map-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.7rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  line-height: 1.35;
}
.map-label strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--forest-green); }
.map-label a { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 700; color: var(--gold-deep); }
.map-label .i { width: 14px; height: 14px; }

/* 19. FOOTER ------------------------------------------------------------- */
.site-footer {
  background: var(--forest-darker);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.925rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr 1.4fr;
  gap: clamp(2rem, 1rem + 2.5vw, 4rem);
  padding-block: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
}
.footer-brand img { width: 150px; margin-bottom: var(--space-5); }
.footer-brand p { max-width: 22rem; }
.footer-h {
  margin-bottom: var(--space-5);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-col li + li { margin-top: 0.6rem; }
.footer-col a { transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; flex-direction: column; }
.footer-contact li + li { margin-top: 0.9rem; }
.footer-contact span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer-contact a { color: var(--white); overflow-wrap: anywhere; }
.footer-talk p { margin-bottom: 0.9rem; }
.footer-wa {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.footer-wa + .footer-wa { margin-top: 0.6rem; }
.footer-wa .i { width: 22px; height: 22px; color: var(--gold); }
.footer-wa strong { display: block; color: var(--white); font-size: 0.95rem; line-height: 1.3; }
.footer-wa small { display: block; font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); line-height: 1.35; }
.footer-col .footer-wa:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.04); color: inherit; }

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom ul { display: flex; gap: var(--space-5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* 20. MOBILE WHATSAPP BAR ------------------------------------------------ */
.mobile-bar { display: none; }

/* 21. MOTION ------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-anim { animation: fadeUp 0.9s var(--ease) both; animation-delay: calc(var(--d, 0) * 120ms + 80ms); }
.hero-media.hero-anim { animation-name: fadeIn; animation-duration: 1.1s; }


.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* 22. RESPONSIVE --------------------------------------------------------- */

@media (max-width: 1280px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-card { grid-column: 1 / -1; min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: var(--space-6); align-items: center; }
  .footer-brand img { margin: 0; }
  .footer-brand p { max-width: 36rem; }
  .cat-list { grid-template-columns: 1fr; }
}

/* Collapse navigation into menu */
@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + var(--space-4)) var(--gutter) calc(var(--space-6) + env(safe-area-inset-bottom));
    background: var(--white);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li > a {
    display: flex;
    min-height: 56px;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--forest-green);
  }
  .nav-list > li > a::after { display: none; }
  .nav-list .i-caret { display: none; }
  .sub-menu {
    position: static;
    min-width: 0;
    padding: 0.25rem 0 0.5rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .sub-menu a { min-height: 44px; align-items: center; font-size: 1rem; color: var(--muted); }

  .nav-mobile-contact { display: grid; gap: var(--space-3); margin-top: var(--space-6); }
  .nav-mobile-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  body.nav-open { overflow: hidden; }

  .topbar-actions > a:not(.topbar-cta) { display: none; }

  .hero-features li { padding-inline: 1rem; }
  .hero-features small { display: none; }
}

/* Tablet */
@media (max-width: 960px) {
  .topbar { display: none; }

  .hero-main { display: block; min-height: 0; }
  .hero-copy { max-width: 640px; padding-bottom: var(--space-7); }
  .hero-media {
    position: relative;
    width: 100%;
    height: clamp(340px, 62vw, 520px);
    border-top-left-radius: clamp(90px, 18vw, 180px);
  }
  .hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-features li:first-child,
  .hero-features li { padding: 1.1rem 0.75rem; }
  .hero-features li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero-features li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .hero-features small { display: block; }

  .head-row { flex-direction: column; align-items: flex-start; }

  .cat-grid { grid-template-columns: 1fr; max-width: 640px; }
  .cat-list { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tabs { max-width: 100%; overflow-x: auto; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }

  .about { grid-template-columns: 1fr; }
  .about-media { min-height: 380px; }
  .about-content { padding: var(--section-y) var(--gutter); }

  .facts-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts-list li { justify-content: flex-start; padding: 1.75rem 1rem; }
  .facts-list li:nth-child(3) { border-left: 0; }
  .facts-list li:nth-child(n + 3) { border-top: 1px solid var(--line-on-green); }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--space-7); }
  .step::after { display: none; }

  .why-grid,
  .founder-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }

  .founder-portrait { max-width: 360px; }

  .t-track { grid-auto-columns: calc((100% - var(--space-5)) / 1.6); }

  .post-grid { grid-template-columns: 1fr 1fr; }
  .post:last-child { grid-column: 1 / -1; }
  .post:last-child .post-link { display: grid; grid-template-columns: 1fr 1fr; }
  .post:last-child .post-cover { aspect-ratio: auto; min-height: 100%; }
  .post:last-child .post-cover img { position: absolute; inset: 0; }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --header-h: 70px; }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }

  .site-header.is-scrolled .header-inner { height: 62px; }
  .brand-plate { width: 50px; height: 50px; }
  .brand-plate img { width: 42px; }
  .site-header.is-scrolled .brand-plate { width: 44px; height: 44px; }
  .site-header.is-scrolled .brand-plate img { width: 37px; }
  .brand-name { font-size: 1.2rem; }
  .brand-tag { font-size: 0.6rem; letter-spacing: 0.2em; }
  .wa-menu { display: none; }

  .hero-actions .btn { width: 100%; }
  .hero-float { display: none; }
  .hero-media { height: clamp(300px, 86vw, 400px); }
  .hero-features li { align-items: flex-start; gap: 0.7rem; }
  .feat-ico { width: 40px; height: 40px; }
  .hero-features strong { font-size: 0.85rem; }
  .hero-features small { font-size: 0.74rem; }

  .cat-visual { height: 285px; }
  .cat-list { grid-template-columns: 1fr; }

  .svc-grid { grid-template-columns: 1fr; }
  .tabs { display: flex; width: 100%; }
  .tab { flex: 1 1 auto; padding: 0.5rem 0.55rem; font-size: 0.8125rem; }

  .about-media { min-height: 300px; }
  .about-badge-v { font-size: 1.25rem; }
  .about-points { grid-template-columns: 1fr; gap: 1rem; }
  .about-points li { display: grid; grid-template-columns: 48px 1fr; column-gap: 1rem; align-items: center; }
  .about-points .point-ico { grid-row: span 2; margin: 0; }

  .facts-list li { flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: 1.5rem 0.75rem; }
  .facts-list .i { width: 30px; height: 30px; }
  .facts-list strong { font-size: 2.1rem; }

  .steps { grid-template-columns: 1fr; row-gap: var(--space-6); }

  .why-cards { grid-template-columns: 1fr; }

  .portrait-offset { inset: 12px -12px -12px 12px; }
  .founder-portrait { max-width: 290px; }

  .t-track { grid-auto-columns: 88%; gap: var(--space-4); }

  .faq-list summary { padding: 0.9rem 1rem; font-size: 0.95rem; }
  .faq-a { padding: 0 1rem 1.1rem; }

  .post-grid { grid-template-columns: 1fr; }
  .post:last-child .post-link { display: flex; }
  .post:last-child .post-cover { aspect-ratio: 16 / 9; min-height: 0; }
  .post:last-child .post-cover img { position: static; }

  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-info .btn { width: 100%; }
  .map-card { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { display: block; }
  .footer-brand img { margin-bottom: var(--space-5); }
  .footer-grid > .footer-col:nth-child(4),
  .footer-talk { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Sticky WhatsApp bar */
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px -20px rgba(15, 61, 46, 0.45);
  }
  .mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 52px;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    line-height: 1.15;
  }
  .mobile-bar-btn .i { width: 22px; height: 22px; }
  .mobile-bar-btn strong { display: block; font-size: 0.95rem; }
  .mobile-bar-btn small { display: block; font-size: 0.7rem; font-weight: 600; opacity: 0.8; }
  .mobile-bar-btn.is-legal { background: var(--forest-green); color: var(--white); }
  .mobile-bar-btn.is-legal .i { color: var(--gold-light); }
  .mobile-bar-btn.is-finance { background: var(--gold); color: var(--forest-darker); }
}

/* Small phones (360 to 400) */
@media (max-width: 400px) {
  .brand { gap: 0.6rem; }
  .brand-name { font-size: 1.08rem; }
  .brand-tag { font-size: 0.56rem; }
  .hero-title { font-size: 2.45rem; }
  .hero-features li { flex-direction: column; }
}
