/* ═══════════════════════════════════════════
   LLUNA — PSICÓLOGA  ·  DESIGN SYSTEM
   Color palette:
     Deep Teal   #007979
     Turquoise   #24B1B1
     Cream       #FFF0E4
     Peach       #FFE0C5
   ═══════════════════════════════════════════ */

/* ── Reset & Custom Properties ─────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --teal-deep:  #007979;
  --teal:       #24B1B1;
  --teal-light: #3cc8c8;
  --cream:      #FFF0E4;
  --peach:      #FFE0C5;
  --white:      #ffffff;
  --dark:       #0a2e2e;
  --dark-soft:  #164444;
  --text:       #2d4f4f;
  --text-light: #5a8a8a;
  --text-on-dark: rgba(255, 240, 228, .92);

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, .55);
  --glass-border: rgba(255, 255, 255, .35);
  --glass-blur:   18px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0, 121, 121, .08);
  --shadow-md:  0 8px 30px rgba(0, 121, 121, .10);
  --shadow-lg:  0 16px 50px rgba(0, 121, 121, .14);
  --shadow-glow: 0 0 40px rgba(36, 177, 177, .18);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizing */
  --nav-height: 72px;
  --section-gap: 120px;
  --radius:  16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --duration: .45s;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: var(--section-gap) 0;
}

.section--narrow {
  padding: 80px 0;
}

.section__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 28px;
}

.section__title em {
  font-style: italic;
  color: var(--teal-deep);
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  padding: 14px 36px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 121, 121, .3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 121, 121, .4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 240, 228, .5);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 240, 228, .15);
  border-color: rgba(255, 240, 228, .8);
}

.btn--nav {
  padding: 10px 24px;
  font-size: .85rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--cream);
}

.btn--nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 121, 121, .35);
}

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

.btn__text { position: relative; z-index: 1; }

.btn__loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,240,228,.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.btn--loading .btn__text { opacity: 0; }
.btn--loading .btn__loader { display: inline-block; position: absolute; }

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

/* ── Glass card ─────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
}

.nav--scrolled {
  background: rgba(255, 240, 228, .72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 121, 121, .06);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--cream);
  transition: color var(--duration) var(--ease);
}

.nav--scrolled .nav__logo {
  color: var(--teal-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255, 240, 228, .85);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width .3s var(--ease);
}

.nav__links a:not(.btn):hover::after {
  width: 100%;
}

.nav--scrolled .nav__links a:not(.btn) {
  color: var(--text);
}

.nav--scrolled .nav__links a:not(.btn):hover {
  color: var(--teal-deep);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.nav--scrolled .nav__toggle span {
  background: var(--teal-deep);
}

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('img/hero.png') center / cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 41, 41, .78) 0%,
    rgba(0, 121, 121, .55) 50%,
    rgba(36, 177, 177, .35) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 24px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 224, 197, .75);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero__title span {
  font-style: italic;
  background: linear-gradient(135deg, var(--peach), var(--cream));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 240, 228, .82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 240, 228, .4);
  border-radius: 14px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 240, 228, .6);
  border-radius: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(14px); opacity: .3; }
}

/* ── About ──────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about__image-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--peach));
  opacity: .25;
  filter: blur(2px);
  z-index: 0;
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-10px, 12px); }
}

.about__text p {
  margin-bottom: 16px;
  font-size: .97rem;
  color: var(--text);
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 121, 121, .1);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
}

.stat__label {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── Philosophy ─────────────────────────────── */
.philosophy {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 224, 197, .07);
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  line-height: 1.5;
}

.philosophy__mark {
  font-size: 6rem;
  font-style: normal;
  color: rgba(255, 224, 197, .2);
  position: absolute;
  top: -48px;
  left: -30px;
  line-height: 1;
  font-family: var(--font-display);
}

/* ── Services ───────────────────────────────── */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, #f5e6d6 100%);
}

.services .section__label,
.services .section__title {
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0, 121, 121, .06);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 121, 121, .03), rgba(36, 177, 177, .06));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  background: linear-gradient(145deg, var(--teal-deep), #0a8e8e);
  color: var(--text-on-dark);
  border: none;
}

