@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --background: 40 33% 98%;
  --foreground: 220 25% 14%;
  --card: 0 0% 100%;
  --card-foreground: 220 25% 14%;
  --primary: 152 45% 32%;
  --primary-foreground: 0 0% 100%;
  --secondary: 38 65% 55%;
  --secondary-foreground: 0 0% 100%;
  --muted: 40 20% 93%;
  --muted-foreground: 220 10% 46%;
  --accent: 210 55% 45%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 40 15% 88%;
  --input: 40 15% 88%;
  --ring: 152 45% 32%;
  --radius: 0.75rem;
  --hero-gradient: linear-gradient(135deg, hsl(152 45% 32%), hsl(152 35% 22%));
  --section-alt: 40 25% 96%;
  --glow-primary: 152 50% 42%;
  --container-max: 1400px;
  --container-pad: 2rem;
  --quick-bar-height: 2.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--quick-bar-height) + 4rem + 0.35rem);
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", serif;
  font-weight: 700;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ----- Quick phone + address bar ----- */
.quick-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  min-height: var(--quick-bar-height);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid hsl(0 0% 100% / 0.12);
  box-shadow: 0 4px 14px -6px hsl(0 0% 0% / 0.22);
  display: flex;
  align-items: center;
}

.quick-contact-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem 1.75rem;
  width: 100%;
  padding: 0.45rem 0;
}

.quick-contact-bar__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  color: inherit;
}

.quick-contact-bar__item--phone {
  text-decoration: none;
}

.quick-contact-bar__item--phone:hover {
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-contact-bar__item--addr {
  opacity: 0.98;
  line-height: 1.4;
  text-align: center;
}

.quick-contact-bar__item--addr span {
  text-wrap: balance;
}

.quick-contact-bar__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.95;
}

@media (max-width: 640px) {
  :root {
    --quick-bar-height: 4.25rem;
  }

  .quick-contact-bar {
    font-size: 0.78rem;
  }

  .quick-contact-bar__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem var(--container-pad);
    gap: 0.4rem;
  }

  .quick-contact-bar__item--addr span {
    max-width: 22rem;
  }
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: var(--quick-bar-height);
  left: 0;
  right: 0;
  z-index: 50;
  overflow: visible;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
  animation: header-slide 0.5s ease-out forwards;
}

@keyframes header-slide {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.site-header--scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: hsl(var(--border));
  box-shadow: 0 4px 24px -4px hsl(var(--foreground) / 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-header__logo {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s;
  color: hsl(var(--primary-foreground));
}

.site-header--scrolled .site-header__logo {
  color: hsl(var(--primary));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    row-gap: 0.2rem;
    column-gap: 0.55rem;
    max-width: min(56rem, calc(100vw - 8rem));
  }
}

.nav-desktop a {
  font-size: 0.78rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground) / 0.8);
  transition: color 0.3s;
}

@media (min-width: 1200px) {
  .nav-desktop a {
    font-size: 0.8125rem;
  }

  .nav-desktop {
    column-gap: 0.7rem;
  }
}

.nav-desktop a:hover {
  color: hsl(var(--primary));
}

.site-header--scrolled .nav-desktop a {
  color: hsl(var(--muted-foreground));
}

.site-header--scrolled .nav-desktop a:hover {
  color: hsl(var(--primary));
}

.nav-dropdown {
  position: relative;
  align-self: center;
}

.nav-dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground) / 0.8);
  padding: 0;
  transition: color 0.3s;
}

@media (min-width: 1200px) {
  .nav-dropdown__btn {
    font-size: 0.8125rem;
  }
}

.nav-dropdown__btn:hover {
  color: hsl(var(--primary));
}

.site-header--scrolled .nav-dropdown__btn {
  color: hsl(var(--muted-foreground));
}

.site-header--scrolled .nav-dropdown__btn:hover {
  color: hsl(var(--primary));
}

.nav-dropdown__chev {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav-dropdown.is-open .nav-dropdown__chev {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 15.5rem;
  max-width: 19rem;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 14px 44px -10px hsl(var(--foreground) / 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Must beat .nav-desktop a and .site-header--scrolled .nav-desktop a (light nav text on hero). */
.site-header .nav-desktop .nav-dropdown__panel .nav-dropdown__link {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.site-header .nav-desktop .nav-dropdown__panel .nav-dropdown__link:hover {
  background: hsl(var(--muted));
  color: hsl(var(--primary));
}

.site-header--scrolled .nav-desktop .nav-dropdown__panel .nav-dropdown__link {
  color: hsl(var(--foreground));
}

.site-header--scrolled .nav-desktop .nav-dropdown__panel .nav-dropdown__link:hover {
  color: hsl(var(--primary));
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--primary-foreground));
}

.site-header--scrolled .nav-menu-btn {
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .nav-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.98);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 18px 48px -20px hsl(var(--foreground) / 0.18);
}

.mobile-nav.is-open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0 1.15rem;
}

