:root {
      --cream: #faf8f5;
      --lavender: #c9b8d8;
      --lavender-light: #e8e0f0;
      --lavender-mid: #b8a5cc;
      --purple-deep: #7c5c99;
      --purple-soft: #a889c0;
      --charcoal: #1c1a1f;
      --text-body: #3d3545;
      --text-muted: #8a7f94;
      --white: #ffffff;
      --gold: #c9a96e;
      --radius: 2px;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text-body);
      overflow-x: hidden;
      font-weight: 300;
    }

    /* TYPOGRAPHY */
    .serif {
      font-family: 'Cormorant Garamond', Georgia, serif;
    }

    h1,
    h2,
    h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      letter-spacing: 0.02em;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: var(--transition);
      background: transparent;
    }

    nav.scrolled {
      background: rgba(250, 248, 245, 0.96);
      backdrop-filter: blur(12px);
      padding: 14px 40px;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }

    .logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--charcoal);
      text-transform: uppercase;
      line-height: 1.3;
    }

    .logo-text span {
      display: block;
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--purple-soft);
      font-weight: 300;
      font-family: 'Jost', sans-serif;
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-body);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 400;
      position: relative;
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--purple-deep);
      transform: scaleX(0);
      transition: transform var(--transition);
      transform-origin: left;
    }

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

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      background: var(--charcoal);
      color: var(--white) !important;
      padding: 10px 24px;
      font-size: 11px !important;
      letter-spacing: 0.2em;
      text-decoration: none;
      transition: background var(--transition), color var(--transition);
      text-transform: uppercase;
    }

    .nav-cta:hover {
      background: var(--purple-deep) !important;
      color: var(--white) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-visual {
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      width: 100%;
      height: 100%;
      background:
        radial-gradient(ellipse at 30% 40%, rgba(168, 137, 192, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 184, 216, 0.25) 0%, transparent 50%),
        linear-gradient(165deg, #e8e0f0 0%, #f0e8f5 30%, #faf8f5 70%, #f5f0f8 100%);
      position: relative;
    }

    /* Decorative botanical SVG */
    .hero-botanical {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.7;
    }

    .hero-botanical svg {
      width: 85%;
      height: 85%;
      animation: floatBotanical 8s ease-in-out infinite;
    }

    @keyframes floatBotanical {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-12px) rotate(1.5deg);
      }
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 60px 60px 70px;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--purple-soft);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.2s;
      opacity: 0;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--purple-soft);
    }

    .star-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--lavender-light);
      padding: 6px 14px;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--purple-deep);
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.1s;
      opacity: 0;
    }

    .hero h1 {
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.08;
      color: var(--charcoal);
      margin-bottom: 28px;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.4s;
      opacity: 0;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--purple-deep);
    }

    .hero-sub {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 380px;
      margin-bottom: 44px;
      font-weight: 300;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.6s;
      opacity: 0;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.8s;
      opacity: 0;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--charcoal);
      color: var(--white);
      padding: 16px 32px;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-family: 'Jost', sans-serif;
      transition: background var(--transition), transform var(--transition);
    }

    .btn-primary:hover {
      background: var(--purple-deep);
      transform: translateY(-2px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
      padding: 16px 32px;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-family: 'Jost', sans-serif;
      transition: all var(--transition);
    }

    .btn-secondary:hover {
      background: var(--charcoal);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 9px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-muted);
      animation: fadeIn 1s ease forwards 1.5s;
      opacity: 0;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: var(--lavender);
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--purple-deep);
      animation: scrollDown 1.8s ease-in-out infinite;
    }

    @keyframes scrollDown {
      0% {
        top: -100%;
      }

      100% {
        top: 100%;
      }
    }

    /* SECTION STYLES */
    section {
      padding: 100px 0;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section-label {
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--purple-soft);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--purple-soft);
    }

    .section-title {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.12;
      color: var(--charcoal);
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 520px;
      font-weight: 300;
    }

    /* BENEFITS */
    .benefits {
      background: var(--white);
    }

    .benefits-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .benefits-header .section-label {
      justify-content: center;
    }

    .benefits-header .section-label::before {
      display: none;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .benefit-card {
      padding: 48px 36px;
      background: var(--cream);
      transition: background var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--lavender);
      transform: scaleX(0);
      transition: transform var(--transition);
      transform-origin: left;
    }

    .benefit-card:hover::before {
      transform: scaleX(1);
    }

    .benefit-card:hover {
      background: var(--lavender-light);
      transform: translateY(-4px);
    }

    .benefit-icon {
      width: 52px;
      height: 52px;
      background: var(--lavender-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 22px;
      transition: background var(--transition);
    }

    .benefit-card:hover .benefit-icon {
      background: var(--lavender);
    }

    .benefit-title {
      font-size: 20px;
      font-family: 'Cormorant Garamond', serif;
      color: var(--charcoal);
      margin-bottom: 12px;
      font-weight: 400;
    }

    .benefit-text {
      font-size: 13px;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }

    /* SCHEDULE */
    .schedule {
      background: var(--charcoal);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .schedule::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(168, 137, 192, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .schedule .section-label {
      color: var(--lavender);
    }

    .schedule .section-label::before {
      background: var(--lavender);
    }

    .schedule .section-title {
      color: var(--white);
    }

    .schedule .section-sub {
      color: rgba(255, 255, 255, 0.55);
    }

    .schedule-notice {
      display: flex;
      gap: 14px;
      background: rgba(201, 184, 216, 0.12);
      border-left: 3px solid var(--lavender);
      padding: 18px 22px;
      margin: 28px 0;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
    }

    .schedule-notice strong {
      color: var(--lavender);
    }

    .individual-highlight {
      background: linear-gradient(135deg, rgba(168, 137, 192, 0.2), rgba(201, 184, 216, 0.1));
      border: 1px solid rgba(201, 184, 216, 0.3);
      padding: 24px 28px;
      margin-bottom: 24px;
    }

    .individual-highlight h3 {
      font-size: 22px;
      color: var(--lavender);
      margin-bottom: 10px;
      font-weight: 300;
    }

    .individual-highlight p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      font-weight: 300;
    }

    /* SCHEDULE TABLE */
    .schedule-table {
      width: 100%;
    }

    .schedule-table h3 {
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--lavender);
      margin-bottom: 20px;
      font-family: 'Jost', sans-serif;
      font-weight: 400;
    }

    .group-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      transition: all var(--transition);
    }

    .group-item:hover {
      padding-left: 8px;
      border-bottom-color: rgba(201, 184, 216, 0.3);
    }

    .group-name {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
    }

    .group-time {
      font-size: 12px;
      color: var(--lavender);
      letter-spacing: 0.1em;
    }

    .group-day {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      min-width: 120px;
      text-align: right;
    }

    .clothing-note {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 24px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.04);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    /* PRICING */
    .pricing {
      background: var(--cream);
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .pricing-header .section-label {
      justify-content: center;
    }

    .pricing-header .section-label::before {
      display: none;
    }

    .pricing-header .section-sub {
      margin: 0 auto;
      text-align: center;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .price-card {
      background: var(--white);
      padding: 48px 36px;
      position: relative;
      transition: transform var(--transition);
    }

    .price-card:hover {
      transform: translateY(-6px);
    }

    .price-card.featured {
      background: var(--charcoal);
      color: var(--white);
      transform: translateY(-12px);
    }

    .price-card.featured:hover {
      transform: translateY(-18px);
    }

    .price-tag {
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--purple-soft);
      margin-bottom: 8px;
      font-family: 'Jost', sans-serif;
    }

    .price-card.featured .price-tag {
      color: var(--lavender);
    }

    .price-name {
      font-size: 28px;
      font-family: 'Cormorant Garamond', serif;
      color: var(--charcoal);
      margin-bottom: 32px;
      font-weight: 300;
      line-height: 1.2;
    }

    .price-card.featured .price-name {
      color: var(--white);
    }

    .price-amount {
      font-size: 54px;
      font-family: 'Cormorant Garamond', serif;
      color: var(--charcoal);
      line-height: 1;
      font-weight: 300;
      margin-bottom: 6px;
    }

    .price-card.featured .price-amount {
      color: var(--lavender);
    }

    .price-period {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      margin-bottom: 32px;
    }

    .price-card.featured .price-period {
      color: rgba(255, 255, 255, 0.5);
    }

    .price-features {
      list-style: none;
      margin-bottom: 40px;
    }

    .price-features li {
      font-size: 13px;
      color: var(--text-muted);
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 300;
      line-height: 1.5;
    }

    .price-card.featured .price-features li {
      color: rgba(255, 255, 255, 0.65);
      border-bottom-color: rgba(255, 255, 255, 0.07);
    }

    .price-features li::before {
      content: '—';
      color: var(--lavender);
      font-size: 10px;
      flex-shrink: 0;
    }

    .price-card.featured .price-features li::before {
      color: var(--lavender);
    }

    .price-btn {
      display: block;
      text-align: center;
      padding: 14px 28px;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-family: 'Jost', sans-serif;
      transition: all var(--transition);
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
    }

    .price-btn:hover {
      background: var(--charcoal);
      color: var(--white);
    }

    .price-card.featured .price-btn {
      background: var(--lavender);
      color: var(--charcoal);
      border-color: var(--lavender);
    }

    .price-card.featured .price-btn:hover {
      background: var(--white);
      border-color: var(--white);
    }

    .featured-badge {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--purple-soft);
      color: var(--white);
      font-size: 9px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 6px 20px;
      font-family: 'Jost', sans-serif;
      white-space: nowrap;
    }

    /* MAP */
    .location {
      background: var(--white);
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 500px;
    }

    .location-info {
      padding: 60px;
      background: var(--charcoal);
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .location-info .section-label {
      color: var(--lavender);
    }

    .location-info .section-label::before {
      background: var(--lavender);
    }

    .location-info .section-title {
      color: var(--white);
      margin-bottom: 32px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      align-items: flex-start;
    }

    .info-icon {
      width: 36px;
      height: 36px;
      background: rgba(201, 184, 216, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .info-label {
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--lavender);
      margin-bottom: 4px;
    }

    .info-value {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 300;
      line-height: 1.6;
    }

    .directions-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--lavender);
      color: var(--charcoal);
      padding: 14px 28px;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-family: 'Jost', sans-serif;
      margin-top: 32px;
      transition: all var(--transition);
      align-self: flex-start;
    }

    .directions-btn:hover {
      background: var(--white);
      transform: translateY(-2px);
    }

    .map-container {
      position: relative;
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      min-height: 500px;
      border: none;
      filter: grayscale(20%);
    }

    /* FAQ */
    .faq {
      background: var(--cream);
    }

    .faq-header {
      margin-bottom: 60px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .faq-item {
      background: var(--white);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 28px 32px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--charcoal);
      font-weight: 400;
      gap: 16px;
      transition: color var(--transition);
    }

    .faq-question:hover {
      color: var(--purple-deep);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1px solid var(--lavender);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--purple-soft);
      transition: all var(--transition);
      flex-shrink: 0;
      font-family: 'Jost', sans-serif;
      font-weight: 300;
    }

    .faq-item.open .faq-icon {
      background: var(--purple-deep);
      border-color: var(--purple-deep);
      color: var(--white);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 0 32px 28px;
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }

    /* FINAL CTA */
    .cta-final {
      background: linear-gradient(135deg, #2d1f3d 0%, #1c1a1f 50%, #1a1424 100%);
      color: var(--white);
      text-align: center;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(168, 137, 192, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final .section-label {
      justify-content: center;
      color: var(--lavender);
    }

    .cta-final .section-label::before {
      display: none;
    }

    .cta-final h2 {
      font-size: clamp(40px, 5vw, 64px);
      color: var(--white);
      margin-bottom: 20px;
    }

    .cta-final p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.55);
      max-width: 480px;
      margin: 0 auto 48px;
      line-height: 1.8;
      font-weight: 300;
    }

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

    .btn-phone {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--white);
      padding: 18px 36px;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-family: 'Jost', sans-serif;
      transition: all var(--transition);
    }

    .btn-phone:hover {
      background: var(--white);
      color: var(--charcoal);
      border-color: var(--white);
    }

    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #25d366;
      border: 1px solid #25d366;
      color: var(--white);
      padding: 18px 36px;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-family: 'Jost', sans-serif;
      transition: all var(--transition);
    }

    .btn-whatsapp:hover {
      background: #1db954;
      border-color: #1db954;
      transform: translateY(-2px);
    }

    /* FOOTER */
    footer {
      background: #111015;
      color: rgba(255, 255, 255, 0.5);
      padding: 70px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-logo span {
      display: block;
      font-size: 10px;
      letter-spacing: 0.3em;
      color: var(--lavender);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      margin-top: 4px;
    }

    .footer-desc {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.4);
      max-width: 260px;
      margin-bottom: 24px;
      font-weight: 300;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      font-size: 13px;
      transition: all var(--transition);
    }

    .social-link:hover {
      border-color: var(--lavender);
      color: var(--lavender);
    }

    .footer-heading {
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 20px;
      font-family: 'Jost', sans-serif;
    }

    .footer-list {
      list-style: none;
    }

    .footer-list li {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      padding: 6px 0;
      font-weight: 300;
      line-height: 1.5;
    }

    .footer-list a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color var(--transition);
    }

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

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.25);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 58px;
      height: 58px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 26px;
      z-index: 200;
      box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
      transition: all var(--transition);
      animation: pulseWA 3s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1) translateY(-4px);
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
      animation: none;
    }

    @keyframes pulseWA {

      0%,
      100% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3);
      }

      50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
      }
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

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

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

    /* ABOUT / PRESENTATION */
    .about {
      background: var(--white);
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
    }
    
    .about-text {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 20px;
      font-weight: 300;
    }
    
    /* GALLERY */
    .studio-gallery {
      background: var(--cream);
    }
    
    .gallery-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .gallery-header .section-label {
      justify-content: center;
    }
    
    .gallery-header .section-label::before {
      display: none;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    
    /* PLACEHOLDERS */
    .image-placeholder {
      background: rgba(201, 184, 216, 0.15);
      border: 1px dashed var(--lavender-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple-deep);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      width: 100%;
      transition: all var(--transition);
    }
    
    .image-placeholder:hover {
      background: rgba(201, 184, 216, 0.25);
    }
    
    .image-placeholder.portrait {
      aspect-ratio: 3/4;
    }
    
    .image-placeholder.landscape {
      aspect-ratio: 4/3;
    }

    /* DIVIDER */
    .divider {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, transparent, var(--lavender), transparent);
      margin: 0 auto 40px;
    }

    /* MOBILE */
    @media (max-width: 900px) {
      nav {
        padding: 16px 24px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-visual {
        height: 55vw;
        min-height: 260px;
        order: -1;
      }

      .hero-content {
        padding: 48px 28px 60px;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .schedule-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2px;
      }

      .price-card.featured {
        transform: none;
      }

      .price-card.featured:hover {
        transform: translateY(-6px);
      }

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

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

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

      .container {
        padding: 0 24px;
      }

      section {
        padding: 70px 0;
      }

      .location-info {
        padding: 40px 28px;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* MINI MAP FOOTER */
    .footer-map {
      width: 100%;
      height: 140px;
      overflow: hidden;
      margin-top: 12px;
      opacity: 0.6;
      transition: opacity var(--transition);
    }

    .footer-map:hover {
      opacity: 0.9;
    }

    .footer-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(60%) invert(80%);
    }
