
    :root {
      --navy: #303f4e;
      --navy-light: #3a4d5e;
      --pink: #f734b4;
      --pink-glow: #f734b444;
      --white: #ffffff;
      --off-white: #f8f8fc;
      --text-muted: #6b7280;
      --border: #e5e7f0;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Special Gothic', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* -- NAV -- */

    /* -- NAV -- */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 3rem;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--pink);
    }

    .nav-logo {
      display: flex; align-items: center;
    }
    .nav-logo span { color: var(--pink); }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--navy);
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--pink); }

    .nav-cta {
      background: var(--pink); color: var(--white) !important;
      padding: 0.5rem 1.2rem; border-radius: 50px;
      transition: transform 0.2s, box-shadow 0.2s !important;
    }
    .nav-cta:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 4px 20px var(--pink-glow) !important;
      color: var(--white) !important;
    }

    /* -- HERO -- */
    #home {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 3rem 4rem;
      background: var(--white);
      position: relative; overflow: hidden;
    }

    #home::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-text { position: relative; z-index: 1; }

    .hero-tag {
      display: inline-block;
      background: var(--pink); color: var(--white);
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 0.35rem 1rem; border-radius: 50px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease both;
    }

    .hero-title {
      font-family: 'Special Gothic Condensed One', sans-serif;
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 900; line-height: 1.05;
      color: var(--navy);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .hero-title em { color: var(--pink); font-style: italic; }
    .hero-title a { color: var(--pink); text-decoration: none; font-style: italic; }
    .hero-title a:hover { opacity: 0.8; }

    /* Future hyperlinks: hot pink + italic */
    a.link { color: var(--pink); font-style: italic; text-decoration: none; }
    a.link:hover { opacity: 0.8; }

    .hero-sub {
      font-size: 1.1rem; line-height: 1.7;
      color: var(--text-muted); max-width: 480px;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      background: var(--pink); color: var(--white);
      padding: 0.85rem 2rem; border-radius: 50px;
      text-decoration: none; font-weight: 700;
      font-size: 0.95rem; letter-spacing: 0.03em;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px var(--pink-glow);
    }

    .btn-secondary {
      background: transparent; color: var(--navy);
      padding: 0.85rem 2rem; border-radius: 50px;
      text-decoration: none; font-weight: 700;
      font-size: 0.95rem;
      border: 2px solid var(--navy);
      transition: all 0.2s;
    }
    .btn-secondary:hover {
      background: var(--navy); color: var(--white);
    }

    .hero-image {
      display: flex; justify-content: center; align-items: center;
      position: relative;
    }

    .hero-placeholder {
      width: 380px; height: 480px;
      background: var(--navy);
      border-radius: 20px 20px 120px 120px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1rem;
      position: relative; overflow: hidden;
      box-shadow: 0 30px 80px rgba(26,31,53,0.2);
    }

    .hero-placeholder img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 20px 20px 120px 120px;
    }

    .hero-placeholder::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    }

    .hero-placeholder-text {
      position: relative; z-index: 1;
      text-align: center; color: rgba(255,255,255,0.5);
      font-size: 0.85rem;
    }

    .logo-placeholder {
      position: relative; z-index: 1;
      width: 120px; height: 120px;
      border: 3px dashed var(--pink);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--pink); font-size: 0.8rem; text-align: center;
      padding: 1rem;
    }

    .hero-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--pink); color: var(--white);
      width: 100px; height: 100px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-align: center; font-size: 0.72rem; font-weight: 700;
      line-height: 1.3; padding: 1rem;
      box-shadow: 0 4px 20px var(--pink-glow);
      animation: spin 20s linear infinite;
    }

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

    /* -- SECTION BASE -- */
    section { padding: 6rem 3rem; }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--pink); margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Special Gothic Condensed One', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900; line-height: 1.1;
      color: var(--navy); margin-bottom: 1.5rem;
      text-transform: uppercase;
    }

    .section-title em { color: var(--pink); font-style: italic; }

    /* -- ABOUT -- */
    #about {
      background: var(--off-white);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    .about-image-wrap { position: relative; }

    .about-img-placeholder {
      width: 100%; aspect-ratio: 3/4;
      background: var(--navy);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4); font-size: 0.85rem;
      box-shadow: 0 20px 60px rgba(26,31,53,0.15);
      overflow: hidden;
    }

    .about-img-placeholder img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 12px;
      display: block;
    }

    .about-accent {
      position: absolute; bottom: -20px; left: -20px;
      width: 120px; height: 120px;
      background: var(--pink); border-radius: 12px;
      z-index: -1;
    }

    .about-content .section-body {
      font-size: 1.05rem; line-height: 1.8;
      color: #444; margin-bottom: 1rem;
    }

    .about-inline-img {
      width: 100%;
      margin: 1.5rem 0;
      border-radius: 16px;
      overflow: hidden;
    }
    .about-inline-placeholder {
      width: 100%; height: 320px;
      background: var(--navy);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.35); font-size: 0.9rem;
      border: 2px dashed rgba(255,255,255,0.15);
    }
    .about-inline-img img {
      width: 100%; height: 320px;
      object-fit: cover;
      object-position: center top;
      border-radius: 16px;
      display: block;
    }

    .about-stats {
      display: flex; gap: 2rem; margin-top: 2rem;
    }

    .stat { text-align: center; }
    .stat-number {
      font-family: 'Special Gothic Condensed One', sans-serif;
      font-size: 2.5rem; font-weight: 900;
      color: var(--pink); display: block;
    }
    .stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

    /* -- SERVICES -- */
    #services { background: var(--white); }

    .services-intro {
      max-width: 700px;
      font-size: 1.05rem; line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 3rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .service-card {
      background: var(--off-white);
      border: 2px solid var(--border);
      border-radius: 16px;
      padding: 1.8rem;
      transition: border-color 0.2s, transform 0.2s;
    }
    .service-card:hover {
      border-color: var(--pink);
      transform: translateY(-3px);
    }

    .service-icon {
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
    }

    .service-title {
      font-family: 'Special Gothic Condensed One', sans-serif;
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .service-body {
      font-size: 0.9rem;
      color: #4a5568;
      line-height: 1.75;
    }

    .service-pricing {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--pink);
      background: rgba(247, 52, 180, 0.08);
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
    }

    /* -- FAQ -- */
    #faq {
      background: #f0f0f4;
      max-width: 100%;
      margin: 0;
      padding: 6rem 3rem;
    }
    #faq .section-tag { color: var(--pink); }
    #faq .section-title { color: var(--navy); }
    #faq > p { color: var(--navy); opacity: 0.7; }

    .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }

    .faq-item {
      background: #ffffff;
      border: 2px solid transparent;
      border-radius: 16px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item.open { border-color: var(--pink); }

    .faq-q {
      width: 100%; background: none; border: none;
      padding: 1.2rem 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; text-align: left;
      font-family: 'Special Gothic', sans-serif;
      font-size: 1rem; font-weight: 700; color: var(--navy);
    }

    .faq-icon {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--pink); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; line-height: 1; flex-shrink: 0;
      transition: transform 0.3s;
    }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 1.5rem;
      color: #2a3a4a; line-height: 1.7; font-size: 0.95rem;
    }

    .faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.4rem; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* -- GALLERY -- */
    #gallery { background: var(--navy); color: var(--white); }
    #gallery .section-title { color: var(--white); }
    #gallery .section-tag { color: var(--pink); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 1rem; margin-top: 3rem;
    }

    .gallery-item {
      background: var(--navy-light);
      border-radius: 12px;
      aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.3); font-size: 0.8rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.3s, border-color 0.3s;
      cursor: pointer; overflow: hidden; position: relative;
    }
    .gallery-item:hover {
      transform: scale(1.02);
      border-color: var(--pink);
    }
    .gallery-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
    .gallery-item:last-child { grid-column: span 2; aspect-ratio: 2/1; }

    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      position: absolute; inset: 0;
    }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(255,45,120,0.7), transparent);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 1rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { color: white; font-weight: 600; font-size: 0.85rem; }

    .gallery-note {
      margin-top: 1.5rem;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem; text-align: center;
      font-style: italic;
    }

    /* -- BLOG -- */
    #blog { background: var(--off-white); }

    .blog-story-dialogue {
      color: var(--pink);
      font-style: italic;
      font-size: 0.95rem;
      line-height: 1.75;
      margin-bottom: 1rem;
      display: block;
    }
    .blog-story-p {
      font-size: 0.95rem;
      color: #3a3a4a;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

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

    .blog-card {
      background: var(--white);
      border-radius: 16px; overflow: hidden;
      border: 2px solid var(--border);
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover {
      transform: translateY(-6px);
      border-color: var(--pink);
      box-shadow: 0 12px 40px rgba(255,45,120,0.1);
    }

    .blog-img {
      height: 200px;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.3); font-size: 0.8rem;
      overflow: hidden;
      position: relative;
    }

    .blog-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .blog-body { padding: 1.5rem; }
    .blog-date { font-size: 0.75rem; color: var(--pink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
    .blog-title { font-family: 'Special Gothic Condensed One', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
    .blog-excerpt { font-size: 0.88rem; color: #4a5568; line-height: 1.6; margin-bottom: 1rem; }
    .blog-read { color: var(--pink); font-weight: 700; font-size: 0.85rem; text-decoration: none; }
    .blog-read:hover { text-decoration: underline; }

    /* -- TESTIMONIALS -- */
    #reviews { background: var(--white); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .review-card {
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 16px;
      padding: 1.8rem;
      position: relative;
      transition: border-color 0.2s, transform 0.2s;
    }
    .review-card:hover {
      border-color: var(--pink);
      transform: translateY(-3px);
    }

    .review-stars {
      color: var(--pink);
      font-size: 1rem;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .review-text {
      font-size: 0.95rem;
      color: #3a3a4a;
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.2rem;
    }

    .review-author {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .review-tag {
      display: inline-block;
      margin-top: 0.4rem;
      font-size: 0.75rem;
      color: var(--pink);
      font-weight: 600;
    }

    /* -- CONTACT -- */
    #contact {
      background: var(--white);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }

    .contact-info .section-body {
      font-size: 1rem; line-height: 1.7;
      color: #4a5568; margin-bottom: 2rem;
    }

    .contact-links { display: flex; flex-direction: column; gap: 1rem; }

    .contact-link {
      display: flex; align-items: center; gap: 1rem;
      padding: 1rem 1.5rem;
      border: 2px solid var(--navy); border-radius: 12px;
      text-decoration: none; color: var(--pink);
      background: var(--navy);
      font-weight: 600; transition: all 0.2s;
    }
    .contact-link:hover {
      border-color: #253240; background: #253240; color: var(--pink);
    }

    .contact-icon {
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.25); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }

    /* FORM */
    .booking-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .form-group label {
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
      color: var(--white);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 0.85rem 1rem;
      border: 2px solid rgba(255,255,255,0.2); border-radius: 10px;
      font-family: 'Special Gothic', sans-serif;
      font-size: 0.95rem; color: var(--navy);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--pink);
      box-shadow: 0 0 0 4px var(--pink-glow);
      background: white;
    }

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

    .form-submit {
      background: var(--pink); color: var(--white);
      border: none; padding: 1rem 2rem;
      border-radius: 50px; font-family: 'Special Gothic', sans-serif;
      font-size: 1rem; font-weight: 700; cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.03em;
    }
    .form-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px var(--pink-glow);
    }

    .form-note {
      font-size: 0.8rem; color: rgba(255,255,255,0.6);
      text-align: center; line-height: 1.5;
    }

    /* -- FOOTER -- */
    footer {
      background: var(--navy); color: rgba(255,255,255,0.6);
      padding: 3rem; text-align: center;
    }

    footer .footer-logo {
      font-family: 'Special Gothic Condensed One', sans-serif;
      font-size: 1.5rem; font-weight: 900;
      color: var(--white); margin-bottom: 1rem;
    }
    footer .footer-logo span { color: var(--pink); }

    .footer-links {
      display: flex; justify-content: center;
      flex-wrap: wrap; gap: 0.75rem 1.5rem;
      list-style: none; margin-bottom: 1.5rem;
      padding: 0 1rem;
    }
    .footer-links a {
      color: rgba(255,255,255,0.5); text-decoration: none;
      font-size: 0.85rem; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--pink); }

    .footer-note { font-size: 0.8rem; line-height: 1.6; }

    /* -- WHATSAPP FLOAT -- */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem;
      background: #25D366; color: white;
      width: 58px; height: 58px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      z-index: 200;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    }

    /* -- AGE GATE -- */
    .age-gate {
      position: fixed; inset: 0;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999; flex-direction: column;
      gap: 2rem; padding: 2rem; text-align: center;
    }

    .age-gate h2 {
      font-family: 'Special Gothic Condensed One', Arial Black, sans-serif;
      font-size: 2rem; color: var(--white); font-weight: 900;
    }
    .age-gate h2 span { color: var(--pink); }
    .age-gate p { color: rgba(255,255,255,0.6); max-width: 400px; line-height: 1.7; }

    .age-gate-btns { display: flex; gap: 1rem; }

    .age-yes {
      background: var(--pink); color: white;
      border: none; padding: 0.85rem 2.5rem;
      border-radius: 50px; font-size: 1rem; font-weight: 700;
      cursor: pointer; transition: transform 0.2s;
    }
    .age-yes:hover { transform: translateY(-2px); }

    .age-no {
      background: transparent; color: rgba(255,255,255,0.5);
      border: 2px solid rgba(255,255,255,0.2);
      padding: 0.85rem 2.5rem; border-radius: 50px;
      font-size: 1rem; font-weight: 700; cursor: pointer;
      transition: all 0.2s;
    }
    .age-no:hover { border-color: rgba(255,255,255,0.5); color: white; }

    /* -- ANIMATIONS -- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* -- MOBILE -- */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
      background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--navy); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--white); text-decoration: none;
      font-family: 'Special Gothic Condensed One', sans-serif;
      font-size: 1.8rem; text-transform: uppercase;
      letter-spacing: 0.1em; transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--pink); }
    .mobile-menu-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: none; border: none; color: var(--white);
      font-size: 2rem; cursor: pointer; line-height: 1;
    }

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

      #home { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
      .hero-image { display: none; }

      #about { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
      .about-image-wrap { display: none; }

      #contact { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }

      .blog-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }

      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child, .gallery-item:last-child { grid-column: span 2; }

      section { padding: 4rem 1.5rem; }
      .form-row { grid-template-columns: 1fr; }

      .about-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }

      .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }

      #faq { padding: 4rem 1.5rem; }
      #services { padding: 4rem 1.5rem; }
      #reviews { padding: 4rem 1.5rem; }

      .faq-list { margin-left: 0; margin-right: 0; }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child, .gallery-item:last-child { grid-column: span 1; aspect-ratio: 1; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
    }
  