/* ==========================================================================
   Mantock Baletski Studio — static stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  color-scheme: light;
  --background: oklch(0.995 0.003 350);
  --foreground: oklch(0.3 0.02 350);
  --card: oklch(1 0 0);
  --primary: oklch(0.62 0.075 12);
  --primary-foreground: oklch(0.99 0.005 350);
  --secondary: oklch(0.965 0.012 70);
  --secondary-foreground: oklch(0.35 0.02 350);
  --muted: oklch(0.97 0.006 350);
  --muted-foreground: oklch(0.55 0.02 350);
  --accent: oklch(0.955 0.017 350);
  --accent-foreground: oklch(0.4 0.03 12);
  --border: oklch(0.92 0.008 350);
  --rose-gold: oklch(0.68 0.065 30);
  --blush: oklch(0.955 0.017 350);

  --radius-sm: 0.6rem;
  --radius-md: 0.8rem;
  --radius-lg: 1rem;
  --radius-xl: 1.4rem;
  --radius-2xl: 1.8rem;
  --radius-3xl: 2.2rem;
  --radius-4xl: 2.6rem;

  --font-serif: 'Cormorant Garamond', ui-serif, Georgia, serif;
  --font-sans: 'Jost', ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

h1, h2, h3, blockquote, p {
  margin: 0;
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 64rem) {
  .container {
    padding-inline: 2.5rem;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--primary);
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-line {
  height: 1px;
  width: 2.5rem;
  background: var(--primary);
  flex-shrink: 0;
}

h2.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  font-size: 2.25rem;
  color: var(--foreground);
}

@media (min-width: 40rem) {
  h2.section-title {
    font-size: 3rem;
  }
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  filter: blur(6px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .marquee-track {
    animation: none !important;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background 500ms, border-color 500ms, backdrop-filter 500ms;
}

.site-header.scrolled {
  background: color-mix(in oklch, var(--background) 70%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--foreground);
}

.logo-sub {
  margin-top: 0.25rem;
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
  transition: color 300ms;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: width 300ms;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: center;
  transition: box-shadow 300ms, filter 300ms, border-color 300ms, color 300ms;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  filter: brightness(1.05);
}

.btn-outline {
  border: 1px solid color-mix(in oklch, var(--foreground) 25%, transparent);
  background: color-mix(in oklch, var(--background) 40%, transparent);
  color: var(--foreground);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: color-mix(in oklch, var(--background) 60%, transparent);
  backdrop-filter: blur(6px);
}

@media (min-width: 64rem) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-block;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-top: 1px solid transparent;
  background: color-mix(in oklch, var(--background) 95%, transparent);
  backdrop-filter: blur(20px);
  transition: max-height 500ms, opacity 500ms;
}

.mobile-menu.open {
  max-height: 26rem;
  opacity: 1;
  border-top: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
}

.mobile-menu a {
  display: block;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 40%, transparent);
  padding-block: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: color-mix(in oklch, var(--foreground) 90%, transparent);
}

.mobile-menu li.cta {
  padding-top: 1rem;
}

.mobile-menu li.cta a {
  border-bottom: none;
  border-radius: 999px;
  background: var(--primary);
  padding-block: 0.75rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--primary-foreground);
}

@media (min-width: 64rem) {
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, var(--background) 40%, transparent),
    color-mix(in oklch, var(--background) 25%, transparent) 45%,
    color-mix(in oklch, var(--background) 85%, transparent)
  );
}

.hero-gradient-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    color-mix(in oklch, var(--background) 55%, transparent),
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 10rem 5rem;
}

@media (min-width: 64rem) {
  .hero-content {
    padding-bottom: 7rem;
  }
}

.hero-text {
  max-width: 48rem;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.05;
  color: var(--foreground);
  text-wrap: balance;
}

@media (min-width: 40rem) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 64rem) {
  .hero-text h1 {
    font-size: 4.5rem;
  }
}

.hero-text p.lead {
  margin-top: 2rem;
  max-width: 34rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
}

@media (min-width: 40rem) {
  .hero-text p.lead {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-actions .btn {
  padding: 1rem 2rem;
}

@media (min-width: 40rem) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  border-block: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: color-mix(in oklch, var(--accent) 50%, transparent);
  padding-block: 1.25rem;
}

.marquee-viewport {
  position: relative;
  display: flex;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marquee 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee-item span.word {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: color-mix(in oklch, var(--primary) 80%, transparent);
}

.marquee-item span.dot {
  color: var(--rose-gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Generic section paddings
   ========================================================================== */

section.py {
  padding-block: 6rem;
}

@media (min-width: 64rem) {
  section.py {
    padding-block: 9rem;
  }
}

.bg-tint {
  background: color-mix(in oklch, var(--accent) 40%, transparent);
}

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 64rem) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .frame {
  overflow: hidden;
  border-radius: var(--radius-4xl);
  box-shadow: 0 20px 40px -20px color-mix(in oklch, var(--primary) 5%, transparent);
}

.about-image-wrap .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  display: none;
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: color-mix(in oklch, var(--background) 80%, transparent);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 10px 30px -10px rgb(0 0 0 / 0.15);
  backdrop-filter: blur(6px);
}

@media (min-width: 40rem) {
  .about-badge {
    display: block;
  }
}

.about-badge .brand {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--primary);
}

.about-badge .sub {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted-foreground);
}

.about-copy {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  padding-top: 2.5rem;
}

.stats .value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--primary);
}

@media (min-width: 40rem) {
  .stats .value {
    font-size: 3rem;
  }
}

.stats .label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

/* ==========================================================================
   Why Mantock
   ========================================================================== */