.mobile-nav__inner > a {
  display: flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  border-radius: calc(var(--radius) + 2px);
  transition: background 0.18s ease, color 0.18s ease;
}

.mobile-nav__inner > a:hover {
  background: hsl(var(--muted) / 0.65);
  color: hsl(var(--primary));
}

.mobile-nav__inner > a:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

.mobile-nav__details {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid hsl(var(--border));
  background: linear-gradient(
    165deg,
    hsl(var(--muted) / 0.35) 0%,
    hsl(var(--background)) 55%
  );
  overflow: hidden;
}

.mobile-nav__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  list-style: none;
  cursor: pointer;
  padding: 0.65rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease;
}

.mobile-nav__summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__summary:focus {
  outline: none;
}

.mobile-nav__summary:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
  border-radius: calc(var(--radius) + 2px);
}

.mobile-nav__summary-text {
  flex: 1;
  text-align: left;
}

.mobile-nav__summary-chev {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: hsl(var(--muted-foreground));
  transition: transform 0.22s ease, color 0.18s ease;
}

.mobile-nav__details[open] .mobile-nav__summary {
  background: hsl(var(--background) / 0.85);
  border-bottom: 1px solid hsl(var(--border));
}

.mobile-nav__details[open] .mobile-nav__summary-chev {
  transform: rotate(180deg);
  color: hsl(var(--primary));
}

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.55rem 0.65rem;
  margin: 0;
  background: hsl(var(--background) / 0.92);
}

.mobile-nav__sub a {
  display: flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.mobile-nav__sub a:hover {
  background: hsl(var(--muted) / 0.55);
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.2);
}

.mobile-nav__sub a:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 1px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn--sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: calc(var(--radius) - 2px);
}

.btn--lg {
  height: 3rem;
  padding: 0 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
}

.btn--default {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn--default:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: 0 10px 15px -3px hsl(var(--foreground) / 0.1);
}

.btn--secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn--secondary:hover {
  background: hsl(var(--secondary) / 0.8);
  box-shadow: 0 10px 15px -3px hsl(var(--foreground) / 0.1);
}

.btn--hero {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 15px -3px hsl(var(--foreground) / 0.15);
}

.btn--hero:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: 0 20px 25px -5px hsl(var(--foreground) / 0.15);
  transform: scale(1.02);
}

.btn--hero-outline {
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-foreground) / 0.05);
  backdrop-filter: blur(4px);
}

.btn--hero-outline:hover {
  background: hsl(var(--primary-foreground) / 0.15);
  border-color: hsl(var(--primary-foreground) / 0.5);
}

.btn--block {
  width: 100%;
}

.btn--fb {
  background: #fff;
  color: hsl(220 46% 38%);
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: var(--radius);
}

.btn--fb:hover {
  background: hsl(0 0% 100% / 0.9);
}

/* ----- Sections ----- */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.section-head > p:not(.section-about__cta) {
  margin: 0 auto 0.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.section-head p.section-about__cta {
  margin: 2.75rem auto 0;
  max-width: 42rem;
}

.section-head--about .section-badge {
  margin-bottom: 1.875rem;
}

.section-head--about {
  margin-bottom: 4.75rem;
}

.text-gradient-primary {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-primary {
  color: hsl(var(--primary));
}

.bg-section-alt {
  background: hsl(var(--section-alt));
}

/* ----- Cards ----- */
.card-elevated {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 4px 24px -4px hsl(var(--foreground) / 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card-elevated:hover {
  box-shadow: 0 12px 40px -8px hsl(var(--foreground) / 0.12);
  transform: translateY(-4px);
}

.card-static {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 4px 24px -4px hsl(var(--foreground) / 0.06);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  animation: hero-zoom 1.5s ease-out forwards;
}

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

.hero__bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(var(--foreground) / 0.8),
    hsl(var(--foreground) / 0.6),
    hsl(var(--foreground) / 0.4)
  );
}

.hero__blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
  animation: float 3s ease-in-out infinite;
}

.hero__blob--1 {
  top: 25%;
  right: 15%;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary) / 0.1);
}

