:root {
    --black: #1b1b1b;
    --yellow: #ffff00;
    --grey: #6e6e6e;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --gray-text: #555;
    --radius-btn: 50px;
    --radius-card: 16px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-btn: 0 4px 16px rgba(0,0,0,0.15);
    --transition: all 0.28s cubic-bezier(.4,0,.2,1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(27,27,27,0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 70px;
    transition: var(--transition);
  }

  .nav-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    text-decoration: none;
  }

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

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

  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
  }

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

  .nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: var(--radius-btn) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-btn);
  }

  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,0,0.3) !important; }

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

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

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    padding-top: 70px;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 80% 50%, rgba(255,255,0,0.06) 0%, transparent 60%),
      radial-gradient(circle at 20% 80%, rgba(255,255,0,0.03) 0%, transparent 40%);
  }

  .hero-stripe {
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,0,0.04) 0%, rgba(255,255,0,0.01) 100%);
    border-left: 1px solid rgba(255,255,0,0.08);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,0,0.1);
    border: 1px solid rgba(255,255,0,0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  .hero-h1 .accent { color: var(--yellow); }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 3rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }

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

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: var(--radius-btn);
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,255,0,0.25);
    transition: var(--transition);
    letter-spacing: 0.3px;
  }

  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,0,0.35); }
  .btn-primary:active { transform: translateY(0); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-btn);
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }

  .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.6s 0.4s ease both;
  }

  .hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    display: block;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-top: 4px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SECTIONS COMMON ─── */
  section { padding: 100px 5%; }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    background: var(--yellow);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
  }

  .section-label.light {
    background: rgba(255,255,0,0.15);
    color: var(--yellow);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }

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

  .section-sub {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.8;
  }

  .section-sub.white { color: rgba(255,255,255,0.6); }

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

  /* ─── ABOUT ─── */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
  }

  .about-img-wrap {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--black);
  }

  .about-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition);
  }

  .about-img-wrap:hover img { transform: scale(1.03); opacity: 0.95; }

  .about-badge-img {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--yellow);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--black);
    line-height: 1.3;
    box-shadow: var(--shadow-card);
  }

  .about-text-content { display: flex; flex-direction: column; gap: 1.5rem; }

  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
  }

  .about-feature:hover { background: var(--gray-light); }

  .about-feature-icon {
    width: 44px; height: 44px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
  }

  .about-feature-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
  .about-feature-desc { font-size: 0.88rem; color: var(--gray-text); font-weight: 300; }

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

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

  .service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: var(--transition);
  }

  .service-card:hover {
    background: rgba(255,255,0,0.05);
    border-color: rgba(255,255,0,0.2);
    transform: translateY(-4px);
  }

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

  .service-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,0,0.1);
    border: 1px solid rgba(255,255,0,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }

  .service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
  }

  .service-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.8rem;
  }

  .service-features { list-style: none; margin-bottom: 2rem; }

  .service-features li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
  }

  .service-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
  }

  .btn-service:hover { gap: 10px; }

  /* ─── WHY US ─── */
  #why { background: var(--gray-light); }

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

  .why-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
  }

  .why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

  .why-icon-wrap {
    width: 64px; height: 64px;
    background: var(--black);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
  }

  .why-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--yellow);
    background: var(--black);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    line-height: 1.1;
  }

  .why-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
  }

  .why-desc {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 300;
    line-height: 1.7;
  }

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

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

  .review-card {
    background: var(--gray-light);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
  }

  .review-card:hover { background: var(--black); }
  .review-card:hover .review-text { color: rgba(255,255,255,0.75); }
  .review-card:hover .review-name { color: var(--white); }
  .review-card:hover .review-role { color: rgba(255,255,255,0.5); }

  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    transition: var(--transition);
  }

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

  .review-avatar {
    width: 40px; height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--black);
    flex-shrink: 0;
  }

  .review-name { font-weight: 700; font-size: 0.9rem; transition: var(--transition); }
  .review-role { font-size: 0.78rem; color: var(--gray-text); font-weight: 300; transition: var(--transition); }

  /* ─── FAQ ─── */
  #faq { background: var(--black); }

  .faq-list {
    max-width: 760px;
    margin: 4rem auto 0;
  }

  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
  }

  .faq-q:hover { color: var(--yellow); }

  .faq-arrow {
    width: 28px; height: 28px;
    background: rgba(255,255,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--yellow);
  }

  .faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--yellow); color: var(--black); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.9;
  }

  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

  /* ─── GALLERY ─── */
  #gallery { background: var(--gray-light); }

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

  .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--black);
    position: relative;
    cursor: pointer;
  }

  .gallery-item:first-child {
    grid-row: span 2;
  }

  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
  }

  .gallery-item:hover img { transform: scale(1.06); opacity: 1; }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,27,27,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 2rem;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  /* ─── CONTACT ─── */
  #contact { background: var(--white); }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
  }

  .contact-info { display: flex; flex-direction: column; gap: 2rem; }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact-info-icon {
    width: 48px; height: 48px;
    background: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
    margin-bottom: 0.3rem;
  }

  .contact-info-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
  }

  .contact-info-value a { color: inherit; text-decoration: none; }
  .contact-info-value a:hover { color: var(--grey); text-decoration: underline; }

  .contact-quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  .quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-btn);
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    border: 1.5px solid var(--black);
    color: var(--black);
    background: transparent;
    transition: var(--transition);
  }

  .quick-btn:hover { background: var(--black); color: var(--yellow); }

  .quick-btn.wa { border-color: #25d366; color: #25d366; }
  .quick-btn.wa:hover { background: #25d366; color: white; }

  .quick-btn.phone { border-color: var(--black); }

  .contact-form {
    background: var(--black);
    border-radius: var(--radius-card);
    padding: 2.5rem;
  }

  .form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
  }

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

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

  .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--white);
    transition: var(--transition);
    appearance: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255,255,0,0.04);
  }

  .form-group select option { background: #2a2a2a; color: white; }

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

  .form-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: var(--radius-btn);
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,255,0,0.2);
    margin-top: 0.5rem;
  }

  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,0,0.3); }

  /* ─── MAP ─── */
  .map-wrap {
    height: 360px;
    background: var(--gray-light);
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-top: 4rem;
    border: 1px solid var(--gray-mid);
  }

  .map-wrap iframe { width: 100%; height: 100%; border: none; }

  /* ─── FLOATING BUTTONS ─── */
  .float-btns {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 999;
  }

  .float-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }

  .float-btn:hover { transform: scale(1.1); }

  .float-btn.phone-btn { background: var(--yellow); color: var(--black); }
  .float-btn.wa-btn { background: #25d366; color: white; }

  /* ─── FOOTER ─── */
  footer {
    background: #111;
    padding: 4rem 5% 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
  }

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

  .footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.8;
    max-width: 280px;
  }

  .footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin-bottom: 1.2rem;
  }

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

  .footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition);
  }

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

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
  }

  .footer-seo-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    margin-top: 1.5rem;
    line-height: 1.6;
  }

  /* ─── TOAST ─── */
  .toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2000;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-btn);
    white-space: nowrap;
  }

  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: span 2; }
    .hero-stats { gap: 1.5rem; }
  }

  @media (max-width: 640px) {
    section { padding: 70px 5%; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: var(--black);
      padding: 2rem 5%;
      gap: 1.5rem;
      border-top: 1px solid rgba(255,255,0,0.1);
    }
    .hamburger { display: flex; }
    .hero-h1 { font-size: 2.4rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-ctas { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 1.2rem; padding-top: 2rem; margin-top: 2.5rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .float-btns { bottom: 1.2rem; right: 1.2rem; }
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

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