/* =========================================================
   Kiran Thirumalesh J. — Advocate | Stylesheet
   Theme: deep forest green + brass gold + warm cream
   Inspired by premium legal landing layouts.
   ========================================================= */

:root {
  /* Brand dark greys (charcoal slate) */
  --green: #2e3338;       /* primary dark grey */
  --green-800: #1d2023;   /* darkest, hero base */
  --green-700: #383e44;
  --green-600: #474e55;
  --green-500: #586069;
  /* Brass gold accents */
  --gold: #be9456;
  --gold-dark: #a17a3d;
  --gold-light: #d8b67e;
  --gold-soft: #ece4d6;
  /* Warm neutral surfaces */
  --cream: #f6f6f5;
  --cream-2: #eeedeb;
  --grey-1: #f2f1ef;
  --grey-2: #e8e7e4;
  --ink: #2a2d30;
  --muted: #6b6f73;
  --white: #ffffff;
  --line: rgba(46, 51, 56, 0.13);
  --line-soft: rgba(46, 51, 56, 0.08);
  --shadow-sm: 0 4px 16px rgba(29, 32, 35, 0.08);
  --shadow-md: 0 16px 40px rgba(29, 32, 35, 0.14);
  --shadow-lg: 0 28px 70px rgba(29, 32, 35, 0.26);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --header-h: 88px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.14; color: var(--green); margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(60px, 8vw, 120px) 0; }

/* Pill label used above section headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line);
  color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700;
  padding: 7px 16px; border-radius: 999px; margin: 0 0 1.1rem;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.section-head { max-width: 660px; margin: 0 auto clamp(34px, 5vw, 60px); text-align: center; }
.section-head .eyebrow { margin-inline: auto; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.section-lead { color: var(--muted); font-size: 1.06rem; }
.accent { color: var(--gold); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .94rem; letter-spacing: .01em;
  padding: 13px 14px 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  line-height: 1; text-align: center;
}
/* circular arrow chip inside buttons */
.btn .btn-ico {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.22); flex-shrink: 0; transition: transform .25s ease, background .25s ease;
}
.btn .btn-ico svg { width: 14px; height: 14px; }
.btn:hover .btn-ico { transform: rotate(-45deg); }

.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(190,148,86,.32); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(190,148,86,.4); }
.btn-primary .btn-ico { background: rgba(255,255,255,.25); }

.btn-dark { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(29,32,35,.25); }
.btn-dark:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-dark .btn-ico { background: rgba(255,255,255,.16); }

.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; padding-left: 24px; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-ghost .btn-ico { background: rgba(255,255,255,.16); }