.hero__blob--2 {
  bottom: 25%;
  right: 25%;
  width: 12rem;
  height: 12rem;
  background: hsl(var(--secondary) / 0.1);
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: calc(8rem + var(--quick-bar-height));
  padding-bottom: 5rem;
  width: 100%;
}

.hero__inner {
  max-width: 42rem;
}

.hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  background: hsl(var(--primary-foreground) / 0.1);
  color: hsl(var(--primary-foreground) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: hsl(var(--primary-foreground));
  margin: 0 0 1.5rem;
}

.hero h1 .text-secondary {
  color: hsl(var(--secondary));
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: hsl(var(--primary-foreground) / 0.8);
  line-height: 1.6;
  margin: 0 0 2.5rem;
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.15);
}

.hero__stats strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: hsl(var(--primary-foreground));
}

.hero__stats strong.hero__stat-num {
  font-variant-numeric: tabular-nums;
  min-width: 4ch;
}

.hero__stats span {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.6);
  margin-top: 0.25rem;
  display: block;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsl(var(--primary-foreground) / 0.5);
  animation: hero-fade 0.8s ease 1.2s forwards;
  opacity: 0;
}

@keyframes hero-fade {
  to {
    opacity: 1;
  }
}

.hero__scroll:hover {
  color: hsl(var(--primary-foreground) / 0.8);
}

.hero__scroll svg {
  animation: chevron-bob 2s ease-in-out infinite;
}

@keyframes chevron-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Stagger hero text */
.hero .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .reveal--visible {
  opacity: 1;
  transform: none;
}

.hero .reveal:nth-child(1) {
  transition-delay: 0.15s;
}
.hero .reveal:nth-child(2) {
  transition-delay: 0.35s;
}
.hero .reveal:nth-child(3) {
  transition-delay: 0.5s;
}
.hero .reveal:nth-child(4) {
  transition-delay: 0.65s;
}
.hero .reveal:nth-child(5) {
  transition-delay: 0.8s;
}

/* ----- About ----- */
.section {
  padding: 6rem 0;
  overflow: hidden;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  text-align: center;
}

.feature-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: hsl(var(--primary));
  transition: background 0.3s;
}

.feature-card:hover .feature-card__icon {
  background: hsl(var(--primary) / 0.2);
}

.feature-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.team-card .team-card__img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 0.7s;
}

.team-card:hover .team-card__img {
  transform: scale(1.05);
}

.team-card__body {
  padding: 2rem;
  text-align: center;
}