.features-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 64rem) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  height: 100%;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: transform 500ms, border-color 500ms, box-shadow 500ms;
}

.feature-card:hover {
  transform: translateY(-0.375rem);
  border-color: color-mix(in oklch, var(--primary) 30%, transparent);
  box-shadow: 0 25px 50px -12px color-mix(in oklch, var(--primary) 5%, transparent);
}

.feature-icon {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: var(--blush);
  color: var(--primary);
  transition: background 500ms, color 500ms;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-card h3 {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--foreground);
}

.feature-card p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

/* ==========================================================================
   Programs
   ========================================================================== */

.programs-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 40rem) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: var(--card);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: transform 500ms, box-shadow 500ms;
}

.program-card:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 25px 50px -12px color-mix(in oklch, var(--primary) 10%, transparent);
}

.program-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.program-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1200ms ease-out;
}

.program-card:hover .program-media img {
  transform: scale(1.05);
}

.program-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in oklch, var(--foreground) 45%, transparent),
    transparent 60%
  );
}

.program-age {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  border-radius: 999px;
  background: color-mix(in oklch, var(--background) 85%, transparent);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--primary);
  backdrop-filter: blur(6px);
}

.program-body {
  padding: 1.5rem;
}

.program-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--foreground);
}

.program-body p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
  margin-top: 3.5rem;
  columns: 1;
  gap: 1.25rem;
}

@media (min-width: 40rem) {
  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 64rem) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  margin-bottom: 1.25rem;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 1200ms ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in oklch, var(--foreground) 25%, transparent),
    transparent
  );
  opacity: 0;
  transition: opacity 500ms;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ==========================================================================
   Performances
   ========================================================================== */

.performances-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 40rem) {
  .performances-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.performances-nav {
  display: flex;
  gap: 0.75rem;
}

.round-btn {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  color: var(--foreground);
  transition: border-color 200ms, color 200ms;
}

.round-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.performances-track {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.performances-track::-webkit-scrollbar {
  display: none;
}

.performance-card {
  position: relative;
  width: 85%;
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

@media (min-width: 40rem) {
  .performance-card {
    width: 55%;
  }
}

@media (min-width: 64rem) {
  .performance-card {
    width: 42%;
  }
}

.performance-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.performance-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1200ms ease-out;
}

.performance-card:hover .performance-media img {
  transform: scale(1.05);
}

.performance-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in oklch, var(--foreground) 70%, transparent),
    color-mix(in oklch, var(--foreground) 10%, transparent) 60%,
    transparent
  );
}

.performance-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.75rem;
}

.performance-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-foreground);
}

.performance-caption p {
  margin-top: 0.5rem;
  max-width: 28rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: color-mix(in oklch, var(--primary-foreground) 85%, transparent);
}

/* ==========================================================================
   Instructor
   ========================================================================== */

.instructor-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 64rem) {
  .instructor-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }
}

.instructor-grid .frame {
  overflow: hidden;
  border-radius: var(--radius-4xl);
  box-shadow: 0 20px 40px -12px color-mix(in oklch, var(--primary) 10%, transparent);
}

blockquote.pull {
  margin-top: 2.5rem;
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: color-mix(in oklch, var(--foreground) 90%, transparent);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

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

.testimonial-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--rose-gold);
}

.stars svg {
  height: 1rem;
  width: 1rem;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin-top: 1.5rem;
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: color-mix(in oklch, var(--foreground) 90%, transparent);
  text-wrap: pretty;
}

.testimonial-foot {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  padding-top: 1.5rem;
}

.testimonial-avatar {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blush);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--primary);
}

.testimonial-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
}

.testimonial-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-wrap {
  max-width: 56rem;
}

.faq-list {
  margin-top: 3.5rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}

.faq-item {
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  text-align: left;
}

.faq-question span.q-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--foreground);
}

@media (min-width: 40rem) {
  .faq-question span.q-text {
    font-size: 1.5rem;
  }
}

.faq-question .faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 500ms;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 1.5rem;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  max-width: 42rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 64rem) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.contact-lead {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.contact-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--foreground);
  transition: color 200ms;
}

a.contact-row:hover {
  color: var(--primary);
}

.contact-icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blush);
  color: var(--primary);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.social-btn {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  color: var(--foreground);
  transition: border-color 200ms, color 200ms;
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social-btn.small {
  height: 2.5rem;
  width: 2.5rem;
}

.map-frame {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.map-frame iframe {
  height: 16rem;
  width: 100%;
  border: 0;
  filter: grayscale(0.3);
}

.contact-form-card {
  border-radius: var(--radius-4xl);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px color-mix(in oklch, var(--primary) 5%, transparent);
}

@media (min-width: 40rem) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--foreground);
  outline: none;
  transition: border-color 200ms;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in oklch, var(--muted-foreground) 60%, transparent);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 40rem) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-submit {
  width: 100%;
  border-radius: 999px;
  background: var(--primary);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
  transition: box-shadow 300ms, filter 300ms;
}

.form-submit:hover {
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.15);
  filter: brightness(1.05);
}

.form-success {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-success .check {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blush);
  color: var(--primary);
}

.form-success h3 {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--foreground);
}

.form-success p {
  margin-top: 0.75rem;
  max-width: 20rem;
  font-weight: 300;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background: var(--background);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand p.about-text {
  margin-top: 1.25rem;
  max-width: 20rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted-foreground);
}

.footer-nav-list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  font-weight: 300;
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
  transition: color 200ms;
}

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

.hours-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list li span:last-child {
  color: var(--foreground);
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  padding-block: 2rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

@media (min-width: 40rem) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p.locale {
  letter-spacing: 0.02em;
}