.btn-outline { background: #fff; border-color: var(--line); color: var(--green); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn-outline .btn-ico { background: var(--gold-soft); color: var(--gold-dark); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-whatsapp .btn-ico { background: rgba(255,255,255,.22); }

.btn-sm { padding: 9px 9px 9px 18px; font-size: .85rem; }
.btn-sm .btn-ico { width: 26px; height: 26px; }

/* ---------- Header (floating pill) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding-top: 16px;
  transition: padding .25s ease;
}
.site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 64px; padding: 0 12px 0 22px;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { padding-top: 8px; }
.site-header.scrolled .header-inner { box-shadow: var(--shadow-md); background: rgba(255,255,255,.97); }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { border-radius: 9px; width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.02rem; font-weight: 700; color: var(--green); }
.brand-text small { font-size: .6rem; letter-spacing: .15em; color: var(--gold-dark); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.main-nav a { font-weight: 500; font-size: .92rem; color: var(--ink); position: relative; padding: 4px 0; }
.main-nav ul a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold); transition: width .25s ease; border-radius: 2px; }
.main-nav ul a:hover::after, .main-nav ul a.active::after { width: 100%; }
.nav-cta { padding: 10px 8px 10px 20px; font-size: .85rem; font-weight: 700; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--green); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  margin: 14px 0 0;
  background: radial-gradient(120% 130% at 80% 0%, var(--green-600) 0%, var(--green) 45%, var(--green-800) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 85% 30%, rgba(190,148,86,.22), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(40px, 7vw, 80px) 0 0;
}
.hero-copy { padding: clamp(10px, 3vw, 30px) 0 clamp(40px, 6vw, 70px); align-self: center; max-width: 640px; }
.hero .eyebrow {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: var(--gold-light);
  box-shadow: none; backdrop-filter: blur(4px);
}
.hero-title { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.3rem); margin-bottom: .35em; line-height: 1.05; }
.hero-title .accent { color: var(--gold-light); }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(255,255,255,.82); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }

/* Portrait column with graceful gradient fallback */
.hero-portrait {
  position: relative; align-self: end; min-height: 340px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background-color: var(--green-700);
  background-image:
    url("../assets/images/kiran-portrait.png"),
    radial-gradient(80% 70% at 50% 25%, rgba(190,148,86,.28), transparent 70%),
    linear-gradient(180deg, var(--green-600), var(--green-800));
  background-size: cover, cover, cover;
  background-position: 50% 28%; background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-portrait::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 38%;
  background: linear-gradient(to top, rgba(20,22,24,.7), transparent);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Stats row integrated at bottom of hero */
.hero-stats {
  position: relative; grid-column: 1 / -1;
  list-style: none; margin: clamp(10px, 3vw, 26px) 0 0; padding: 26px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stat { display: flex; align-items: center; gap: 14px; }
.hero-stat .hs-ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255,255,255,.08); color: var(--gold-light); border: 1px solid rgba(255,255,255,.14);
}
.hero-stat .hs-ico svg { width: 22px; height: 22px; }
.hero-stat .stat-num { display: block; font-family: var(--font-serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: #fff; font-weight: 800; line-height: 1; }
.hero-stat .stat-label { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ---------- About ---------- */
.about { background: var(--cream); text-align: center; }
.about-inner { max-width: 920px; margin-inline: auto; }
.about-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch;
  max-width: 760px; margin: 0 auto clamp(40px, 5vw, 60px);
}
.about-gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block;
}
.about-gallery .ag-side { aspect-ratio: 4 / 3; object-position: 50% 25%; box-shadow: var(--shadow-md); }
.ag-main { position: relative; margin: 0; }
.ag-main img { aspect-ratio: 4 / 3; object-position: 50% 25%; box-shadow: var(--shadow-lg); }
.ag-main .about-badge {
  position: absolute; left: -14px; bottom: -16px; text-align: left;
  background: var(--gold); color: #fff; padding: 12px 18px;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--font-serif); font-size: 1rem; line-height: 1.2; }
.about-badge span { font-size: .74rem; opacity: .9; }
.about-statement {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.32; color: var(--green);
  margin: 0 auto 1.4rem; max-width: 880px;
}
.about-statement .accent { color: var(--gold); font-style: italic; }
.about-statement .inline-chip {
  display: inline-flex; vertical-align: middle; width: 1.6em; height: 1.6em; margin: 0 .12em;
  border-radius: 999px; background: var(--gold-soft); border: 2px solid #fff; box-shadow: var(--shadow-sm);
  background-size: cover; background-position: center; translate: 0 -2px;
}
.about-lead { color: var(--muted); font-size: 1.05rem; max-width: 680px; margin: 0 auto 1.8rem; }
.about-credentials {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px;
  max-width: 760px; margin: 0 auto 2rem; text-align: left;
}
.about-credentials li {
  position: relative; padding-left: 34px; color: var(--ink); font-size: .98rem; list-style: none;
}
.about-credentials li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  background: var(--green); color: var(--gold-light); border-radius: 50%; font-size: .72rem;
  display: grid; place-items: center; font-weight: 700;
}
.about-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Practice / Services ---------- */
.practice { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.services-head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: end;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.services-head h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin: 0; }
.services-head-right { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.services-head-right p { color: var(--muted); margin: 0; }
.svc-arrows { display: flex; gap: 10px; }
.svc-arrows button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--green); cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.svc-arrows button:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.svc-arrows button svg { width: 18px; height: 18px; }

.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.card-media {
  position: relative; aspect-ratio: 16 / 11;
  background-color: var(--green-700);
  background-size: cover; background-position: center;
  display: grid; place-items: center;
}
/* subtle bottom scrim so the corner icon badge stays legible over photos */
.card-media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,22,24,.45) 0%, rgba(20,22,24,.05) 45%, transparent 70%);
}
/* Image slots — drop matching files in assets/images/ to replace the gradient.
   If a file is missing, the green gradient fallback shows automatically. */
