/* ==========================================================================
       DESIGN TOKENS & STUDIO PILATES IDENTITY
       Off-white: #F7F3EC | Sage: #A8B5A0 | Deep Green: #3E4A3B
       Terracotta: #C97B5A | Warm Gray: #6B6B66
       Typography: Fraunces (serif) & Inter (sans-serif) system fallbacks
       ========================================================================== */
    :root {
      --accent: #3E4A3B;
      --accent-text: #2A3328;
      --accent-contrast: #F7F3EC;
      --bg: #F7F3EC;
      --surface: #FFFFFF;
      --surface-subtle: #F3EFE7;
      --text: #222820;
      --text-muted: #575A53;
      --border: #E4DDD1;
      --radius: 14px;
      --radius-sm: 8px;
      --radius-lg: 20px;
      
      /* Studio Brand Palette */
      --c-sand: #F7F3EC;
      --c-sand-soft: #F0ECE3;
      --c-sand-muted: #E6DFD2;
      --c-sage: #A8B5A0;
      --c-sage-tint: rgba(168, 181, 160, 0.16);
      --c-sage-border: rgba(168, 181, 160, 0.35);
      --c-deep-green: #3E4A3B;
      --c-deep-green-hover: #2F392C;
      --c-deep-green-tint: rgba(62, 74, 59, 0.08);
      --c-terracotta: #C97B5A;
      --c-terracotta-dark: #9A5233;
      --c-terracotta-tint: rgba(201, 123, 90, 0.14);
      --c-warm-gray: #5F615A;

      /* Typography Stacks */
      --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      
      --header-height: 74px;
      --shadow-subtle: 0 4px 20px rgba(62, 74, 59, 0.05);
      --shadow-card: 0 10px 30px rgba(62, 74, 59, 0.07);
      --shadow-hover: 0 16px 36px rgba(62, 74, 59, 0.12);
    }

    /* Reset & Base adjustments */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-height) + 16px);
      background-color: var(--c-sand);
      color: var(--text);
    }

    body {
      margin: 0;
      padding: 0;
      font-family: var(--font-body);
      background-color: var(--c-sand);
      color: var(--text);
      line-height: 1.6;
      font-size: 1rem;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .font-serif {
      font-family: var(--font-display);
      font-weight: 500;
      letter-spacing: -0.015em;
      color: var(--c-deep-green);
      line-height: 1.2;
    }

    p {
      margin-top: 0;
      color: var(--text-muted);
    }

    a {
      color: var(--c-deep-green);
      text-decoration: none;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--c-terracotta);
      outline-offset: 3px;
    }

    /* Skip link accessibility */
    .skip-link {
      position: absolute;
      top: -60px;
      left: 16px;
      background: var(--c-deep-green);
      color: var(--c-sand);
      padding: 10px 18px;
      z-index: 9999;
      border-radius: var(--radius-sm);
      font-weight: 500;
      transition: top 0.2s;
    }
    .skip-link:focus {
      top: 16px;
    }

    /* Layout Containers */
    .studio-container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    .studio-section {
      padding: 5rem 0;
      position: relative;
    }

    @media (max-width: 768px) {
      .studio-section {
        padding: 3.5rem 0;
      }
    }

    /* Section Headers */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8125rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
      color: var(--c-terracotta-dark);
      margin-bottom: 0.75rem;
    }

    .section-eyebrow::before {
      content: "";
      display: inline-block;
      width: 14px;
      height: 2px;
      background: var(--c-terracotta);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(1.85rem, 3.2vw, 2.65rem);
      margin-bottom: 1rem;
    }

    .section-desc {
      font-size: 1.075rem;
      max-width: 620px;
      margin-bottom: 2.5rem;
      color: var(--c-warm-gray);
    }

    .section-header-center {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ==========================================================================
       HEADER & NAVIGATION
       ========================================================================== */
    .site-header {
      position: sticky;
      top: 0;
      width: 100%;
      height: var(--header-height);
      background-color: rgba(247, 243, 236, 0.94);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(228, 221, 209, 0.7);
      transition: box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .site-header.is-scrolled {
      box-shadow: 0 6px 20px rgba(62, 74, 59, 0.06);
      background-color: rgba(247, 243, 236, 0.98);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--c-deep-green);
    }

    .brand-logo span.studio-name {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: 0.02em;
    }

    .brand-icon-circle {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--c-deep-green);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--c-sand);
      flex-shrink: 0;
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 1.85rem;
    }

    .nav-link {
      font-size: 0.925rem;
      font-weight: 500;
      color: var(--c-warm-gray);
      position: relative;
      padding: 4px 0;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--c-deep-green);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--c-terracotta);
      transition: width 0.25s ease;
      border-radius: 2px;
    }

    .nav-link:hover::after, .nav-link.active::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Buttons */
    .btn-studio {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 0.925rem;
      font-weight: 500;
      padding: 0.72rem 1.4rem;
      border-radius: 40px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      text-align: center;
      white-space: nowrap;
    }

    .btn-primary-studio {
      background-color: var(--c-deep-green);
      color: var(--c-sand);
    }

    .btn-primary-studio:hover {
      background-color: var(--c-deep-green-hover);
      color: #FFFFFF;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(62, 74, 59, 0.18);
    }

    .btn-secondary-studio {
      background-color: transparent;
      border-color: var(--c-deep-green);
      color: var(--c-deep-green);
    }

    .btn-secondary-studio:hover {
      background-color: var(--c-deep-green-tint);
      transform: translateY(-1px);
    }

    .btn-terracotta-studio {
      background-color: var(--c-terracotta);
      color: #FFFFFF;
    }

    .btn-terracotta-studio:hover {
      background-color: var(--c-terracotta-dark);
      color: #FFFFFF;
      box-shadow: 0 6px 16px rgba(201, 123, 90, 0.25);
    }

    /* Hamburger Button */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      padding: 8px;
      cursor: pointer;
      color: var(--c-deep-green);
      border-radius: var(--radius-sm);
    }

    @media (max-width: 920px) {
      .nav-desktop {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
    }

    /* Mobile Drawer */
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(34, 40, 32, 0.45);
      backdrop-filter: blur(4px);
      z-index: 1100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -320px;
      width: 290px;
      height: 100vh;
      background-color: var(--c-sand);
      box-shadow: -6px 0 24px rgba(0,0,0,0.12);
      z-index: 1200;
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      transition: right 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .mobile-drawer.is-open {
      right: 0;
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .drawer-link {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--c-deep-green);
      padding: 6px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-footer {
      margin-top: auto;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    /* ==========================================================================
       HERO SECTION
       ========================================================================== */
    .hero-section {
      padding-top: 3.5rem;
      padding-bottom: 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 3.5rem;
    }

    .hero-pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: var(--c-sage-tint);
      border: 1px solid var(--c-sage-border);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.825rem;
      font-weight: 500;
      color: var(--c-deep-green);
      margin-bottom: 1.5rem;
    }

    .hero-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--c-terracotta);
    }

    .hero-title {
      font-size: clamp(2.35rem, 4.4vw, 3.75rem);
      line-height: 1.12;
      margin-bottom: 1.35rem;
      color: var(--c-deep-green);
    }

    .hero-title em {
      font-style: italic;
      color: var(--c-terracotta-dark);
      font-weight: 400;
    }

    .hero-lead {
      font-size: 1.15rem;
      line-height: 1.65;
      color: var(--c-warm-gray);
      margin-bottom: 2rem;
      max-width: 530px;
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      margin-bottom: 2.5rem;
    }

    .hero-trust-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-trust-item svg {
      color: var(--c-sage);
      flex-shrink: 0;
    }

    .hero-media-wrapper {
      position: relative;
    }

    .hero-image-frame {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      background-color: var(--c-sand-soft);
      border: 1px solid rgba(228, 221, 209, 0.8);
      aspect-ratio: 4 / 3;
    }

    .hero-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .hero-image-frame:hover img {
      transform: scale(1.025);
    }

    /* Floating badge on hero image */
    .hero-floating-card {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 14px 18px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-hover);
      border: 1px solid rgba(228, 221, 209, 0.8);
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 260px;
    }

    .hero-floating-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--c-sage-tint);
      color: var(--c-deep-green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-floating-text strong {
      display: block;
      font-size: 0.875rem;
      color: var(--c-deep-green);
      line-height: 1.25;
    }

    .hero-floating-text span {
      font-size: 0.775rem;
      color: var(--text-muted);
    }

    @media (max-width: 960px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .hero-media-wrapper {
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
      }
      .hero-floating-card {
        bottom: 12px;
        left: 12px;
      }
    }

    /* ==========================================================================
       ABOUT & PHILOSOPHY
       ========================================================================== */
    .about-section {
      background-color: var(--c-sand-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .about-intro-box {
      max-width: 820px;
      margin: 0 auto 3.5rem auto;
      text-align: center;
    }

    .about-quote {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 1.7rem);
      line-height: 1.45;
      color: var(--c-deep-green);
      margin-bottom: 1.25rem;
      font-style: italic;
    }

    .about-desc {
      font-size: 1.05rem;
      color: var(--c-warm-gray);
      line-height: 1.75;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }

    .pillar-card {
      background-color: #FFFFFF;
      padding: 2.25rem 1.85rem;
      border-radius: var(--radius);
      border: 1px solid rgba(228, 221, 209, 0.7);
      box-shadow: var(--shadow-subtle);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .pillar-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--c-sand);
      border: 1px solid var(--c-sand-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--c-deep-green);
      margin-bottom: 1.35rem;
      flex-shrink: 0;
    }

    .pillar-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .pillar-card p {
      font-size: 0.9375rem;
      line-height: 1.6;
      margin-bottom: 0;
      color: var(--text-muted);
    }

    @media (max-width: 860px) {
      .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
    }

    /* Stats Banner */
    .studio-stats-strip {
      margin-top: 3.5rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background-color: #FFFFFF;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 1.75rem 1rem;
      box-shadow: var(--shadow-subtle);
    }

    .stat-item {
      text-align: center;
      padding: 0.5rem 1rem;
      border-right: 1px solid var(--border);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-value {
      font-family: var(--font-display);
      font-size: 2.1rem;
      font-weight: 600;
      color: var(--c-deep-green);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.8125rem;
      color: var(--c-warm-gray);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 500;
    }

    @media (max-width: 700px) {
      .studio-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1.5rem;
      }
      .stat-item:nth-child(2) {
        border-right: none;
      }
    }

    /* ==========================================================================
       MODALIDADES (PILATES DISCIPLINES)
       ========================================================================== */
    .modalities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .modality-card {
      background-color: #FFFFFF;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow-subtle);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .modality-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .modality-card-top {
      padding: 2rem 2rem 1.25rem 2rem;
      position: relative;
    }

    .modality-tag-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .modality-tag {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 20px;
      background: var(--c-sage-tint);
      color: var(--c-deep-green);
      border: 1px solid var(--c-sage-border);
    }

    .modality-tag.featured {
      background: var(--c-terracotta-tint);
      color: var(--c-terracotta-dark);
      border-color: rgba(201, 123, 90, 0.35);
    }

    .modality-duration {
      font-size: 0.8125rem;
      color: var(--c-warm-gray);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .modality-title {
      font-size: 1.45rem;
      margin-bottom: 0.75rem;
    }

    .modality-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .modality-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .modality-features li {
      font-size: 0.875rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .modality-features li svg {
      color: var(--c-sage);
      flex-shrink: 0;
    }

    .modality-card-footer {
      margin-top: auto;
      padding: 1.25rem 2rem;
      background-color: var(--c-sand-soft);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .modality-intensity {
      font-size: 0.8125rem;
      color: var(--c-warm-gray);
    }

    .modality-intensity strong {
      color: var(--c-deep-green);
    }

    .btn-card-action {
      background: none;
      border: none;
      padding: 0;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--c-terracotta-dark);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
    }

    .btn-card-action:hover {
      gap: 10px;
      color: var(--c-deep-green);
    }

    @media (max-width: 860px) {
      .modalities-grid {
        grid-template-columns: 1fr;
      }
      .modality-card-top {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
      }
      .modality-card-footer {
        padding: 1rem 1.5rem;
      }
    }

    /* ==========================================================================
       BENEFITS SECTION
       ========================================================================== */
    .benefits-section {
      background-color: #FFFFFF;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .benefit-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .benefit-icon-wrapper {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background-color: var(--c-sage-tint);
      color: var(--c-deep-green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      border: 1px solid var(--c-sage-border);
    }

    .benefit-content h3 {
      font-size: 1.15rem;
      margin-bottom: 0.45rem;
    }

    .benefit-content p {
      font-size: 0.925rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 0;
    }

    @media (max-width: 860px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
      }
    }

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

    /* ==========================================================================
       TESTIMONIALS (DEPOIMENTOS)
       ========================================================================== */
    .testimonial-card-main {
      background-color: #FFFFFF;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 3rem;
      box-shadow: var(--shadow-card);
      max-width: 840px;
      margin: 0 auto;
      position: relative;
    }

    .quote-icon-decor {
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      color: var(--c-sand-soft);
      width: 68px;
      height: 68px;
      pointer-events: none;
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      color: var(--c-terracotta);
      margin-bottom: 1.25rem;
    }

    .testimonial-text {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2vw, 1.55rem);
      line-height: 1.5;
      color: var(--c-deep-green);
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-author-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-avatar {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--c-sand-soft);
    }

    .testimonial-author-info strong {
      display: block;
      font-size: 1.05rem;
      color: var(--c-deep-green);
      line-height: 1.25;
    }

    .testimonial-author-info span {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .testimonial-card-main {
        padding: 2rem 1.5rem;
      }
      .quote-icon-decor {
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
      }
    }

    /* ==========================================================================
       CONTACT & BOOKING SECTION
       ========================================================================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3rem;
      align-items: flex-start;
    }

    .contact-form-card {
      background-color: #FFFFFF;
      padding: 2.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
    }

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

    .form-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--c-deep-green);
      margin-bottom: 6px;
    }

    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 0.75rem 0.95rem;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      background-color: var(--c-sand);
      color: var(--text);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
      background-color: #FFFFFF;
      border-color: var(--c-deep-green);
      outline: none;
      box-shadow: 0 0 0 3px var(--c-deep-green-tint);
    }

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

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    @media (max-width: 600px) {
      .form-grid-2 {
        grid-template-columns: 1fr;
      }
      .contact-form-card {
        padding: 1.75rem 1.25rem;
      }
    }

    /* Form Feedback Alert */
    .form-success-banner {
      display: none;
      background-color: var(--c-sage-tint);
      border: 1px solid var(--c-sage);
      color: var(--c-deep-green);
      padding: 1.25rem;
      border-radius: var(--radius-sm);
      margin-bottom: 1.5rem;
      font-size: 0.9375rem;
      line-height: 1.5;
    }

    .form-success-banner.is-active {
      display: block;
      animation: fadeIn 0.4s ease;
    }

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

    /* Contact Details Sidebar */
    .contact-info-panel {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .info-card {
      background-color: #FFFFFF;
      padding: 1.75rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-subtle);
    }

    .info-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1rem;
    }

    .info-icon-badge {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--c-sand);
      color: var(--c-deep-green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .info-card-header h3 {
      font-size: 1.125rem;
      margin: 0;
    }

    .info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-size: 0.9375rem;
      color: var(--text-muted);
    }

    .info-list li strong {
      color: var(--c-deep-green);
    }

    .info-list li a {
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .info-list li a:hover {
      color: var(--c-terracotta-dark);
    }

    .editable-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--c-terracotta-dark);
      background: var(--c-terracotta-tint);
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
      vertical-align: middle;
    }

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

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .site-footer {
      background-color: var(--c-deep-green);
      color: var(--c-sand);
      padding: 4.5rem 0 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 3rem;
      margin-bottom: 3.5rem;
    }

    .footer-brand .brand-logo {
      color: #FFFFFF;
      margin-bottom: 1rem;
    }

    .footer-brand .brand-icon-circle {
      background-color: var(--c-terracotta);
      color: #FFFFFF;
    }

    .footer-about {
      font-size: 0.9375rem;
      color: #D3D8D0;
      line-height: 1.6;
      max-width: 320px;
      margin-bottom: 1.5rem;
    }

    .footer-heading {
      font-family: var(--font-body);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      color: var(--c-sage);
      margin-bottom: 1.25rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a {
      color: #E2E6DF;
      font-size: 0.9375rem;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--c-terracotta);
    }

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

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .social-btn:hover {
      background: var(--c-terracotta);
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.85rem;
      color: #B5BCB2;
    }

    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 540px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ==========================================================================
       WHATSAPP FLOATING BUTTON
       ========================================================================== */
    .whatsapp-float-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #25D366;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
      z-index: 990;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
    }

    .whatsapp-float-btn:hover {
      transform: scale(1.08) translateY(-3px);
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
      color: #FFFFFF;
    }

    .whatsapp-tooltip {
      position: absolute;
      right: 70px;
      background: var(--c-deep-green);
      color: #FFFFFF;
      font-size: 0.8125rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 6px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transform: translateX(10px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      box-shadow: var(--shadow-subtle);
    }

    .whatsapp-float-btn:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    @media (max-width: 600px) {
      .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
      }
      .whatsapp-tooltip {
        display: none;
      }
    }
