/* =====================================================================
   LUCKYLIGHTS — style.css
   Custom styles for the site. Bootstrap 5 is loaded via CDN in
   index.html BEFORE this file, so any rule here overrides Bootstrap's
   defaults for the same selector.
   ===================================================================== */

  /* Custom design overrides Bootstrap defaults — do not remove this
     reset, it's what keeps the original look intact after adding
     Bootstrap above. */
  :root {
    --maroon: #7A1528;
    --maroon-deep: #5C0F1E;
    --maroon-soft: #8B1F33;
    --cream: #F2E8C9;
    --cream-warm: #EDE0BA;
    --cream-soft: #F7EFD6;
    --ink: #2A0A12;
    --line-maroon: rgba(122, 21, 40, 0.2);
    --line-cream: rgba(242, 232, 201, 0.2);
  }

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

  html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--maroon);
    color: var(--cream);
    -webkit-font-smoothing: antialiased;
  }

  /* Fixed top nav */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    pointer-events: none;
  }
  .nav > * { pointer-events: auto; }

  .logo-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .logo-wrap:hover { transform: scale(1.05); }
  .logo-img {
    height: 56px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .logo-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--cream);
  }
  .logo-fallback svg { width: 70%; height: 70%; }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }

  .nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .btn {
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid var(--cream);
    background: transparent;
    color: var(--cream);
    font-family: inherit;
  }
  .btn:hover {
    background: var(--cream);
    color: var(--maroon);
  }
  .btn-solid {
    background: var(--cream);
    color: var(--maroon);
  }
  .btn-solid:hover {
    background: transparent;
    color: var(--cream);
  }
  .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .btn:hover .btn-arrow { transform: translate(2px, -2px); }

  /* Cream-theme nav overrides */
  body.on-cream .nav-links a { color: var(--maroon); }
  body.on-cream .btn { border-color: var(--maroon); color: var(--maroon); }
  body.on-cream .btn:hover { background: var(--maroon); color: var(--cream); }
  body.on-cream .btn-solid { background: var(--maroon); color: var(--cream); }
  body.on-cream .btn-solid:hover { background: transparent; color: var(--maroon); }

  /* Horizontal container */
  .stage {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .track {
    display: flex;
    height: 100vh;
    will-change: transform;
    transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    padding: 120px 96px 80px;
    display: flex;
    align-items: center;
  }

  .panel-maroon {
    background: var(--maroon);
    color: var(--cream);
  }
  .panel-cream {
    background: var(--cream);
    color: var(--maroon);
  }

  /* Section label */
  .section-label {
    position: absolute;
    top: 120px;
    left: 96px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.65;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
  }

  /* ========== HOME ========== */
  .home-content {
    position: relative;
    z-index: 3;
    max-width: 58%;
    will-change: transform;
  }
  .home-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.85;
  }
  .home-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
  }
  .home-headline {
    font-size: clamp(56px, 7vw, 108px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2.5px;
    margin-bottom: 36px;
  }
  .home-headline .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
  }
  .home-headline .word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .panel.is-active .home-headline .word-inner { transform: translateY(0); }
  .home-headline em {
    font-style: italic;
    font-weight: 500;
    font-family: 'Georgia', serif;
    color: var(--cream-warm);
    opacity: 0.9;
  }
  .home-sub {
    font-size: 17px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 48px;
    opacity: 0.85;
  }
  .home-tag {
    font-size: 11px;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-top: 24px;
  }

  /* Watercolor archway visual */
  .archway {
    position: absolute;
    right: -5%;
    top: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
  }
  .archway svg { width: 100%; height: 100%; }

  .scroll-hint {
    position: absolute;
    right: 48px;
    bottom: 48px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;
    opacity: 0.6;
    z-index: 4;
  }
  .scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: currentColor;
    margin: 16px auto 0;
    opacity: 0.5;
  }

  /* ========== SERVICES ========== */
  .services-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 80px;
    align-items: center;
  }
  .services-heading {
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .services-intro {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 360px;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .service-card {
    padding: 32px 24px;
    border: 1px solid var(--line-maroon);
    border-radius: 2px;
    transition: all 0.4s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .service-card:hover {
    background: var(--maroon);
    color: var(--cream);
    transform: translateY(-6px);
  }
  .service-card:hover .service-num { opacity: 1; }
  .service-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    opacity: 0.5;
    margin-bottom: 48px;
    transition: opacity 0.3s;
  }
  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }
  .service-icon svg { width: 100%; height: 100%; }
  .service-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
  }
  .service-desc {
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.8;
  }

  /* ========== ABOUT ========== */
  .about-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 96px;
    align-items: center;
  }
  .about-headline {
    font-size: clamp(46px, 5vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 28px;
  }
  .about-headline em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--cream-warm);
  }
  .about-sub {
    font-size: 17px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0.85;
  }
  .about-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    flex-wrap: wrap;
  }
  .about-flow span {
    padding: 8px 14px;
    border: 1px solid var(--line-cream);
    border-radius: 999px;
    background: rgba(242, 232, 201, 0.06);
  }
  .about-flow .arrow { opacity: 0.5; }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: relative;
  }
  .stat {
    padding: 32px 24px;
    border: 1px solid var(--line-cream);
    background: rgba(242, 232, 201, 0.04);
    border-radius: 2px;
  }
  .stat-value {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.7;
    font-weight: 500;
  }
  .stat.wide { grid-column: span 2; }
  .stat.wide .stat-value { font-size: 32px; font-family: Georgia, serif; font-style: italic; font-weight: 500; }

  /* ========== PORTFOLIO ========== */
  .portfolio-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .portfolio-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
  .portfolio-heading {
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -2px;
  }
  .portfolio-heading em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
  }
  .portfolio-sub {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
    opacity: 0.75;
    padding-bottom: 12px;
  }
  .cases {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .case {
    position: relative;
    /*aspect-ratio: 3 / 4;*/
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .case:hover { transform: translateY(-6px); }
  .case-bg {
    /*position: absolute;*/
    inset: 0;
    transition: transform 0.8s ease;
  }
  .case:hover .case-bg { transform: scale(1.05); }
  .case-overlay {
    text-align: center;
    /*position: absolute;*/
    inset: 0;
    /*background: linear-gradient(180deg, rgba(92,15,30,0) 45%, rgba(92,15,30,0.92) 100%);*/
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #7a1528;
    margin-bottom: 5px;
  }
  .case-client {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 6px;
  }
  .case-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }
  .case-years {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--cream);
    background: rgba(92,15,30,0.75);
    padding: 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
  }

  .case-bg svg { width: 100%; height: 100%; display: block; }
  .case-bg img {
    width: 100%;
    /*height: 100%;*/
    display: block;
    object-fit: cover;
  }
  .case-bg-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon-soft) 0%, var(--maroon-deep) 100%);
  }
  .case-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    opacity: 0.6;
    font-size: 14px;
  }

  /* Client logo strip */
  .logo-strip-wrap {
    margin-top: 16px;
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid var(--line-maroon);
    border-bottom: 1px solid var(--line-maroon);
    position: relative;
  }
  .logo-strip-label {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.55;
    margin-bottom: 16px;
  }
  .logo-strip {
    display: flex;
    gap: 72px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
  }
  .logo-strip-wrap:hover .logo-strip { animation-play-state: paused; }
  .client-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--maroon);
    opacity: 0.55;
    white-space: nowrap;
    transition: opacity 0.3s;
    font-family: Georgia, serif;
    font-style: italic;
  }
  .client-name:hover { opacity: 1; }
  @keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ========== CONTACT — enlarged & high-contrast ========== */
  .contact-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 96px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .contact-headline {
    font-size: clamp(52px, 6vw, 96px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 44px;
    color: var(--cream);
  }
  .contact-headline em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--cream-soft);
  }
  .contact-quote {
    padding: 22px 0 22px 28px;
    border-left: 3px solid var(--cream-warm);
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    max-width: 560px;
    color: var(--cream);
    margin-bottom: 48px;
  }
  .contact-quote cite {
    display: block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--cream-warm);
    opacity: 0.85;
  }
  .contact-cta {
    display: inline-flex;
    gap: 12px;
  }
  .contact-cta .btn {
    padding: 16px 32px;
    font-size: 13px;
  }

  .contact-details {
    display: grid;
    gap: 36px;
    position: relative;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .contact-block-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--cream-warm);
    opacity: 0.9;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(242, 232, 201, 0.25);
  }
  .contact-block a, .contact-block p {
    color: var(--cream);
    text-decoration: none;
    font-size: 17px;
    line-height: 1.75;
    display: block;
    font-weight: 400;
    letter-spacing: 0.1px;
  }
  .contact-block p {
    font-size: 15px;
    line-height: 1.7;
  }
  .contact-block a {
    position: relative;
    width: fit-content;
    transition: color 0.3s, transform 0.3s;
  }
  .contact-block a:hover {
    color: var(--cream-soft);
    transform: translateX(4px);
  }

  /* Contact archway */
  .contact-arch {
    position: absolute;
    right: -10%;
    top: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
  }

  /* ========== Progress indicator ========== */
  .progress-wrap {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 90;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
  }
  body.on-cream .progress-wrap { background: rgba(122,21,40,0.08); }
  .progress-count {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cream);
    min-width: 50px;
    font-variant-numeric: tabular-nums;
  }
  body.on-cream .progress-count { color: var(--maroon); }
  .progress-track {
    width: 160px;
    height: 2px;
    background: rgba(242, 232, 201, 0.2);
    position: relative;
    border-radius: 2px;
  }
  body.on-cream .progress-track { background: rgba(122, 21, 40, 0.15); }
  .progress-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    background: var(--cream);
    width: 20%;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
  }
  body.on-cream .progress-fill { background: var(--maroon); }

  /* Panel number at corner */
  .panel-num {
    position: absolute;
    bottom: 48px;
    left: 96px;
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.5;
  }

  /* Watermark noise overlay for warmth */
  .noise {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  }

  /* Parallax layers */
  .parallax-slow { will-change: transform; }

  /* Entry reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.2s;
  }
  .panel.is-active .reveal {
    opacity: 1;
    transform: translateY(0);
  }
  .panel.is-active .reveal.d1 { transition-delay: 0.35s; }
  .panel.is-active .reveal.d2 { transition-delay: 0.5s; }
  .panel.is-active .reveal.d3 { transition-delay: 0.65s; }
  .panel.is-active .reveal.d4 { transition-delay: 0.8s; }

  /* ========================================================
     RESPONSIVE — mobile navigation (hamburger + slide-in menu)
     ======================================================== */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  body.on-cream .nav-toggle span { background: var(--maroon); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ========================================================
     RESPONSIVE — breakpoints
     ======================================================== */

  /* ---- Tablet / small laptop (≤ 1024px) ---- */
  @media (max-width: 1024px) {
    .panel { padding: 110px 56px 72px; }
    .section-label { top: 100px; left: 56px; }
    .panel-num { left: 56px; bottom: 32px; }
    .nav { padding: 20px 32px; }

    .home-content { max-width: 70%; }
    .archway { width: 75%; opacity: 0.85; }

    .services-wrap { grid-template-columns: 1fr; gap: 40px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }

    .about-wrap { grid-template-columns: 1fr; gap: 48px; }

    .cases { grid-template-columns: repeat(3, 1fr); }

    .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ---- Mobile / tablet portrait (≤ 768px) ---- */
  @media (max-width: 768px) {
    html, body { overflow: visible; }

    /* Faster, snappier snap animation for touch swipes */
    .track { transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1); }

    .nav { padding: 16px 20px; }
    .logo-img, .logo-fallback { height: 44px; width: 44px; }
    .logo-img { height: 44px; }

    .nav-links {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: var(--maroon-deep);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 28px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
      pointer-events: none;
    }
    .nav-links.is-open { transform: translateX(0); pointer-events: auto; }
    .nav-links a { font-size: 20px; letter-spacing: 3px; color: var(--cream) !important; }
    body.on-cream .nav-links.is-open { background: var(--cream-warm); }
    body.on-cream .nav-links.is-open a { color: var(--maroon) !important; }

    .nav-right .btn#aiBtn { display: none; }
    .nav-right .btn { padding: 9px 16px; font-size: 10px; }
    .nav-toggle { display: flex; }

    /* Panels: allow internal vertical scroll instead of clipping content */
    .stage { height: 100dvh; }
    .track { height: 100dvh; }
    .panel {
      height: 100dvh;
      padding: 96px 24px 88px;
      align-items: flex-start;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .panel > * { align-self: center; }

    .section-label { top: 84px; left: 24px; font-size: 10px; }
    .panel-num { left: 24px; bottom: 20px; font-size: 9px; }
    .scroll-hint { display: none; }

    .home-content { max-width: 100%; margin-top: 24px; }
    .home-headline { font-size: clamp(38px, 11vw, 56px); letter-spacing: -1.5px; }
    .home-sub { font-size: 15px; max-width: 100%; }
    .archway { width: 100%; right: 0; opacity: 0.35; }

    .services-heading, .about-headline, .portfolio-heading, .contact-headline {
      font-size: clamp(30px, 8vw, 44px);
    }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; padding: 24px 20px; }

    .about-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat { padding: 20px 16px; }
    .stat-value { font-size: 34px; }
    .stat.wide .stat-value { font-size: 22px; }

    .portfolio-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .portfolio-sub { max-width: 100%; }
    .cases { grid-template-columns: repeat(2, 1fr); }
    .case-title { font-size: 13px; }

    .contact-headline { margin-bottom: 28px; }
    .contact-quote { font-size: 17px; margin-bottom: 32px; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .contact-arch { opacity: 0.2; }

    .progress-wrap { bottom: 16px; padding: 8px 14px; gap: 10px; }
    .progress-track { width: 100px; }
    .progress-count { font-size: 9px; min-width: 40px; }
  }

  /* ---- Small phones (≤ 480px) ---- */
  @media (max-width: 480px) {
    .panel { padding: 88px 18px 84px; }
    .section-label { left: 18px; }
    .panel-num { left: 18px; }

    .home-headline { font-size: clamp(32px, 10vw, 42px); }
    .home-sub { font-size: 14px; margin-bottom: 32px; }

    .service-grid, .cases, .contact-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .stat.wide { grid-column: span 1; }

    .contact-cta .btn { padding: 13px 22px; font-size: 12px; }
    .btn { padding: 10px 18px; font-size: 11px; }

    .logo-strip { gap: 40px; }
    .client-name { font-size: 15px; }
  }