.card-media[data-service="family"]       { background-image: url("../assets/images/service-family.jpg"); }
.card-media[data-service="consumer"]      { background-image: url("../assets/images/service-consumer.jpg"); }
.card-media[data-service="civil"]         { background-image: url("../assets/images/service-civil.jpg"); }
.card-media[data-service="property"]      { background-image: url("../assets/images/service-property.jpg"); }
.card-media[data-service="registration"]  { background-image: url("../assets/images/service-registration.jpg"); }
.card-media[data-service="cheque"]        { background-image: url("../assets/images/service-cheque.jpg"); }
.card-media[data-service="arbitration"]   { background-image: url("../assets/images/service-arbitration.jpg"); }
.card-media .card-icon {
  position: absolute; z-index: 1; left: 14px; bottom: 14px;
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem;
  background: var(--green); color: var(--gold-light);
  border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow-sm);
}
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 1.14rem; color: var(--green); margin: 0; }
.card p { color: var(--muted); font-size: .92rem; margin: 0; }
.card .card-link {
  margin-top: auto; padding-top: 6px; font-weight: 700; font-size: .85rem; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 6px;
}
.card .card-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.card-cta {
  background: var(--green); color: #fff; justify-content: center; align-items: flex-start;
  padding: 28px 26px; gap: 12px;
}
.card-cta h3, .card-cta p { color: #fff; }
.card-cta p { color: rgba(255,255,255,.8); margin-bottom: 8px; }

.practice-foot { text-align: center; margin-top: clamp(32px, 4vw, 48px); }

/* ---------- Process / Schedule ---------- */
.process { background: var(--white); position: relative; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative;
}
.process-grid::before {
  content: ""; position: absolute; top: 56px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-light) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 16px; }
.step-ico {
  position: relative; width: 112px; height: 112px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--green); color: var(--gold-light); display: grid; place-items: center;
  box-shadow: 0 16px 36px rgba(29,32,35,.22); border: 6px solid var(--cream);
}
.step-ico svg { width: 44px; height: 44px; }
.step-num {
  position: absolute; top: -6px; right: -6px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: #fff; display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 800; font-size: 1rem; border: 4px solid #fff;
}
.step h3 { color: var(--green); font-size: 1.3rem; }
.step p { color: var(--muted); margin: 0; max-width: 320px; margin-inline: auto; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.rating-summary { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }
.rating-score { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 800; color: var(--green); }
.rating-stars { color: var(--gold); font-size: 1.35rem; letter-spacing: 2px; }
.rating-count { color: var(--muted); font-size: .95rem; }

.reviews-controls { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--green); padding: 9px 18px; border-radius: 999px;
  font-weight: 600; font-size: .85rem; cursor: pointer; transition: all .2s ease;
}
.chip:hover { border-color: var(--gold); }
.chip.is-active { background: var(--green); color: #fff; border-color: var(--green); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; position: relative;
}
.review::before {
  content: "\201C"; position: absolute; top: 6px; right: 20px; font-family: var(--font-serif);
  font-size: 4rem; line-height: 1; color: var(--gold-soft);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.review-text { color: var(--ink); font-size: .95rem; margin: 0; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--gold-light);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-serif); flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--green); font-size: .95rem; line-height: 1.2; }