.team-card__body h4 {
  font-family: "DM Sans", sans-serif;
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.team-card__role {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.team-card__body > p:last-child {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ----- Services ----- */
.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 1.75rem;
  cursor: default;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__arrow {
  width: 1rem;
  height: 1rem;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.service-card:hover .service-card__arrow {
  opacity: 0.6;
  transform: translateX(0);
}

.service-card p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.accent-accent {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}
.accent-secondary {
  background: hsl(var(--secondary) / 0.1);
  color: hsl(var(--secondary));
}
.accent-primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}
.accent-destructive {
  background: hsl(var(--destructive) / 0.1);
  color: hsl(var(--destructive));
}

.featured-split {
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-split {
    display: flex;
    align-items: stretch;
  }
  .featured-split__media {
    width: 42%;
    max-width: 22rem;
    flex-shrink: 0;
    align-self: center;
  }
  .featured-split__body {
    width: 58%;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.featured-split__media img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s;
}

@media (min-width: 768px) {
  .featured-split__media img {
    height: 15rem;
    max-height: 15rem;
    border-radius: 0.5rem;
  }
}

.featured-split:hover .featured-split__media img {
  transform: scale(1.05);
}

.featured-split__body {
  padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .featured-split__body {
    padding: 1.25rem 1.75rem 1.25rem 1.5rem;
  }
}

/* Compact badge + type inside featured split card (avoid huge pill / top gap) */
.featured-split__body .section-badge {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

.featured-split__body h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.featured-split__body > p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
}

.featured-split__body .tag-row span {
  font-size: 0.6875rem;
  padding: 0.2rem 0.55rem;
}

.featured-split__body .tag-row {
  gap: 0.35rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-row span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

/* ----- Courses (zig-zag layout) ----- */
.courses-section {
  --courses-navy: 230 42% 22%;
  --courses-rose: 343 72% 52%;
  --courses-title: 265 38% 32%;
  background-color: hsl(0 0% 100%);
  background-image: radial-gradient(circle at center, hsl(220 12% 82% / 0.45) 1px, transparent 1px);
  background-size: 22px 22px;
}

.courses-section .container {
  max-width: 56rem;
}

.courses-section__head {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .courses-section__head {
    margin-bottom: 3.5rem;
  }
}

.courses-section__head h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: hsl(var(--courses-navy));
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.courses-section__tagline {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: hsl(var(--courses-rose));
  line-height: 1.5;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.courses-zigzag {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .courses-zigzag {
    gap: 3.5rem;
  }
}

.courses-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .courses-row {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }

  .courses-row--reverse .courses-row__text {
    order: 2;
  }

  .courses-row--reverse .courses-row__media {
    order: 1;
  }
}

.courses-row__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: hsl(var(--courses-title));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.courses-row__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: hsl(var(--foreground) / 0.78);
}

.courses-row__media {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .courses-row__media {
    justify-content: center;
  }

  .courses-row:not(.courses-row--reverse) .courses-row__media {
    justify-content: flex-end;
  }

  .courses-row--reverse .courses-row__media {
    justify-content: flex-start;
  }
}

.courses-row__photo {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 40px -12px hsl(var(--courses-navy) / 0.2);
}

.courses-more {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsl(var(--border) / 0.6);
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 640px) {
  .courses-more {
    grid-template-columns: auto 1fr;
    gap: 2.5rem 3rem;
    align-items: center;
  }
}

.courses-more__logo-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .courses-more__logo-wrap {
    justify-content: flex-start;
  }
}

.courses-more__logo {
  width: min(180px, 55vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid hsl(0 0% 100%);
  box-shadow: 0 8px 32px -8px hsl(var(--courses-navy) / 0.18);
}

.courses-more__title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(var(--courses-navy));
  margin: 0 0 1.25rem;
  letter-spacing: 0.04em;
}

.courses-more__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.courses-more__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.82);
}

.courses-more__list a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: hsl(var(--courses-rose) / 0.5);
  text-underline-offset: 0.15em;
}

.courses-more__list a:hover {
  color: hsl(var(--primary));
  text-decoration-color: hsl(var(--primary));
}

.courses-more__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: hsl(var(--courses-rose));
}

.courses-more__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ----- Testimonials ----- */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 1.75rem;
  position: relative;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: hsl(var(--primary) / 0.1);
}

.testimonial-card .stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  width: 1rem;
  height: 1rem;
  fill: hsl(var(--secondary));
  color: hsl(var(--secondary));
}

.testimonial-card blockquote {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(var(--primary));
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* ----- Facebook banner ----- */
.fb-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
  .fb-banner {
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.fb-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(220 46% 38%),
    hsl(220 50% 45%),
    hsl(220 46% 38%)
  );
}

.fb-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, hsl(220 60% 55% / 0.3), transparent 60%);
}

.fb-banner__icon-wrap {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(0 0% 100% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .fb-banner__icon-wrap {
    width: 5rem;
    height: 5rem;
    margin: 0;
  }
}

.fb-banner__text {
  position: relative;
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .fb-banner__text {
    text-align: left;
  }
}

.fb-banner__text h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin: 0 0 0.5rem;
}

.fb-banner__text p {
  margin: 0;
  color: hsl(0 0% 100% / 0.7);
  font-size: 0.875rem;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .fb-banner__text p {
    font-size: 1rem;
  }
}

.fb-banner__cta {
  position: relative;
  flex-shrink: 0;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .fb-banner__cta {
    margin: 0;
  }
}

