/* Magical Hands Day Spa — stylesheet
   Extracted from the single-file redesign mockup for maintainability. */

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

    :root {
      --green-deep:   #1E2B1A;
      --green-mid:    #2F4428;
      --gold:         #C9A96E;
      --gold-light:   #E2C99A;
      --cream:        #FAF8F4;
      --white:        #FFFFFF;
      --text-dark:    #1A1A1A;
      --text-body:    #4A4A4A;
      --text-muted:   #7A7A7A;
      --border:       #E8E2DA;
      --green-soft:   #EBF1E8;
      --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
      --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
      --shadow-lg:    0 16px 48px rgba(0,0,0,0.16);
      --radius-sm:    6px;
      --radius-md:    12px;
      --radius-lg:    20px;
      --transition:   0.3s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 16px;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--text-dark);
      line-height: 1.25;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ─── Utility ─── */
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }

    .section-heading {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 540px;
      line-height: 1.75;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--green-deep);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.6);
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    .btn-dark {
      background: var(--green-deep);
      color: var(--white);
    }
    .btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    /* ─── Navigation ─── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 24px;
      transition: var(--transition);
    }

    .nav.scrolled {
      background: rgba(30, 43, 26, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    }

    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--white);
      font-weight: 700;
    }

    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      transition: color var(--transition);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform var(--transition);
    }

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

    .nav-cta { margin-left: 8px; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: var(--transition);
    }

    /* Mobile Nav */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--green-deep);
      padding: 24px;
      z-index: 999;
      flex-direction: column;
      gap: 4px;
      box-shadow: var(--shadow-lg);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      color: rgba(255,255,255,0.9);
      font-size: 16px;
      font-weight: 500;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #1E2B1A 0%, #2F4428 50%, #1a2816 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/GetPaidStock.com-620cb34566e87.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.35;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 680px;
      padding: 120px 24px 80px;
      margin: 0 auto 0 calc(50% - 580px);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 169, 110, 0.15);
      border: 1px solid rgba(201, 169, 110, 0.4);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(40px, 6vw, 68px);
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.1;
    }

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

    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 40px;
      max-width: 520px;
      line-height: 1.75;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: scrollBounce 2s infinite;
    }

    .hero-scroll svg { opacity: 0.5; }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── Trust Bar ─── */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
    }

    .trust-bar-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 32px 48px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-body);
    }

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

    /* ─── About ─── */
    .about {
      padding: 96px 0;
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-images {
      position: relative;
      height: 480px;
    }

    .about-img-main {
      position: absolute;
      top: 0; left: 0;
      width: 76%;
      height: 82%;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .about-img-accent {
      position: absolute;
      bottom: 0; right: 0;
      width: 52%;
      height: 52%;
      object-fit: cover;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      border: 4px solid var(--white);
    }

    .about-badge-pill {
      position: absolute;
      top: 50%;
      right: -20px;
      transform: translateY(-50%);
      background: var(--green-deep);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      text-align: center;
      box-shadow: var(--shadow-md);
      min-width: 110px;
    }

    .about-badge-pill .big { font-size: 32px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--gold); line-height: 1; }
    .about-badge-pill .small { font-size: 11px; letter-spacing: 1px; opacity: 0.8; margin-top: 4px; }

    .about-text .section-heading { margin-bottom: 20px; }

    .about-text p { font-size: 16px; color: var(--text-body); margin-bottom: 16px; }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .stat-card {
      background: var(--green-soft);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      text-align: center;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 6px;
      line-height: 1.4;
    }

    /* ─── Services ─── */
    .services {
      padding: 96px 0;
      background: var(--cream);
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .filter-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-tab {
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--text-muted);
      transition: var(--transition);
    }

    .filter-tab.active,
    .filter-tab:hover {
      background: var(--green-deep);
      border-color: var(--green-deep);
      color: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

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

    .service-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .service-card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .service-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 20px;
    }

    .service-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .service-price {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--green-deep);
    }

    .service-duration {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .service-book {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 14px;
      border-radius: 50px;
      border: 1.5px solid var(--gold);
      display: flex;
      align-items: center;
      gap: 4px;
      transition: all var(--transition);
      text-decoration: none;
    }

    .service-book:hover {
      background: var(--gold);
      color: var(--green-deep);
      gap: 8px;
    }

    /* ─── Team ─── */
    .team {
      padding: 96px 0;
      background: var(--green-deep);
      color: var(--white);
    }

    .team .section-heading { color: var(--white); text-align: center; }
    .team .section-label { text-align: center; display: block; }

    .team-sub {
      text-align: center;
      color: rgba(255,255,255,0.65);
      font-size: 17px;
      max-width: 500px;
      margin: 0 auto 56px;
    }

    .team-grid {
      display: flex;
      gap: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .team-card {
      text-align: center;
      max-width: 280px;
    }

    .team-img-wrap {
      position: relative;
      width: 200px;
      height: 200px;
      margin: 0 auto 20px;
    }

    .team-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--gold);
    }

    .team-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--white);
      margin-bottom: 6px;
    }

    .team-title {
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 1px;
      font-weight: 500;
    }

    .team-bio {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      margin-top: 12px;
      line-height: 1.65;
    }

    /* ─── Testimonials ─── */
    .testimonials {
      padding: 96px 0;
      background: var(--white);
    }

    .testimonials-header { text-align: center; margin-bottom: 56px; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }

    .testimonial-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 28px;
      border: 1px solid var(--border);
      transition: var(--transition);
    }

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

    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .star { color: var(--gold); font-size: 16px; }

    .testimonial-text {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--green-deep);
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      font-size: 14px;
      color: var(--text-dark);
    }

    .author-meta { font-size: 12px; color: var(--text-muted); }

    /* ─── Booking ─── */
    .booking {
      padding: 96px 0;
      background: linear-gradient(135deg, #1E2B1A 0%, #2F4428 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .booking::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(201,169,110,0.05);
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
    }

    .booking-text .section-heading { color: var(--white); margin-bottom: 20px; }
    .booking-text p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 16px; }

    .payment-methods {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .payment-badge {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-sm);
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.5px;
    }

    .booking-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-lg);
    }

    .booking-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 24px;
      color: var(--text-dark);
    }

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

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text-dark);
      background: var(--white);
      transition: border-color var(--transition);
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }

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

    .form-submit {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      background: var(--green-deep);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      margin-top: 8px;
      transition: var(--transition);
    }

    .form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    .form-note {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 12px;
    }

    /* ─── Booking Steps ─── */
    .booking-steps {
      margin-bottom: 64px;
    }

    .steps-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .step {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      text-align: center;
      flex: 1;
      min-width: 180px;
      max-width: 240px;
    }

    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      opacity: 0.5;
      line-height: 1;
      margin-bottom: 10px;
    }

    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
    }

    .step-divider {
      font-size: 20px;
      color: var(--gold);
      opacity: 0.4;
      flex-shrink: 0;
    }

    /* ─── Booking Features List ─── */
    .booking-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 28px;
    }

    .booking-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: rgba(255,255,255,0.8);
    }

    .bf-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(201,169,110,0.2);
      border: 1px solid var(--gold);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ─── Booking Widget Card ─── */
    .simplybook-widget {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: linear-gradient(160deg, var(--cream) 0%, #FFFDF9 100%);
      max-width: 480px;
      margin: 0 auto;
      position: relative;
      border: 1px solid var(--gold-light);
    }

    .simplybook-widget::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 4px;
      background: var(--gold);
      border-radius: 0 0 4px 4px;
    }

    .simplybook-widget p {
      color: var(--text-dark);
      font-size: 16px;
    }

    .simplybook-widget iframe {
      width: 100%;
      height: 620px;
      border: none;
      display: block;
    }

    .setmore-book-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
      color: var(--green-deep) !important;
      border: none !important;
      padding: 16px 40px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 15px !important;
      font-weight: 700 !important;
      letter-spacing: 0.5px;
      border-radius: 50px !important;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(201, 169, 110, 0.45);
      transition: var(--transition);
      animation: floatBookBtn 3s ease-in-out infinite;
    }

    .setmore-book-btn:hover {
      animation-play-state: paused;
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 12px 32px rgba(201, 169, 110, 0.6);
    }

    @keyframes floatBookBtn {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .setmore-book-btn { animation: none; }
    }

    /* ─── Contact ─── */
    .contact {
      padding: 80px 0;
      background: var(--cream);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 56px;
      align-items: start;
    }

    .contact-info .section-heading { font-size: 28px; margin-bottom: 20px; }
    .contact-info p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: var(--green-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg { color: var(--green-deep); }
    .contact-detail-text .label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .contact-detail-text .value { font-size: 15px; color: var(--text-dark); font-weight: 500; margin-top: 2px; }

    .social-links { display: flex; gap: 12px; margin-top: 28px; }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .social-link:hover { background: var(--gold); transform: translateY(-3px); }
    .social-link svg { color: var(--white); }

    /* ─── Footer ─── */
    .footer {
      background: var(--green-deep);
      color: rgba(255,255,255,0.7);
      padding: 56px 0 28px;
    }

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

    .footer-brand { max-width: 320px; }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .footer-logo span { color: var(--gold); }

    .footer-brand p { font-size: 14px; line-height: 1.75; }

    .footer-newsletter { margin-top: 24px; }

    .footer-newsletter-form {
      display: flex;
      gap: 8px;
      margin-top: 10px;
    }

    .footer-newsletter-form input {
      flex: 1;
      padding: 10px 16px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.08);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      outline: none;
    }

    .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

    .footer-newsletter-form button {
      padding: 10px 18px;
      border-radius: 50px;
      background: var(--gold);
      color: var(--green-deep);
      border: none;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .footer-newsletter-form button:hover { background: var(--gold-light); }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      transition: color var(--transition);
    }

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

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

    /* ─── Responsive ─── */
    @media (max-width: 900px) {
      .about-grid,
      .booking-grid,
      .contact-grid { grid-template-columns: 1fr; }

      .about-images { height: 340px; margin-bottom: 20px; }
      .about-badge-pill { right: 8px; }

      .hero-content { margin-left: auto; margin-right: auto; }

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

    @media (max-width: 640px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }

      .hero h1 { font-size: 38px; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas .btn { justify-content: center; }

      .about-stats { grid-template-columns: 1fr 1fr; }

      .services-header { flex-direction: column; align-items: flex-start; }

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

      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* ─── Animations ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .animate-in { animation: fadeInUp 0.6s ease forwards; }
    .animate-delay-1 { animation-delay: 0.15s; opacity: 0; }
    .animate-delay-2 { animation-delay: 0.30s; opacity: 0; }
    .animate-delay-3 { animation-delay: 0.45s; opacity: 0; }