.review-tag { font-size: .78rem; color: var(--gold-dark); }
.reviews-actions { text-align: center; margin-top: 36px; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.contact-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 16px; }
.contact-list li { display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: start; }
.ci-label { font-weight: 700; color: var(--gold-dark); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; padding-top: 2px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 10px; }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }

.contact-form {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md); display: grid; gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--green); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: .95rem; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius); background: var(--cream); color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(190,148,86,.18); background: #fff;
}
.field textarea { resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.form-note { font-size: .9rem; margin: 0; min-height: 1.2em; }
.form-note.error { color: #b3261e; }
.form-note.ok { color: var(--green-600); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }

/* ---------- Footer (deep green) ---------- */
.site-footer { background: var(--green-800); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 44px; padding: clamp(46px, 6vw, 76px) 0 40px; }
.footer-brand img { border-radius: 10px; margin-bottom: 14px; }
.footer-brand strong { color: #fff; font-family: var(--font-serif); font-size: 1.15rem; }
.footer-brand p { color: rgba(255,255,255,.72); }
.footer-small { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-links h4, .footer-contact h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.72); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,.72); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0; font-size: .82rem; }
.footer-bottom p { margin: 0 0 8px; color: rgba(255,255,255,.55); }
.disclaimer { font-size: .78rem; line-height: 1.55; }

/* ---------- Floating actions ---------- */
.floating-actions { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab {
  position: relative; display: inline-flex; align-items: center; gap: 9px; height: 50px; padding: 0 20px 0 17px;
  border-radius: 30px; color: #fff; font-weight: 700; font-size: .92rem; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(29, 32, 35, .22); transition: transform .2s ease, box-shadow .2s ease;
}
.fab svg { flex-shrink: 0; position: relative; z-index: 1; }
.fab span { position: relative; z-index: 1; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(29, 32, 35, .28); }
.fab::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; background: inherit;
  z-index: 0; will-change: transform, opacity; animation: fabHalo 2.6s ease-out infinite;
}
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--gold); color: #fff; }
.fab-call::before { animation-delay: .5s; }

@keyframes fabHalo {
  0% { transform: scale(1); opacity: .45; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta-bar { display: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { min-height: 360px; max-width: 460px; width: 100%; margin: 0 auto; order: 2; border-radius: var(--radius-xl); }
  .hero-portrait::after { border-radius: var(--radius-xl); }
  .hero-copy { order: 1; padding-bottom: 20px; max-width: none; }
  .services-head { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: calc(var(--header-h)) 12px auto 12px; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    padding: 10px 20px 22px; transform: translateY(-130%); transition: transform .32s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    opacity: 0; pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--line-soft); }
  .main-nav ul a { display: block; padding: 14px 0; font-size: 1rem; }
  .main-nav ul a::after { display: none; }
  .nav-cta { margin-top: 16px; width: 100%; padding: 13px 18px; font-size: .95rem; justify-content: center; }
  .about-credentials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .floating-actions { display: none; }
  body { padding-bottom: 72px; }
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .96); backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 22px rgba(29, 32, 35, .12);
  }
  .mcta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 10px; border-radius: var(--radius); color: #fff; font-weight: 700; font-size: .98rem;
  }
  .mcta svg { flex-shrink: 0; }
  .mcta-call { background: var(--gold); }
  .mcta-whatsapp { background: #25d366; }
  .mcta:active { transform: scale(.98); }
}

@media (max-width: 560px) {
  .about-gallery { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 620px) {
  .section { padding: clamp(48px, 11vw, 72px) 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .practice-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .about-actions { flex-direction: column; }
  .about-actions .btn { width: 100%; justify-content: center; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .form-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card:hover, .fab:hover { transform: none; }
  .btn:hover .btn-ico { transform: none; }
  .fab::before { animation: none; opacity: 0; }
}
