:root {
  --background: 40, 23%, 95%;
  --foreground: 200, 15%, 14%;
  --card: 0, 0%, 100%;
  --card-foreground: 200, 15%, 14%;
  --primary: 160, 28%, 36%;
  --primary-foreground: 0, 0%, 100%;
  --secondary: 210, 20%, 96%;
  --secondary-foreground: 200, 15%, 20%;
  --muted: 210, 15%, 92%;
  --muted-foreground: 200, 8%, 42%;
  --accent: 175, 55%, 32%;
  --accent-foreground: 0, 0%, 100%;
  --radius: 1rem;
  --g0: 0.5rem;
  --g1: 0.809rem;
  --g2: 1.309rem;
  --g3: 2.118rem;
  --g4: 3.427rem;
  --g5: 5.545rem;
  --g6: 8.972rem;
  --g7: 14.517rem;
  --g8: 23.488rem;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@supports (-webkit-touch-callout: none) {
  .nav-glass, .glass-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: hsl(var(--foreground));
  margin: 0;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: hsl(var(--foreground));
  margin: 0;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: hsl(var(--foreground));
  margin: 0;
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  margin: 0;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
  margin: 0;
}

p {
  line-height: 1.618;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

strong {
  font-weight: 600;
  color: hsl(var(--foreground));
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

svg {
  flex-shrink: 0;
  vertical-align: middle;
}

/* ----- Display & Position ----- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[2\] { z-index: 2; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }

/* ----- Flex & Grid Layout ----- */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }

/* ----- Spacing — custom g-scale ----- */
.p-g0 { padding: var(--g0); }
.p-g1 { padding: var(--g1); }
.p-g2 { padding: var(--g2); }
.p-g3 { padding: var(--g3); }
.p-g4 { padding: var(--g4); }
.px-g1 { padding-left: var(--g1); padding-right: var(--g1); }
.px-g2 { padding-left: var(--g2); padding-right: var(--g2); }
.px-g3 { padding-left: var(--g3); padding-right: var(--g3); }
.py-g0 { padding-top: var(--g0); padding-bottom: var(--g0); }
.py-g1 { padding-top: var(--g1); padding-bottom: var(--g1); }
.py-g2 { padding-top: var(--g2); padding-bottom: var(--g2); }
.py-g4 { padding-top: var(--g4); padding-bottom: var(--g4); }
.py-g5 { padding-top: var(--g5); padding-bottom: var(--g5); }
.pt-g3 { padding-top: var(--g3); }
.pb-g2 { padding-bottom: var(--g2); }
.pb-g3 { padding-bottom: var(--g3); }
.pb-g5 { padding-bottom: var(--g5); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-g1 { margin-left: var(--g1); margin-right: var(--g1); }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-g0 { margin-top: var(--g0); }
.mt-g1 { margin-top: var(--g1); }
.mt-g2 { margin-top: var(--g2); }
.mt-g3 { margin-top: var(--g3); }
.mt-g4 { margin-top: var(--g4); }
.-mt-g4 { margin-top: calc(-1 * var(--g4)); }
.mb-0 { margin-bottom: 0; }
.mb-g0 { margin-bottom: var(--g0); }
.mb-g1 { margin-bottom: var(--g1); }
.mb-g2 { margin-bottom: var(--g2); }
.mb-g3 { margin-bottom: var(--g3); }
.mb-g4 { margin-bottom: var(--g4); }
.gap-g0 { gap: var(--g0); }
.gap-g1 { gap: var(--g1); }
.gap-g2 { gap: var(--g2); }
.gap-g3 { gap: var(--g3); }
.gap-g4 { gap: var(--g4); }
.space-y-g0 > * + * { margin-top: var(--g0); }
.space-y-g1 > * + * { margin-top: var(--g1); }
.space-y-g3 > * + * { margin-top: var(--g3); }
.space-y-1 > * + * { margin-top: 0.25rem; }

/* ----- Sizing ----- */
.w-full { width: 100%; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem; }
.w-1 { width: 0.25rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.h-full { height: 100%; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[400px\] { min-height: 400px; }
.max-w-full { max-width: 100%; }
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.aspect-\[1\.618\/1\] { aspect-ratio: 1.618 / 1; }

/* ----- Typography ----- */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.italic { font-style: italic; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ----- Colors — backgrounds ----- */
.bg-background { background-color: hsl(var(--background)); }
.bg-background\/95 { background-color: hsla(var(--background), 0.95); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/10 { background-color: hsla(var(--primary), 0.1); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-accent\/10 { background-color: hsla(var(--accent), 0.1); }
.bg-white { background-color: #fff; }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-foreground { background-color: hsl(var(--foreground)); }

/* ----- Colors — text ----- */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-accent { color: hsl(var(--accent)); }
.text-card { color: hsl(var(--card)); }
.text-white { color: #fff; }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-black { color: #000; }

/* ----- Gradients ----- */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-primary { --tw-gradient-from: hsl(var(--primary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-black\/30 { --tw-gradient-from: rgba(0,0,0,0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.to-accent { --tw-gradient-to: hsl(var(--accent)); }
.to-\[hsl\(160\2c 30%\2c 30%\)\] { --tw-gradient-to: hsl(160, 30%, 30%); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(255,255,255,0)); }
.to-transparent { --tw-gradient-to: transparent; }

/* ----- Borders ----- */
.border { border: 1px solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* ----- Border colors (must come after border-width for cascade to work) ----- */
.border-primary { border-color: hsl(var(--primary)); }
.border-black\/5 { border-color: rgba(0,0,0,0.05); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-white { border-color: #fff; }

/* ----- Shadows ----- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-black\/5 { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }

/* ----- Effects ----- */
.opacity-0 { opacity: 0; }
.opacity-60 { opacity: 0.6; }
.opacity-100 { opacity: 1; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.blur-xl { filter: blur(24px); }
.resize-y { resize: vertical; }

/* ----- Transforms & Transitions ----- */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ----- Focus ring (shared) ----- */
input:focus, textarea:focus, select:focus {
  outline: none;
}

/* ----- Existing custom components ----- */
.card {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  padding: var(--g2);
  text-align: left;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 51;
}

.nav-glass {
  background: hsla(40, 23%, 95%, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.06);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

a, button {
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--g0);
  padding: var(--g1) var(--g3);
  background-color: hsl(var(--primary));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: hsl(160, 28%, 30%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px hsla(160, 28%, 36%, 0.25);
}
.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--g0);
  padding: var(--g1) var(--g3);
  background-color: transparent;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary));
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: hsl(var(--primary));
  background-color: hsla(28, 12%, 47%, 0.06);
  transform: translateY(-1px);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.glass-card {
  background: hsla(0, 0%, 100%, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--g1);
  padding: var(--g0) var(--g2);
  background-color: hsla(160, 28%, 36%, 0.08);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.hero-home {
  min-height: 75vh !important;
}

.hero-service {
  min-height: 75vh !important;
  margin-bottom: var(--g3);
}

/* Hamburger to X animation */
#menu-toggle .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#menu-toggle .hamburger-line:nth-child(2) {
  margin: 5px 0;
}
#menu-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
#menu-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Hover state variants ----- */
.hover\:bg-primary\/10:hover { background-color: hsla(var(--primary), 0.1); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-white\/90:hover { background-color: rgba(255,255,255,0.9); }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-accent:hover { color: hsl(var(--accent)); }
.hover\:border-primary\/20:hover { border-color: hsla(var(--primary), 0.2); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:\!bg-white\/10:hover { background-color: rgba(255,255,255,0.1) !important; }
.hover\:\!border-white\/50:hover { border-color: rgba(255,255,255,0.5) !important; }

/* ----- Group hover variants ----- */
.group:hover .group-hover\:bg-primary\/15 { background-color: hsla(var(--primary), 0.15); }
.group:hover .group-hover\:bg-primary\/20 { background-color: hsla(var(--primary), 0.2); }

/* ----- Focus variants ----- */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px hsla(var(--primary), 0.3); }
.focus\:ring-primary\/30:focus { box-shadow: 0 0 0 2px hsla(var(--primary), 0.3); }
.focus\:border-primary:focus { border-color: hsl(var(--primary)); }

/* ----- Responsive: sm (640px) ----- */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-g2 { padding-left: var(--g2); padding-right: var(--g2); }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:w-\[calc\(50\%-0\.5rem\)\] { width: calc(50% - 0.5rem); }
}

/* ----- Responsive: md (768px) ----- */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:h-14 { height: 3.5rem; }
  .md\:h-16 { height: 4rem; }
  .md\:w-14 { width: 3.5rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-3\/5 { width: 60%; }
  .md\:w-\[55\%\] { width: 55%; }
  .md\:max-w-none { max-width: none; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:p-g3 { padding: var(--g3); }
  .md\:p-g4 { padding: var(--g4); }
  .md\:p-g5 { padding: var(--g5); }
  .md\:py-g1 { padding-top: var(--g1); padding-bottom: var(--g1); }
  .md\:py-g6 { padding-top: var(--g6); padding-bottom: var(--g6); }
  .md\:pt-g4 { padding-top: var(--g4); }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:object-center { object-position: center; }
}

/* ----- Responsive: lg (1024px) ----- */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:px-g3 { padding-left: var(--g3); padding-right: var(--g3); }
  .lg\:text-2xl { font-size: 1.5rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:min-h-\[440px\] { min-height: 440px; }
  .lg\:w-\[calc\(25\%-0\.75rem\)\] { width: calc(25% - 0.75rem); }
}

/* ----- Important overrides (used sparsely) ----- */
.\!mb-0 { margin-bottom: 0 !important; }
.\!mb-g3 { margin-bottom: var(--g3) !important; }
.\!px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.\!px-g2 { padding-left: var(--g2) !important; padding-right: var(--g2) !important; }
.\!px-g3 { padding-left: var(--g3) !important; padding-right: var(--g3) !important; }
.\!py-g0 { padding-top: var(--g0) !important; padding-bottom: var(--g0) !important; }
.\!py-g1 { padding-top: var(--g1) !important; padding-bottom: var(--g1) !important; }
.\!text-white { color: #fff !important; }
.\!max-w-none { max-width: none !important; }
.\!border-white\/25 { border-color: rgba(255,255,255,0.25) !important; }

/* ----- Mobile menu overlay ----- */
#mobile-menu-overlay {
  transition: opacity 0.3s ease;
}

/* ----- Section default ----- */
section {
  margin-bottom: var(--g5);
  text-align: center;
}

@media (max-width: 768px) {
  section { margin-bottom: var(--g4); }

  .hero-home {
    min-height: 75vh;
  }

  .hero-home h1 {
    margin-bottom: var(--g0) !important;
  }

  .hero-home .hero-subtitle {
    margin-bottom: var(--g2) !important;
  }
}