/* ----- FAQ ----- */
.faq-wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card));
  box-shadow: 0 4px 24px -4px hsl(var(--foreground) / 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: left;
  position: relative;
  padding-right: 2.5rem;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid hsl(var(--muted-foreground));
  border-bottom: 2px solid hsl(var(--muted-foreground));
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.form-card {
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.input,
.textarea {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.input::placeholder,
.textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.input:focus-visible,
.textarea:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.contact-offices__label {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: hsl(var(--muted-foreground));
}

.contact-offices__tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: hsl(var(--muted) / 0.65);
  border: 1px solid hsl(var(--border));
}

.contact-offices__tab {
  flex: 1;
  min-height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-offices__tab:hover {
  color: hsl(var(--foreground));
}

.contact-offices__tab.is-active {
  background: hsl(var(--background));
  color: hsl(var(--primary));
  box-shadow: 0 1px 4px hsl(var(--foreground) / 0.1);
}

.contact-offices__tab:focus {
  outline: none;
}

.contact-offices__tab:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.contact-offices__panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-offices__panel[hidden] {
  display: none !important;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-row__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-row h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.125rem;
}

.contact-row p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-row p a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 500;
}

.contact-row p a:hover {
  text-decoration: underline;
}

.service-card[id],
.courses-row[id],
#course-competitions,
#parents,
#faq {
  scroll-margin-top: calc(var(--quick-bar-height) + 4.5rem);
}

.map-frame {
  margin-top: 3.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 4px 24px -4px hsl(var(--foreground) / 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ----- Footer ----- */
.site-footer {
  background: hsl(var(--foreground));
  color: hsl(var(--primary-foreground));
}

.site-footer a:hover {
  color: hsl(var(--primary-foreground));
  opacity: 1;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.site-footer__brand {
  grid-column: span 2;
}

@media (max-width: 767px) {
  .site-footer__brand {
    grid-column: span 1;
  }
}

.site-footer h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.site-footer__brand p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
  line-height: 1.6;
  max-width: 24rem;
}

.site-footer h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-foreground) / 0.4);
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.625rem;
}

.site-footer li a {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
  transition: color 0.2s;
}

.site-footer li a:hover {
  color: hsl(var(--primary-foreground));
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-row a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary-foreground) / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: transform 0.2s, background 0.2s;
}

.social-row a:hover {
  background: hsl(var(--primary-foreground) / 0.15);
  transform: scale(1.1);
}

.site-footer__bottom {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.08);
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.4);
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__bottom .heart {
  width: 0.75rem;
  height: 0.75rem;
  fill: hsl(var(--secondary));
  color: hsl(var(--secondary));
  vertical-align: middle;
}

.footer-credit {
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: hsl(var(--primary-foreground) / 0.28);
}

.footer-credit__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.footer-credit__link:hover {
  color: hsl(var(--primary-foreground) / 0.55);
}

.footer-credit__link:focus-visible {
  outline: 1px solid hsl(var(--primary-foreground) / 0.35);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ----- Toast ----- */
#toast-root {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: hsl(var(--foreground));
  color: hsl(var(--primary-foreground));
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px -10px hsl(var(--foreground) / 0.4);
  max-width: 22rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.toast--show {
  opacity: 1;
  transform: translateY(0);
}

.toast__title {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.toast__desc {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.85;
}

/* ----- Reveal (scroll) ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

/* SVG utility */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--lg {
  width: 2rem;
  height: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Inner course pages (e.g. /italian) ----- */
body.page-inner .site-header {
  background: hsl(var(--background) / 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 4px 24px -4px hsl(var(--foreground) / 0.08);
}

body.page-inner .site-header__logo {
  color: hsl(var(--primary));
}

body.page-inner .nav-desktop a {
  color: hsl(var(--muted-foreground));
}

body.page-inner .nav-desktop a:hover {
  color: hsl(var(--primary));
}

body.page-inner .nav-dropdown__btn {
  color: hsl(var(--muted-foreground));
}

body.page-inner .nav-dropdown__btn:hover {
  color: hsl(var(--primary));
}

body.page-inner .nav-menu-btn {
  color: hsl(var(--foreground));
}

.page-inner main {
  padding-top: calc(var(--quick-bar-height) + 4rem + 1.5rem);
  padding-bottom: 4rem;
  background: hsl(var(--background));
}

.course-article {
  max-width: 42rem;
  margin: 0 auto;
}

.course-article__head {
  margin-bottom: 2rem;
}

.course-article__head h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0.65rem 0 0;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

.course-article__body p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
}

.course-article__body a:not(.btn) {
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.course-article__body a:not(.btn):hover {
  text-decoration-thickness: 2px;
}

.course-article__body h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin: 2rem 0 0.75rem;
  color: hsl(var(--foreground));
}

.course-article__body h3 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 1.5rem 0 0.65rem;
  line-height: 1.35;
  color: hsl(var(--foreground));
}

.course-article__body > h2:first-of-type {
  margin-top: 0.75rem;
}

.course-article__intro {
  font-size: 1.125rem;
  margin-bottom: 1.25rem !important;
}

.course-article__list {
  margin: 0.75rem 0 1.5rem;
  padding-left: 1.35rem;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.course-article__list li {
  margin-bottom: 0.4rem;
}

.course-article__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid hsl(var(--border));
}

.service-card__more {
  margin: 1rem 0 0 !important;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-card__more a {
  color: hsl(var(--primary));
  text-decoration: none;
}

.service-card__more a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