.service-card--featured .service-card__title {
  color: var(--cream);
}

.service-card--featured .service-card__price {
  color: var(--peach);
}

.service-card__badge {
  position: absolute;
  top: 24px;
  right: -36px;
  background: var(--peach);
  color: var(--teal-deep);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 170px;
  text-align: center;
  padding: 6px 0;
  transform: rotate(42deg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0, 121, 121, .08);
  color: var(--teal-deep);
  position: relative;
  z-index: 1;
}

.service-card--featured .service-card__icon {
  background: rgba(255, 240, 228, .12);
  color: var(--peach);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card__text {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--teal);
  position: relative;
  z-index: 1;
}

/* ── Zen Divider ────────────────────────────── */
.zen-divider {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.zen-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zen-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 41, 41, .5),
    rgba(0, 121, 121, .4)
  );
}

.zen-divider__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.zen-divider__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  max-width: 600px;
}

/* ── Testimonials ───────────────────────────── */
.testimonials {
  background: var(--cream);
}

.testimonials .section__label,
.testimonials .section__title {
  text-align: center;
}

.testimonials__carousel {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform .6s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.testimonial-card__stars {
  color: var(--peach);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;
  filter: drop-shadow(0 0 4px rgba(255, 224, 197, .5));
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark-soft);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: .95rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: .8rem;
  color: var(--text-light);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 121, 121, .2);
  background: transparent;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.testimonials__btn:hover {
  background: var(--teal-deep);
  color: var(--cream);
  border-color: var(--teal-deep);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 121, 121, .15);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.testimonials__dot--active {
  background: var(--teal-deep);
  transform: scale(1.3);
}

/* ── Contact ────────────────────────────────── */
.contact {
  background: linear-gradient(180deg, var(--cream), #f0e2d2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info h2 {
  margin-bottom: 20px;
}

.contact__info > p {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 121, 121, .08);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 400;
}

a.contact__detail-value:hover {
  color: var(--teal-deep);
}

/* Form */
.contact__form {
  padding: 40px;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--dark);
  background: rgba(255, 255, 255, .6);
  border: 1.5px solid rgba(0, 121, 121, .12);
  border-radius: 12px;
  outline: none;
  transition: all .3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 121, 121, .3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(36, 177, 177, .1);
  background: rgba(255, 255, 255, .85);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23007979' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__form-note {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 240, 228, .08);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
}

.footer__tagline {
  font-size: .9rem;
  opacity: .6;
  margin-top: 8px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: .85rem;
  opacity: .6;
  margin-bottom: 10px;
  transition: opacity .3s, color .3s;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--teal-light);
}

.footer__social h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__social-icons {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 240, 228, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: .6;
  transition: all .3s var(--ease);
}

.footer__social-link:hover {
  opacity: 1;
  background: rgba(36, 177, 177, .2);
  border-color: rgba(36, 177, 177, .4);
}

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: .8rem;
  opacity: .4;
}

/* ── Modal ──────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 41, 41, .5);
  backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 48px 40px;
  text-align: center;
  transform: translateY(30px) scale(.95);
  transition: transform .4s var(--ease);
}

.modal--open .modal__content {
  transform: translateY(0) scale(1);
}

.modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.modal__text {
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 28px;
}

/* ── Animations (Intersection Observer) ─────── */
[data-animate] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image-frame img {
    aspect-ratio: 4 / 3;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
    --nav-height: 64px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0, 41, 41, .96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right .5s var(--ease);
  }

  .nav__links--open {
    right: 0;
  }

  .nav__links a {
    font-size: 1.1rem;
    color: var(--cream) !important;
  }

  .nav__toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav__toggle--open span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about__stats {
    gap: 20px;
  }

  .stat__number {
    font-size: 2rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .zen-divider {
    height: 280px;
  }

  .testimonial-card {
    padding: 0 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .contact__form {
    padding: 28px 20px;
  }

  .about__stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .stat {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .stat__label {
    margin-top: 0;
  }
}
