/* Base styles */
:root {
  --bg: #f0e3e2;
  --bg-muted: #f7edec;
  --text: #1f1f1f;
  --text-muted: #5f5154;
  --accent: #ff8170;
  --accent-dark: #d96555;
  --accent-deep: #685478;
  --border: #e5d3d2;
  --surface: #ffffff;
  --surface-muted: #fffdfa;
  --max-width: 1120px;
  --radius: 18px;
  --shadow: 0 25px 55px -35px rgba(17, 17, 17, 0.35);
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  background: var(--bg);
  padding-top: 72px;
}

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

p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--text);
}

h1 {
  font-family: "Yeseva One", "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
}

h2 {
  font-family: "Erica One", "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  line-height: 1.1;
}

h3 {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.heading-yeseva {
  font-family: "Yeseva One", "Manrope", sans-serif;
  font-weight: 400;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

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

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.muted {
  background: var(--bg-muted);
}

.overline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary,
.button.tertiary {
  border: none;
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow);
}

.button.secondary:hover,
.button.tertiary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(240, 227, 226, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 211, 210, 0.5);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.site-header .container {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.menu-overlay {
  position: fixed;
  top: var(--nav-overlay-y, 0px);
  left: var(--nav-overlay-x, 100%);
  width: 240vmax;
  height: 240vmax;
  border-radius: 50%;
  background: #ff8170;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  pointer-events: none;
  z-index: 8;
  display: none;
}

.menu-overlay.menu-overlay--expanded {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 11;
}

.menu-toggle svg {
  width: 36px;
  height: 36px;
}

.menu-toggle .ham {
  transform-origin: 50% 50%;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.menu-toggle .hamRotate.active {
  transform: rotate(45deg);
}

.menu-toggle .line {
  fill: none;
  stroke: #fff;
  stroke-width: 5.5;
  stroke-linecap: round;
  transition: stroke-dasharray 0.4s ease, stroke-dashoffset 0.4s ease;
}

.menu-toggle .ham1 .top {
  stroke-dasharray: 40 139;
}

.menu-toggle .ham1 .bottom {
  stroke-dasharray: 40 180;
}

.menu-toggle .ham1.active .top {
  stroke-dashoffset: -98px;
}

.menu-toggle .ham1.active .bottom {
  stroke-dashoffset: -138px;
}

.menu-toggle:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.site-header.nav-open .menu-toggle {
  background: var(--accent-dark);
}

.site-header.nav-open .menu-toggle .line {
  stroke: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
}

.site-header .brand-logo {
  height: 34px;
}


.site-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.site-nav a:hover::after {
  background: var(--accent);
}

.cta {
  justify-self: end;
  font-size: 0.9rem;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.mobile-only {
  display: none;
}


/* Hero */
.hero {
  padding: clamp(5rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.68), rgba(104, 84, 120, 0.55)),
    url("../img/img_1.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
  z-index: 3;
}

.hero .overline,
.hero .lead {
  color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
  color: #fff;
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.28);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  align-items: flex-start;
  text-align: left;
}

.hero-content .lead {
  max-width: 600px;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

/* Cards and layout splits */
.split {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.programs .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 3;
}

.programs-intro {
  text-align: center;
  max-width: 720px;
}

.plans {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.plan {
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(229, 211, 210, 0.7);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 3;
}

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

.plan-actions {
  margin-top: auto;
}

.plan-actions .button {
  width: 100%;
  justify-content: center;
}

.plan-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.6rem 1.8rem 1.8rem;
  background: var(--accent-deep);
  color: #fff;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.plan-header h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: inherit;
}

.plan-header .plan-meta strong {
  color: #fff;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.plan-price {
  font-family: "Yeseva One", "Manrope", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: inherit;
  margin: 0;
  position: relative;
  padding-bottom: 0.4rem;
}

.plan-cycle {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.plan-price::after {
  content: "";
  display: none;
}

.plan-meta {
  margin: 0;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.plan-divider {
  display: block;
  width: 80%;
  max-width: 240px;
  height: 2px;
  margin: 0.75rem auto 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.plan-meta--highlight {
  color: rgba(255, 255, 255, 0.9);
}

.plan-note {
  margin: 0;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
}

.plan-body {
  flex: 1;
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
  background: #fff;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.plan-badge {
  align-self: center;
  margin-top: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(104, 84, 120, 0.18);
  display: grid;
  gap: 0.65rem;
}

.feature {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature.is-included::before {
  content: "\2713";
  background: rgba(255, 129, 112, 0.2);
  color: var(--accent-dark);
}

.feature.not-included::before {
  content: "\2715";
  background: rgba(104, 84, 120, 0.12);
  color: var(--accent-deep);
}

.plan-footnote {
  margin: -0.6rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.plan-featured {
  flex: 1 1 320px;
  max-width: 340px;
  border: 2px solid rgba(255, 129, 112, 0.4);
  background: var(--accent);
  color: #fff;
  transform: translateY(-10px);
}

.plan-featured h3 {
  color: #fff;
}

.plan-featured .plan-header {
  background: var(--accent);
}

.plan-featured .plan-divider {
  background: rgba(255, 255, 255, 0.55);
}

.plan-featured .plan-note {
  color: var(--text);
}

.plan-featured .plan-cycle {
  color: rgba(255, 255, 255, 0.85);
}

.plan-featured .plan-features {
  border-top-color: rgba(255, 129, 112, 0.25);
}

.plan-featured .plan-features .feature {
  color: var(--text);
}

.plan-featured .feature.is-included::before {
  background: rgba(255, 129, 112, 0.18);
  color: var(--accent-dark);
}

.plan-featured .feature.not-included::before {
  background: rgba(104, 84, 120, 0.12);
  color: var(--accent-deep);
}

.scroll-circle {
  position: fixed;
  top: 28vh;
  right: clamp(3.5rem, 10vw, 7rem);
  width: clamp(180px, 26vw, 270px);
  height: clamp(180px, 26vw, 270px);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  z-index: 2;
  --circle-rotation: 0deg;
}

.scroll-circle--visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-circle__svg {
  width: 100%;
  height: 100%;
  transform: rotate(calc(-90deg + var(--circle-rotation)));
}

.scroll-circle__outline {
  stroke: rgba(104, 84, 120, 0.45);
}

.scroll-circle__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
}

.scroll-circle__center img {
  width: clamp(60px, 36%, 90px);
  height: auto;
}

.scroll-circle__text {
  font-family: "Yeseva One", "Manrope", sans-serif;
  font-size: clamp(13.5px, 1.7vw, 18.5px);
  letter-spacing: 0.2em;
  fill: rgba(104, 84, 120, 0.75);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .scroll-circle {
    display: none;
  }
}

.card {
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(222, 216, 211, 0.8);
  background: #fff;
  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 1.2rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 129, 112, 0.18);
  color: var(--accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Studio section */
.studio-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  position: relative;
  z-index: 3;
}

#estudio {
  position: relative;
  z-index: 3;
}

.studio-media {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.studio-photo {
  position: relative;
  border-radius: calc(var(--radius) * 0.9);
  box-shadow: 0 25px 45px -25px rgba(17, 17, 17, 0.35);
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background-size: cover;
  background-position: center;
}

.studio-photo--vertical {
  width: clamp(240px, 32vw, 320px);
  height: clamp(360px, 45vw, 480px);
  background-image: linear-gradient(140deg, rgba(104, 84, 120, 0.25), transparent),
    url("../img/img_2.jpg");
}

.studio-photo--horizontal {
  position: absolute;
  bottom: clamp(40px, 6vw, 60px);
  right: clamp(-20px, -5vw, -10px);
  width: clamp(230px, 28vw, 320px);
  height: clamp(180px, 24vw, 220px);
  background-image: linear-gradient(140deg, rgba(255, 129, 112, 0.22), transparent),
    url("../img/img_3.jpg");
}

.studio-media.is-visible .studio-photo {
  opacity: 1;
  transform: translateY(0);
}

.studio-media.is-visible .studio-photo--horizontal {
  transition-delay: 0.2s;
}

.bullet-list {
  margin: 1.5rem 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
}

.bullet-list li + li {
  margin-top: 0.75rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  display: grid;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-visual button {
  display: block;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.gallery-visual a {
  display: block;
  text-decoration: none;
  width: 100%;
}

.gallery-visual button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.gallery.is-visible .gallery-item:nth-child(2) {
  transition-delay: 0.1s;
}

.gallery.is-visible .gallery-item:nth-child(3) {
  transition-delay: 0.2s;
}

.gallery.is-visible .gallery-item:nth-child(4) {
  transition-delay: 0.3s;
}

.gallery.is-visible .gallery-item:nth-child(5) {
  transition-delay: 0.4s;
}

.gallery.is-visible .gallery-item:nth-child(6) {
  transition-delay: 0.5s;
}

.gallery-image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(255, 129, 112, 0.3), transparent),
    url("https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?auto=format&fit=crop&w=900&q=70")
      center / cover;
  box-shadow: var(--shadow);
}

.gallery-item:nth-child(2) .gallery-image {
  background: linear-gradient(140deg, rgba(104, 84, 120, 0.35), transparent),
    url("https://images.unsplash.com/photo-1510936111840-65e151ad71bb?auto=format&fit=crop&w=900&q=70")
      center / cover;
}

.gallery-item:nth-child(3) .gallery-image {
  background: linear-gradient(140deg, rgba(217, 101, 85, 0.32), transparent),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=900&q=70")
      center / cover;
}

.gallery-item:nth-child(4) .gallery-image {
  background: linear-gradient(140deg, rgba(84, 68, 106, 0.3), transparent),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=70")
      center / cover;
}

.gallery-item:nth-child(5) .gallery-image {
  background: linear-gradient(140deg, rgba(255, 129, 112, 0.28), transparent),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=900&q=70")
      center / cover;
}

.gallery-item:nth-child(6) .gallery-image {
  background: linear-gradient(140deg, rgba(104, 84, 120, 0.28), transparent),
    url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=900&q=70")
      center / cover;
}

.gallery-item--local .gallery-image {
  background: linear-gradient(140deg, rgba(255, 129, 112, 0.3), transparent),
    url("../img/galery_1.jpg") center / cover !important;
}

.gallery-item--local2 .gallery-image {
  background: linear-gradient(140deg, rgba(104, 84, 120, 0.28), transparent),
    url("../img/galery_2.jpg") center / cover !important;
}

.gallery figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 12;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.gallery-modal__dialog {
  position: relative;
  background: #fff;
  width: min(960px, 92vw);
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 40px 90px -40px rgba(17, 17, 17, 0.65);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-deep);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 16px -10px rgba(17, 17, 17, 0.45);
}

.gallery-modal__close:hover {
  background: rgba(255, 255, 255, 1);
}

.gallery-modal__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  height: 100%;
}

.gallery-modal__image {
  background: #000;
  display: grid;
  place-items: center;
}

.gallery-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal__text {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 1rem;
  align-content: center;
  background: #fff;
}

.gallery-modal__text h3 {
  font-family: "Yeseva One", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0;
}

.gallery-modal__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Supplies */
.supplies {
  background: #fff;
}

.supplies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  align-items: stretch;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.supplies-card {
  border: 1px solid rgba(229, 211, 210, 0.8);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: #fff;
  box-shadow: 0 15px 40px -32px rgba(17, 17, 17, 0.35);
  display: grid;
  gap: 0.8rem;
  text-align: left;
}

.supplies-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 129, 112, 0.14);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.supplies-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.supplies-card p {
  margin: 0;
  color: var(--text-muted);
}

.modal-open,
.nav-is-open {
  overflow: hidden;
}

/* Testimonials */
.testimonials {
  background: var(--bg-muted);
}

.testimonials-container {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.testimonials-intro {
  display: grid;
  gap: 1rem;
  text-align: left;
  justify-items: start;
  align-content: center;
}

.testimonials-intro .button {
  justify-self: flex-start;
}

.testimonials-display {
  align-self: stretch;
  background: var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 2.4rem) clamp(1.6rem, 5vw, 2.6rem);
  display: grid;
  gap: clamp(1.4rem, 4vw, 2rem);
  color: #fff;
  position: relative;
  box-shadow: 0 35px 60px -45px rgba(17, 17, 17, 0.45);
}

.testimonials-viewport {
  overflow: hidden;
  position: relative;
  height: clamp(260px, 36vw, 320px);
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 4vw, 2rem);
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-card {
  background: transparent;
  display: grid;
  gap: 1rem;
  padding-right: clamp(3.5rem, 6vw, 4.5rem);
  min-height: clamp(240px, 32vw, 280px);
  height: clamp(240px, 32vw, 280px);
  text-align: left;
}

.testimonial-card + .testimonial-card {
  margin-top: 0;
}

.testimonial-icon {
  font-size: clamp(3rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
}

.testimonial-quote {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-more {
  justify-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-more:hover,
.testimonial-more:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
  outline: none;
}

.testimonial-dots {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 1.8rem);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dots button[aria-selected="true"] {
  background: #fff;
  transform: scale(1.1);
}

.testimonial-dots button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
}

.testimonial-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.testimonial-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
}

.testimonial-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(90%, 520px);
  padding: clamp(1.8rem, 5vw, 2.4rem);
  border-radius: var(--radius);
  box-shadow: 0 35px 80px -50px rgba(17, 17, 17, 0.6);
  display: grid;
  gap: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.testimonial-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(17, 17, 17, 0.6);
  transition: color 0.2s ease;
}

.testimonial-modal__close:hover,
.testimonial-modal__close:focus-visible {
  color: var(--accent-dark);
  outline: none;
}

.testimonial-modal__quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}

.testimonial-modal__quote::before {
  content: "“";
}

.testimonial-modal__quote::after {
  content: "”";
}

.testimonial-modal__name {
  margin: 0;
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 1rem;
  text-align: right;
}

.testimonials-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-list details {
  border: 1px solid rgba(229, 211, 210, 0.8);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: #fff;
  box-shadow: 0 12px 30px -28px rgba(17, 17, 17, 0.4);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.faq-list summary::after {
  content: "▸";
  font-size: 1.2rem;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(255, 129, 112, 0.5);
  box-shadow: 0 16px 45px -32px rgba(17, 17, 17, 0.5);
}

.faq-list details[open] summary::after {
  transform: rotate(90deg);
}

.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  animation: faqFade 0.35s ease;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact */
.contact {
  background: var(--bg);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(229, 211, 210, 0.6);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(222, 216, 211, 0.8);
  padding: 0.75rem 1rem;
  font: inherit;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(192, 111, 61, 0.18);
}

.contact-form button {
  margin-top: 0.5rem;
  justify-self: start;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-feedback {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent-deep);
}

.form-feedback.is-success {
  color: #267360;
}

.form-feedback.is-error {
  color: #b83c4b;
}

/* Footer */
.site-footer {
  padding: 3rem 0 0;
  background: var(--accent-deep);
  color: #f8f6f6;
}

.footer-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer .brand {
  color: inherit;
}

.site-footer .brand-logo {
  height: 48px;
  filter: brightness(0) invert(1);
}

.site-footer .brand + p {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-info p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-info a {
  color: #fefefe;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fefefe;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.footer-socials i {
  font-size: 1rem;
}

.footer-note {
  text-align: center;
  margin: 3rem auto 0;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(84, 68, 106, 0.72);
  padding: 1rem 1.4rem;
  border-radius: 0;
}

.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-fab:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.28);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .header-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .menu-overlay {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    grid-auto-rows: min-content;
    align-content: center;
    justify-items: center;
    gap: clamp(2.2rem, 7vw, 3rem);
    padding: clamp(3.5rem, 10vh, 5.5rem) 1.5rem;
    min-height: 100vh;
    background: transparent;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    overflow-y: auto;
    transition: opacity 0.3s ease;
    transition-delay: 0s;
    z-index: 13;
  }

  .site-header .site-nav a {
    font-size: clamp(1.3rem, 5vw, 2rem);
    color: #fff;
    letter-spacing: 0.12em;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease;
    transition-delay: 0s;
  }

  .site-header .site-nav a::after {
    display: none;
  }

  .site-header.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.12s;
  }

  .site-header.nav-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.nav-open .site-nav a:nth-child(1) {
    transition-delay: 0.22s;
  }

  .site-header.nav-open .site-nav a:nth-child(2) {
    transition-delay: 0.28s;
  }

  .site-header.nav-open .site-nav a:nth-child(3) {
    transition-delay: 0.34s;
  }

  .site-header.nav-open .site-nav a:nth-child(4) {
    transition-delay: 0.4s;
  }

  .cta {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-content .lead {
    max-width: 100%;
  }

  blockquote {
    padding: 1.4rem;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .testimonials-intro {
    text-align: center;
    justify-items: center;
  }

  .testimonials-intro .button {
    justify-self: center;
  }

  .testimonials-display {
    width: 100%;
    background: var(--accent);
  }

  .testimonial-card {
    padding-right: 0;
  }

  .testimonial-dots {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 1rem;
  }

  .testimonial-more {
    justify-self: center;
  }

  .plans {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .plan,
  .plan-featured {
    width: 100%;
    max-width: 100%;
    transform: none;
    overflow: visible;
  }

  .plan-header {
    padding: clamp(1.3rem, 5vw, 1.7rem) clamp(1.2rem, 5vw, 1.8rem)
      clamp(1.4rem, 5vw, 1.7rem);
  }

  .plan-body {
    padding: clamp(1.4rem, 5vw, 1.9rem) clamp(1.2rem, 6vw, 1.8rem)
      clamp(1.6rem, 6vw, 2.1rem);
    gap: clamp(1rem, 4vw, 1.4rem);
  }

  .plan-features {
    padding-top: clamp(0.8rem, 4vw, 1.2rem);
  }

  .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-info p,
  .site-footer .brand + p {
    text-align: center;
  }
}
.global-note {
  margin: clamp(0.5rem, 3vw, 1.2rem) auto clamp(3rem, 6vw, 4rem);
  text-align: center;
  max-width: 720px;
  color: var(--text-muted);
}
.site-nav {
  display: inline-flex;
  gap: 1.5rem;
  justify-self: center;
  align-items: center;
}

.is-hidden {
  display: none !important;
}
