/* Adil Associates — Income Tax & Corporate Advisory
   Direction: cool forest teal, parchment wash, editorial serif brand */

:root {
  --ink: #071a16;
  --teal-deep: #0a2e28;
  --teal: #145246;
  --teal-mid: #1f6b5c;
  --teal-soft: #2a8a76;
  --brass: #b08d57;
  --brass-light: #d4b483;
  --paper: #eef3f0;
  --paper-warm: #f5f7f4;
  --mist: #d5e0db;
  --muted: #5a6e68;
  --white: #ffffff;
  --line: rgba(10, 46, 40, 0.12);
  --shadow-soft: 0 1px 0 rgba(7, 26, 22, 0.04);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  --container: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(176, 141, 87, 0.08), transparent 50%),
    radial-gradient(90% 60% at 0% 40%, rgba(20, 82, 70, 0.06), transparent 45%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--teal-mid);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--teal-deep);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* —— Page loader —— */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--teal-deep);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.loading {
  overflow: hidden;
}

.loader-inner {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: grid;
  place-items: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(176, 141, 87, 0.22);
  border-top-color: var(--brass);
  animation: loaderSpin 0.9s linear infinite;
}

.loader-mark {
  width: 1.1rem;
  height: 1.1rem;
  background: var(--brass);
  transform: rotate(45deg);
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: rotate(45deg) scale(0.9); opacity: 0.85; }
  50% { transform: rotate(45deg) scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-ring,
  .loader-mark {
    animation: none;
  }
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(238, 243, 240, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft), 0 1px 0 var(--line);
}

.site-header.is-scrolled .logo-text,
.site-header.is-scrolled .site-nav a {
  color: var(--ink);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.header-inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  z-index: 2;
}

.site-header.is-scrolled .logo {
  color: var(--ink);
}

.logo-mark {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brass-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 120;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin-inline: auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  color: inherit;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

.btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

.btn-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .site-nav .btn-whatsapp {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
}

.site-header.is-scrolled .site-nav .btn-whatsapp:hover {
  background: var(--teal-mid);
  color: #ffffff;
  border-color: var(--teal-mid);
}

.btn-block {
  width: 100%;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 22, 0.42) 0%, rgba(7, 26, 22, 0.28) 38%, rgba(7, 26, 22, 0.72) 100%),
    linear-gradient(105deg, rgba(10, 46, 40, 0.62) 0%, rgba(10, 46, 40, 0.22) 48%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  animation: rise 0.9s var(--ease) both;
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-light);
  animation: rise 0.9s 0.1s var(--ease) both;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
  animation: rise 0.9s 0.18s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s 0.28s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* —— Intro —— */
.intro {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}

.intro-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
}

.intro-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  padding-top: 0.35rem;
}

/* —— Search topics —— */
.topics {
  padding: 0 0 var(--space-xl);
}

.topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.topic-list a {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.3;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.topic-list a:hover {
  border-color: var(--teal-soft);
  background: rgba(20, 82, 70, 0.06);
  color: var(--teal);
}

/* —— Sections shared —— */
.section-head {
  max-width: 36rem;
  margin-bottom: var(--space-lg);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--teal-deep);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head-light .eyebrow,
.section-head-light .section-lead {
  color: rgba(238, 243, 240, 0.7);
}

.section-head-light h2,
.why #why-heading {
  color: #ffffff !important;
}

/* —— Services —— */
.services {
  padding: var(--space-2xl) 0;
  position: relative;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.service.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-index {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  padding-top: 0.35rem;
}

.service-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.2;
}

.service-body > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 40rem;
}

.service-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.service-body li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.service-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--teal-soft);
  opacity: 0.55;
}

.service-body strong {
  font-weight: 500;
  color: var(--teal-deep);
}

/* —— Why —— */
.why {
  padding: var(--space-2xl) 0;
  background:
    linear-gradient(145deg, var(--teal-deep) 0%, #0d3d34 48%, #123f36 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.why h2,
.why #why-heading {
  color: #ffffff !important;
}

.why .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.why .eyebrow {
  color: var(--brass-light);
}

.why::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    );
  pointer-events: none;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2.5rem;
}

.why-item h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brass-light);
}

.why-item p {
  margin: 0;
  color: rgba(238, 243, 240, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

/* —— FAQ —— */
.faq {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 2rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.35;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.25rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* —— Contact —— */
.contact {
  padding: var(--space-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.contact-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-deep);
}

.contact-copy p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-row:hover {
  color: var(--teal-mid);
}

.contact-row:hover .contact-value {
  color: var(--teal-mid);
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-deep);
  word-break: break-word;
}

.contact-channels .btn {
  margin-top: 0.75rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0 6rem;
  border-top: 1px solid var(--line);
  background: rgba(10, 46, 40, 0.03);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: end;
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.footer-tag {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: flex-end;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--teal);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-powered {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-powered a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.footer-powered a:hover {
  color: var(--teal-mid);
  text-decoration: underline;
}

.footer-powered-sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

/* —— Floating WhatsApp —— */
.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  background: #1faa5a;
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(7, 26, 22, 0.22);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.float-wa:hover {
  transform: scale(1.06);
  background: #18c463;
  color: var(--white);
}

/* —— Reveal helper —— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .service {
    grid-template-columns: 3.25rem 1fr;
    gap: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .logo {
    position: relative;
    z-index: 120;
  }

  .site-header.is-scrolled,
  .site-header.nav-open {
    background: rgba(238, 243, 240, 0.98);
    backdrop-filter: none;
    box-shadow: var(--shadow-soft), 0 1px 0 var(--line);
  }

  .site-header.nav-open .logo,
  .site-header.nav-open .logo-text {
    color: var(--ink);
  }

  .site-header.nav-open .nav-toggle span,
  .site-header.is-scrolled .nav-toggle span {
    background: var(--ink);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(7, 26, 22, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 20rem);
    height: 100dvh;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: calc(var(--header-h) + 1.25rem) 1.25rem 2rem;
    background: var(--paper-warm);
    box-shadow: -12px 0 40px rgba(7, 26, 22, 0.18);
    transform: translateX(105%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    transition: transform 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-nav ul a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 0.35rem;
    border-bottom: 1px solid var(--line);
    color: var(--teal-deep);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
  }

  .site-nav ul a:hover,
  .site-nav ul a:focus-visible {
    color: var(--teal-mid);
  }

  .site-header.is-scrolled .site-nav ul a,
  .site-header.nav-open .site-nav ul a {
    color: var(--teal-deep);
  }

  .site-nav .btn-whatsapp {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9rem 1.25rem;
    background: var(--teal);
    color: #ffffff;
    border-color: var(--teal);
    font-size: 0.95rem;
  }

  .site-header.is-scrolled .site-nav .btn-whatsapp,
  .site-header.nav-open .site-nav .btn-whatsapp {
    background: var(--teal);
    color: #ffffff;
    border-color: var(--teal);
  }

  .site-nav .btn-whatsapp:hover {
    background: var(--teal-mid);
    color: #ffffff;
    border-color: var(--teal-mid);
  }

  .hero-content {
    padding-bottom: 3.5rem;
    max-width: none;
    margin-left: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-body ul {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner {
    width: min(100% - 1.75rem, var(--container));
  }

  .hero-content {
    width: min(100% - 1.75rem, var(--container));
  }

  .service {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .service-index {
    font-size: 1.25rem;
  }
}
