
  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --dark: #0D0D0D;
    --dark2: #141414;
    --dark3: #1C1C1C;
    --mid: #2A2A2A;
    --text: #E8E4DC;
    --text-muted: #9A9080;
    --accent: #D4601A;
    --white: #FAF8F3;
  }

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

  section, div, img {
    max-width: 100%;
  }

  html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--text);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ── GLOBAL ANIMATED CANVAS ── */
  #bgCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* make all sections sit above canvas */
  nav, section, .stats-bar, footer, .whatsapp-float {
    position: relative;
    z-index: 2;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0) 100%);
    transition: background 0.4s;
  }
  nav.scrolled {
    background: rgba(13,13,13,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  /* ── ANIMATED LOGO ── */
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    cursor: default;
  }
  .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    gap: 0px;
  }
  .logo-main .char {
    display: inline-block;
    color: var(--gold);
    animation: floatChar 3s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(201,168,76,0.4);
  }
  .logo-main .char:nth-child(odd)  { animation-delay: calc(var(--i) * 0.08s); }
  .logo-main .char:nth-child(even) { animation-delay: calc(var(--i) * 0.08s + 0.15s); }
  @keyframes floatChar {
    0%,100% { transform: translateY(0px); text-shadow: 0 0 10px rgba(201,168,76,0.3); }
    50%      { transform: translateY(-5px); text-shadow: 0 8px 20px rgba(201,168,76,0.7); }
  }
  .logo:hover .char {
    animation: shimmerChar 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.04s) !important;
  }
  @keyframes shimmerChar {
    0%   { transform: translateY(0) scale(1); color: var(--gold); }
    40%  { transform: translateY(-8px) scale(1.15); color: var(--gold-light); filter: brightness(1.4); }
    100% { transform: translateY(0) scale(1); color: var(--gold); }
  }
  .logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: fadeSlide 1.5s ease forwards;
  }
  @keyframes fadeSlide {
    from { opacity: 0; letter-spacing: 8px; }
    to   { opacity: 1; letter-spacing: 4px; }
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 8px 20px;
    transition: all 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--dark) !important;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }
  .hamburger span {
    width: 26px; height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    display: block;
  }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0.85) 100%),
      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 900px;
    animation: heroFade 1.2s ease forwards;
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-badge::before {
    content: '';
    width: 50px; height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 7vw, 88px);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 28px;
    color: var(--white);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(232,228,220,0.75);
    max-width: 560px;
    margin-bottom: 44px;
    font-weight: 300;
  }
  .hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 38px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,168,76,0.3);
  }
  .btn-secondary {
    border: 1px solid rgba(232,228,220,0.35);
    color: var(--text);
    padding: 16px 38px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }
  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .hero-scroll svg { color: var(--gold); }

  /* ── HERO FLOATING BRAND ── */
  .hero-brand-float {
    position: absolute;
    bottom: 80px;
    right: 4%;
    display: flex;
    align-items: baseline;
    gap: 12px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
  }
  .hbf-word {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    display: inline-flex;
    gap: 0;
  }
  .hbf-word .hc {
    display: inline-block;
    animation: hbfFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--j) * 0.12s);
  }
  @keyframes hbfFloat {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    30%     { transform: translateY(-18px) rotate(-1deg); }
    60%     { transform: translateY(-8px) rotate(0.5deg); }
  }
  .hbf-dot {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--gold);
    animation: hbfFloat 4s ease-in-out infinite 0.5s;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--gold);
    padding: 0 5%;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    overflow: visible;
  }
  /* shimmer sweep on load */
  .stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
  }
  .stats-bar::after {
    content: '';
    position: absolute;
    top: 0; left: -60%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    animation: statsSweep 2.4s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
    pointer-events: none;
    z-index: 4;
  }
  @keyframes statsSweep {
    0%   { left: -60%; opacity: 1; }
    100% { left: 150%; opacity: 1; }
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px 36px;
    flex: 1;
    min-width: 140px;
    position: relative;
    cursor: default;
    /* entrance starts hidden */
    opacity: 0;
    transform: translateY(24px);
    /* hover transition separate from entrance */
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
  }

  /* Entrance animation — only moves Y and fades in */
  .stat-item.stat-visible {
    animation: statIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes statIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* After entrance completes, allow hover lift via a wrapper trick */
  .stat-item.stat-visible:hover {
    background: rgba(0,0,0,0.09);
    box-shadow: 0 -4px 0 rgba(0,0,0,0.12) inset;
  }

  /* Inner wrapper handles the lift + number scale — no conflict with entrance */
  .stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .stat-item.stat-visible:hover .stat-inner {
    transform: translateY(-4px);
  }

  /* Bottom accent line — on the inner, so overflow:visible works */
  .stat-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: rgba(13,13,13,0.35);
    border-radius: 2px 2px 0 0;
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .stat-item.stat-visible:hover .stat-inner::after {
    width: 55%;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -1px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .stat-item.stat-visible:hover .stat-num {
    transform: scale(1.1);
  }

  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(13,13,13,0.58);
    font-weight: 700;
    transition: color 0.3s, letter-spacing 0.3s;
  }
  .stat-item.stat-visible:hover .stat-label {
    color: rgba(13,13,13,0.85);
    letter-spacing: 4.5px;
  }

  .stat-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(13,13,13,0.15);
    margin: 14px 0;
    flex-shrink: 0;
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 5%; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-label::before {
    content: '';
    width: 35px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold);
  }
  .section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 580px;
    font-weight: 300;
  }

  /* ── ABOUT ── */
  .about {
    background: rgba(20,20,20,0.88);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    position: relative;
  }
  .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }
  .about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold);
    z-index: 0;
  }
  .about-image img {
    position: relative;
    z-index: 1;
  }
  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    padding: 24px 28px;
    z-index: 2;
  }
  .about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
  }
  .about-badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13,13,13,0.7);
  }
  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .about-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
  }
  .about-feature-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .about-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
  }

  /* ── SERVICES ── */
  .services {
    background: rgba(13,13,13,0.85);
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(201,168,76,0.08);
  }
  .service-card {
    background: var(--dark2);
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--gold);
    transition: width 0.4s;
  }
  .service-card:hover::before { width: 100%; }
  .service-card:hover {
    background: var(--dark3);
    transform: translateY(-4px);
  }
  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(201,168,76,0.07);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
  }
  .service-icon {
    font-size: 36px;
    margin-bottom: 22px;
    display: block;
  }
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
  }
  .service-list {
    margin-top: 18px;
    list-style: none;
  }
  .service-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-list li::before {
    content: '—';
    color: var(--gold);
    font-size: 11px;
  }

  /* ── GALLERY ── */
  .gallery { background: rgba(20,20,20,0.88); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 10px;
    margin-top: 55px;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 4; }
  .gallery-item:nth-child(5) { grid-column: span 3; }
  .gallery-item:nth-child(6) { grid-column: span 5; }
  .gallery-item:nth-child(7) { grid-column: span 4; }
  .gallery-item:nth-child(8) { grid-column: span 3; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-overlay {
    position: absolute;
    bottom: 16px; left: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
  }
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  .gallery-overlay span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── WHY US ── */
  .why-us {
    background: rgba(13,13,13,0.88);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .why-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .why-item:last-child { border-bottom: none; }
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(201,168,76,0.15);
    line-height: 0.9;
    min-width: 50px;
  }
  .why-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
  }
  .why-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
  }
  .why-image {
    position: relative;
  }
  .why-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
  }
  .why-image::after {
    content: '';
    position: absolute;
    top: 20px; right: -20px;
    width: 50%;
    height: 50%;
    background: transparent;
    border: 2px solid var(--gold);
    z-index: 0;
  }
  .why-image img { position: relative; z-index: 1; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: rgba(20,20,20,0.88); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 55px;
  }
  .testimonial-card {
    background: var(--dark);
    padding: 38px 34px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
  }
  .testimonial-card:hover {
    border-left-color: var(--gold);
  }
  .testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 3px;
  }
  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 28px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.3);
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
  }
  .testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
  }
  .testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* ── VIDEO SECTION ── */
  .video-section {
    background: var(--dark);
    padding: 100px 5% 80px;
    border-top: 1px solid rgba(201,168,76,0.08);
  }
  .video-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 70px;
  }
  .video-highlights {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .vh-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 16px;
    border: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.03);
    transition: all 0.3s;
  }
  .vh-item:hover {
    border-color: rgba(201,168,76,0.35);
    color: var(--text);
    background: rgba(201,168,76,0.07);
    transform: translateX(6px);
  }
  .vh-icon { font-size: 18px; }

  .video-player-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
  }
  .video-frame-outer { display: flex; flex-direction: column; gap: 10px; }
  .video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1);
    transition: box-shadow 0.4s;
  }
  .video-frame:hover {
    box-shadow: 0 24px 70px rgba(0,0,0,0.7), 0 0 30px rgba(201,168,76,0.15);
  }
  .video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  .video-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 12px;
    background: rgba(201,168,76,0.08);
    border-left: 3px solid var(--gold);
  }
  .video-side-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 130px;
  }
  .mini-video-card {
    cursor: pointer;
    transition: transform 0.3s;
  }
  .mini-video-card:hover { transform: scale(1.04); }
  .mini-thumb {
    position: relative;
    width: 130px;
    height: 80px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .mini-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
  }
  .mini-video-card:hover .mini-thumb img { transform: scale(1.1); }
  .mini-play {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    transition: background 0.3s;
  }
  .mini-video-card:hover .mini-play { background: rgba(13,13,13,0.3); }
  .mini-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Video row */
  .video-row { border-top: 1px solid rgba(201,168,76,0.08); padding-top: 50px; }
  .video-row-title { margin-bottom: 28px; }
  .video-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .yt-card {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
    transition: all 0.3s;
  }
  .yt-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  }
  .yt-embed {
    position: relative;
    padding-top: 56.25%;
    background: #000;
  }
  .yt-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  .yt-label {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    border-top: 1px solid rgba(201,168,76,0.08);
  }

  /* ── PROCESS ── */
  .process { background: rgba(28,28,28,0.85); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 38px; left: 10%;
    width: 80%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 0;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  .process-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 28px;
    transition: all 0.3s;
  }
  .process-step:hover .process-circle {
    background: var(--gold);
    color: var(--dark);
  }
  .process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
  }
  .process-step p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ── CONTACT ── */
  .contact {
    background: rgba(13,13,13,0.88);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .contact-info {
    padding: 100px 8% 100px 5%;
    background: var(--dark2);
  }
  .contact-form-area {
    padding: 100px 5% 100px 8%;
  }
  .contact-details {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 1px solid rgba(201,168,76,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    transition: all 0.3s;
  }
  .contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--dark);
  }
  .contact-detail-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .contact-detail-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-detail-value:hover { color: var(--gold); }
  .social-links {
    display: flex;
    gap: 14px;
    margin-top: 44px;
  }
  .social-link {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 18px;
    transition: all 0.3s;
  }
  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
  }
  .form-group { margin-bottom: 22px; }
  .form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--mid);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }
  .form-group select option { background: var(--mid); }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 130px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .form-submit {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 16px 42px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
  }
  .form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.25);
  }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
  }
  .whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: waPulse 2s infinite;
  }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
  }
  .whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
  }
  .whatsapp-btn svg { width: 32px; height: 32px; fill: white; }
  .wa-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text);
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .whatsapp-float:hover .wa-tooltip { opacity: 1; }

  /* ── FOOTER ── */
  footer {
    background: rgba(20,20,20,0.92);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(201,168,76,0.12);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 30px;
  }
  .footer-logo-area .logo-main { font-size: 24px; }
  .footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 16px;
    font-weight: 300;
    max-width: 280px;
  }
  .footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    margin-bottom: 10px;
  }
  .footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
  }
  .footer-copy strong { color: var(--gold); }


  /* ══════════════════════════════════════
     INTRO OVERLAY
  ══════════════════════════════════════ */
  #introOverlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0D0D0D;
    overflow: hidden;
    transition: opacity 1.1s ease, visibility 1.1s ease;
  }
  #introOverlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* ── Background video ── */
  #introVideo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 0;
  }
  #introVideo.loaded { opacity: 0.55; }

  /* ── Photo slideshow on top of video ── */
  .intro-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .intro-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    animation: slideZoom 6s ease-in-out infinite alternate;
  }
  .intro-slide.active { opacity: 0.45; }
  @keyframes slideZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.07); }
  }

  /* ── Dark cinematic veil ── */
  .intro-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(13,13,13,0.82) 0%,
      rgba(13,13,13,0.45) 50%,
      rgba(13,13,13,0.75) 100%
    );
    z-index: 2;
  }

  /* ── Gold corner brackets ── */
  .intro-corner {
    position: absolute;
    width: 54px; height: 54px;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    animation: cornerFade 0.8s ease forwards;
  }
  .intro-corner.tl { top:26px; left:26px;  border-top:2px solid var(--gold); border-left:2px solid var(--gold);  animation-delay:0.2s; }
  .intro-corner.tr { top:26px; right:26px; border-top:2px solid var(--gold); border-right:2px solid var(--gold); animation-delay:0.3s; }
  .intro-corner.bl { bottom:26px; left:26px;  border-bottom:2px solid var(--gold); border-left:2px solid var(--gold);  animation-delay:0.4s; }
  .intro-corner.br { bottom:26px; right:26px; border-bottom:2px solid var(--gold); border-right:2px solid var(--gold); animation-delay:0.5s; }
  @keyframes cornerFade {
    to { opacity: 1; }
  }

  /* ── Photo thumbnail strip (bottom left) ── */
  .intro-thumbs {
    position: absolute;
    bottom: 110px;
    left: 40px;
    z-index: 5;
    display: flex;
    gap: 10px;
    animation: introUp 0.9s ease 1.4s both;
  }
  .intro-thumb {
    width: 90px;
    height: 62px;
    object-fit: cover;
    border: 2px solid rgba(201,168,76,0.25);
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
  }
  .intro-thumb:hover,
  .intro-thumb.active {
    opacity: 1;
    border-color: var(--gold);
    transform: translateY(-3px);
  }

  /* ── Main UI layout ── */
  .intro-ui {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 52px 5%;
    text-align: center;
  }

  /* ── Logo ── */
  .intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: introDown 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
  }
  @keyframes introDown {
    from { opacity:0; transform:translateY(-24px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .intro-logo-icon { font-size: 34px; margin-bottom: 2px; }
  .intro-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 56px);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 0 0 50px rgba(201,168,76,0.55);
    line-height: 1;
  }
  .intro-logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(232,228,220,0.45);
  }

  /* ── Centre headline ── */
  .intro-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: introUp 1.0s cubic-bezier(0.22,1,0.36,1) 0.65s both;
  }
  @keyframes introUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .intro-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5.5vw, 66px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  }
  .intro-tagline em { color: var(--gold); font-style: italic; }
  .intro-divider {
    width: 60px; height: 1px;
    background: var(--gold); opacity: 0.5;
  }
  .intro-sub {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(13px, 2vw, 17px);
    color: rgba(232,228,220,0.65);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
  }

  /* ── Service chips ── */
  .intro-services {
    display: flex; gap: 10px;
    flex-wrap: wrap; justify-content: center;
    margin-top: 4px;
  }
  .intro-chip {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 6px 16px;
    background: rgba(201,168,76,0.07);
    opacity: 0;
    transform: scale(0.88) translateY(8px);
    animation: chipPop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  .intro-chip:nth-child(1){animation-delay:1.2s}
  .intro-chip:nth-child(2){animation-delay:1.35s}
  .intro-chip:nth-child(3){animation-delay:1.5s}
  .intro-chip:nth-child(4){animation-delay:1.65s}
  .intro-chip:nth-child(5){animation-delay:1.8s}
  .intro-chip:nth-child(6){animation-delay:1.95s}
  @keyframes chipPop {
    to { opacity:1; transform:scale(1) translateY(0); }
  }

  /* ── Bottom bar ── */
  .intro-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: introUp 1s ease 1.1s both;
  }
  .intro-timer-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232,228,220,0.3);
  }
  .intro-progress-wrap {
    width: min(540px, 88%);
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
  }
  .intro-progress-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    animation: progressShimmer 1.5s linear infinite;
    transition: width 0.1s linear;
  }
  @keyframes progressShimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
  }
  .intro-skip {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232,228,220,0.4);
    background: none;
    border: 1px solid rgba(232,228,220,0.18);
    padding: 10px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; gap: 10px;
  }
  .intro-skip:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.06);
    letter-spacing: 4px;
  }
  .intro-skip svg { transition: transform 0.3s; }
  .intro-skip:hover svg { transform: translateX(5px); }

  /* ══════════════════════════════════════
     TABLET — max 900px
  ══════════════════════════════════════ */
  @media (max-width: 900px) {

    /* ── NAV ── */
    nav { padding: 14px 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(13,13,13,0.99);
      justify-content: center;
      align-items: center;
      gap: 32px;
      z-index: 9999;
    }
    .nav-links.open a { font-size: 22px; letter-spacing: 4px; }

    /* ── HERO ── */
    .hero { min-height: 100svh; align-items: center; }
    .hero-content { padding: 0 6%; max-width: 100%; }
    .hero h1 { font-size: clamp(34px, 8vw, 60px); }
    .hero-desc { font-size: 15px; max-width: 100%; }
    .hero-brand-float { display: none; }

    /* ── STATS ── */
    .stats-bar { flex-wrap: wrap; justify-content: center; padding: 0 4%; gap: 0; }
    .stat-divider { display: none; }
    .stat-item { min-width: 140px; flex: 1 1 140px; padding: 22px 14px; }

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

    /* ── ABOUT ── */
    .about { grid-template-columns: 1fr; gap: 40px; padding: 70px 5%; }
    .about-image { display: none; }
    .about-features { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* ── SERVICES ── */
    .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

    /* ── GALLERY ── */
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 200px;
    }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }

    /* ── VIDEO ── */
    .video-section { padding: 70px 5%; }
    .video-inner { grid-template-columns: 1fr; gap: 40px; }
    .video-player-wrap { grid-template-columns: 1fr; }
    .video-side-stack { flex-direction: row; width: 100%; overflow-x: auto; gap: 10px; padding-bottom: 6px; }
    .mini-video-card { min-width: 140px; flex-shrink: 0; }
    .mini-thumb { width: 140px; height: 85px; }
    .video-row-grid { grid-template-columns: 1fr 1fr; }

    /* ── PROCESS ── */
    .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .process-steps::before { display: none; }
    .process-step { padding: 30px 20px; }

    /* ── WHY US ── */
    .why-us { grid-template-columns: 1fr; gap: 40px; padding: 70px 5%; }
    .why-image { display: none; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

    /* ── CONTACT ── */
    .contact { grid-template-columns: 1fr; }
    .contact-info { padding: 60px 5%; }
    .contact-form-area { padding: 60px 5%; }
    .form-row { grid-template-columns: 1fr; }

    /* ── FOOTER ── */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-desc { max-width: 100%; }

    /* ── SECTION TITLE ── */
    .section-title { font-size: clamp(26px, 5vw, 44px); }
  }

  /* ══════════════════════════════════════
     MOBILE — max 600px
  ══════════════════════════════════════ */
  @media (max-width: 600px) {

    /* ── GLOBAL ── */
    * { -webkit-text-size-adjust: 100%; }
    body { overflow-x: hidden; }
    section { padding: 56px 4%; }
    .section-title { font-size: clamp(22px, 7vw, 34px); line-height: 1.2; }
    .section-desc { font-size: 14px; line-height: 1.7; }
    .section-label { font-size: 10px; letter-spacing: 3px; }

    /* ── NAV ── */
    nav { padding: 12px 4%; }
    .logo-main { font-size: 16px !important; }
    .logo-sub { font-size: 9px; letter-spacing: 3px; }

    /* ── HERO ── */
    .hero { min-height: 100svh; padding-top: 70px; }
    .hero-content { padding: 0 4%; }
    .hero h1 { font-size: clamp(28px, 9vw, 44px); line-height: 1.15; margin-bottom: 18px; }
    .hero-badge { font-size: 10px; letter-spacing: 3px; margin-bottom: 16px; }
    .hero-desc { font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
      justify-content: center;
      padding: 15px 20px;
      font-size: 13px;
    }
    .hero-brand-float { display: none; }
    .hero-scroll { bottom: 20px; }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 0;
      gap: 1px;
      background: rgba(201,168,76,0.15);
    }
    .stat-divider { display: none; }
    .stat-item {
      min-width: unset;
      padding: 18px 10px;
      background: var(--gold);
    }
    .stat-num { font-size: 30px; letter-spacing: -1px; }
    .stat-label { font-size: 9px; letter-spacing: 2px; }

    /* ── ABOUT ── */
    .about { display: flex; flex-direction: column; gap: 32px; padding: 56px 4%; }
    .about-image { display: none; }
    .about-features { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
    .about-feature-title { font-size: 15px; }
    .about-feature-text { font-size: 13px; }

    /* ── SERVICES ── */
    .services { padding: 56px 4%; }
    .services-header { margin-bottom: 32px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { padding: 30px 22px; }
    .service-num { font-size: 44px; }
    .service-title { font-size: 20px; }
    .service-desc { font-size: 13px; }
    .service-list li { font-size: 13px; }

    /* ── GALLERY ── */
    .gallery { padding: 56px 4%; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 160px;
      gap: 6px;
      margin-top: 30px;
    }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 160px; }

    /* ── VIDEO ── */
    .video-section { padding: 56px 4%; }
    .video-inner { grid-template-columns: 1fr; gap: 32px; }
    .video-player-wrap { grid-template-columns: 1fr; }
    .video-side-stack {
      flex-direction: row;
      overflow-x: auto;
      width: 100%;
      gap: 10px;
      padding-bottom: 8px;
    }
    .mini-video-card { min-width: 130px; flex-shrink: 0; }
    .mini-thumb { width: 130px; height: 78px; }
    .mini-label { font-size: 10px; }
    .video-row { padding-top: 36px; }
    .video-row-grid { grid-template-columns: 1fr; gap: 14px; }
    .video-highlights { gap: 10px; }
    .vh-item { font-size: 13px; padding: 9px 12px; }

    /* ── PROCESS ── */
    .process { padding: 56px 4%; }
    .process-steps { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
    .process-steps::before { display: none; }
    .process-step { padding: 28px 20px; }
    .process-circle { width: 62px; height: 62px; font-size: 22px; margin-bottom: 20px; }
    .process-step h4 { font-size: 17px; }
    .process-step p { font-size: 13px; }

    /* ── WHY US ── */
    .why-us { display: flex; flex-direction: column; gap: 32px; padding: 56px 4%; }
    .why-image { display: none; }
    .why-list { gap: 20px; margin-top: 24px; }
    .why-num { font-size: 36px; min-width: 40px; }
    .why-content h4 { font-size: 17px; }
    .why-content p { font-size: 13px; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 56px 4%; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
    .testimonial-card { padding: 26px 20px; }
    .testimonial-text { font-size: 14px; }
    .testimonial-name { font-size: 14px; }

    /* ── CONTACT ── */
    .contact { display: flex; flex-direction: column; }
    .contact-info { padding: 56px 4%; }
    .contact-form-area { padding: 40px 4% 56px; }
    .contact-details { margin-top: 32px; gap: 20px; }
    .contact-item { gap: 14px; }
    .contact-icon { width: 42px; height: 42px; min-width: 42px; font-size: 18px; }
    .contact-detail-label { font-size: 10px; letter-spacing: 2px; }
    .contact-detail-value { font-size: 15px; }
    .social-links { gap: 12px; margin-top: 28px; flex-wrap: wrap; }
    .social-link { width: 42px; height: 42px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 16px; }
    .form-group label { font-size: 10px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; padding: 13px 14px; }
    .form-group textarea { min-height: 110px; }
    .form-submit { padding: 15px 20px; font-size: 13px; letter-spacing: 2px; }

    /* ── FOOTER ── */
    footer { padding: 48px 4% 28px; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-bottom: 36px;
    }
    .footer-logo-area { text-align: left; }
    .footer-logo-area .logo-main { font-size: 18px !important; }
    .footer-desc { font-size: 13px; max-width: 100%; }
    .footer-col h5 { font-size: 11px; margin-bottom: 14px; }
    .footer-col ul li { margin-bottom: 9px; }
    .footer-col ul li a { font-size: 13px; }
    .footer-bottom {
      flex-direction: column;
      gap: 6px;
      text-align: center;
      padding-top: 4px;
    }
    .footer-copy { font-size: 11px; }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float { bottom: 90px; right: 14px; }
    .whatsapp-btn { width: 52px; height: 52px; }
    .whatsapp-btn svg { width: 26px; height: 26px; }
    .wa-tooltip { display: none; }

    /* ── INTRO OVERLAY ── */
    #introOverlay { padding: 0; }
    .intro-corner { display: none; }
    .intro-ui { padding: 24px 6% 20px; gap: 18px; justify-content: space-between; }
    .intro-logo { gap: 10px; margin-bottom: 0; }
    .intro-logo-icon { font-size: 28px; }
    .intro-logo-name { font-size: clamp(20px, 6vw, 32px); }
    .intro-logo-sub { font-size: 10px; letter-spacing: 2px; }
    .intro-center { flex: 1; }
    .intro-tagline { font-size: clamp(24px, 8vw, 40px); line-height: 1.2; }
    .intro-divider { width: 40px; margin: 12px auto; }
    .intro-sub { font-size: 13px; line-height: 1.6; }
    .intro-services { flex-wrap: wrap; gap: 7px; margin-top: 14px; justify-content: center; }
    .intro-chip { font-size: 11px; padding: 6px 12px; letter-spacing: 1.5px; }
    .intro-bottom { gap: 10px; margin-top: 0; }
    .intro-progress-wrap { width: 90%; }
    .intro-skip { font-size: 11px; padding: 10px 24px; letter-spacing: 2.5px; }
    .intro-photo-grid { display: none; }

    /* ── COOKIE BANNER ── */
    #cookieBanner {
      flex-direction: column;
      align-items: flex-start;
      padding: 16px 4%;
      gap: 14px;
    }
    #cookieBanner > div:first-child { gap: 10px; }
    #cookieBanner p { font-size: 12px; }
    #cookieBanner > div:last-child { width: 100%; justify-content: stretch; gap: 10px; }
    #cookieBanner button { flex: 1; font-size: 11px; padding: 11px 10px; text-align: center; }
  }

  /* ══════════════════════════════════════
     SMALL PHONES — max 400px
  ══════════════════════════════════════ */
  @media (max-width: 400px) {
    .hero h1 { font-size: 26px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 26px; }
    .stat-label { font-size: 8px; letter-spacing: 1.5px; }
    .service-card { padding: 24px 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }
    .process-circle { width: 54px; height: 54px; font-size: 20px; }
    .section-title { font-size: 22px; }
    .contact-detail-value { font-size: 14px; }
    .intro-tagline { font-size: 22px; }
  }
