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

  :root {
    --gold: #F5B800;
    --gold-dim: #C99600;
    --black: #0D0D0D;
    --dark: #111111;
    --dark2: #1A1A1A;
    --warm-white: #F4F1EC;
    --gray: #888880;
    --light-gray: #2A2A2A;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--warm-white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 24px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(13,13,13,0.94);
    backdrop-filter: blur(12px);
    padding: 14px 60px;
    border-bottom: 1px solid rgba(245,184,0,0.12);
  }
  .nav-logo img { height: 64px; width: auto; display: block; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(244,241,236,0.7); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    background: var(--gold); color: var(--black);
    border: none; padding: 12px 28px; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: #ffd233; transform: translateY(-1px); }

  /* ── HERO ── */
  #hero {
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center; padding: 0 60px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: #0B0B0B;
  }
  .hero-lines {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .hero-lines::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, rgba(245,184,0,0.3), transparent);
    right: 38%;
  }
  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
  .hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(72px, 11vw, 168px);
    font-weight: 900; line-height: 0.9;
    text-transform: uppercase;
    position: relative; z-index: 1;
  }
  .hero-headline .gold { color: var(--gold); }
  .hero-headline .outline {
    -webkit-text-stroke: 2px rgba(244,241,236,0.25);
    color: transparent;
  }
  .hero-sub {
    margin-top: 36px; max-width: 620px;
    font-size: 20px; line-height: 1.65; color: rgba(244,241,236,0.6);
    font-weight: 300; position: relative; z-index: 1;
  }
  .hero-actions {
    margin-top: 48px; display: flex; gap: 16px; align-items: center;
    position: relative; z-index: 1;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
    background: var(--gold); color: var(--black);
    border: none; padding: 18px 40px; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #ffd233; transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
    background: transparent; color: var(--warm-white);
    border: 1px solid rgba(244,241,236,0.3); padding: 18px 40px; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 60px;
    display: flex; align-items: center; gap: 12px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    letter-spacing: 3px; text-transform: uppercase; color: rgba(244,241,236,0.3);
  }
  .scroll-line {
    width: 48px; height: 1px; background: rgba(244,241,236,0.2);
    position: relative; overflow: hidden;
  }
  .scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }

  .hero-stats {
    position: absolute; bottom: 60px; right: 60px;
    display: flex; gap: 48px;
  }
  .hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px; font-weight: 800; line-height: 1;
    color: var(--gold);
  }
  .hero-stat-label {
    font-size: 12px; letter-spacing: 1px; color: var(--gray);
    margin-top: 4px; text-transform: uppercase;
  }

  /* ── SECTION BASE ── */
  section { padding: 120px 60px; }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 72px); font-weight: 900;
    text-transform: uppercase; line-height: 0.95;
  }
  .section-title .gold { color: var(--gold); }

  /* ── SERVICES ── */
  #services { background: var(--dark); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 72px;
  }
  .services-desc {
    max-width: 340px; font-size: 15px; line-height: 1.8;
    color: rgba(244,241,236,0.5); font-weight: 300;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--dark2); padding: 48px 40px;
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    cursor: default; position: relative; overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s ease;
  }
  .service-card:hover { background: #1e1e1e; border-top-color: var(--gold); }
  .service-card:hover::after { width: 100%; }
  .service-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    font-weight: 700; letter-spacing: 3px; color: var(--gold);
    margin-bottom: 32px; opacity: 0.7;
  }
  .service-icon {
    width: 48px; height: 48px; margin-bottom: 24px;
    color: var(--gold);
  }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif; font-size: 24px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .service-desc { font-size: 14px; line-height: 1.7; color: rgba(244,241,236,0.45); }

  /* ── ABOUT ── */
  #about {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; align-items: stretch;
    background: var(--black);
    padding: 0;
  }
  .about-img-col {
    position: relative; overflow: hidden; min-height: 560px;
  }
  .about-img-col img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.75) saturate(0.8);
  }
  .about-img-col:hover img { transform: scale(1.04); }
  .about-img-col-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.5) 0%, transparent 50%, rgba(13,13,13,0.3) 100%);
  }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 80px 60px; }
  .about-text { padding: 80px 60px; }
  .about-stat {
    background: var(--dark2); padding: 48px 40px;
    border-left: 2px solid transparent; transition: border-color 0.3s;
  }
  .about-stat:hover { border-left-color: var(--gold); }
  .about-stat-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 64px;
    font-weight: 900; color: var(--gold); line-height: 1;
  }
  .about-stat-label {
    font-size: 13px; color: var(--gray); margin-top: 8px;
    text-transform: uppercase; letter-spacing: 1.5px;
  }
  .about-text { padding-left: 20px; }
  .about-body {
    margin-top: 28px; font-size: 16px; line-height: 1.9;
    color: rgba(244,241,236,0.6); font-weight: 300;
  }
  .about-body p + p { margin-top: 16px; }
  .about-signature {
    margin-top: 40px; display: flex; align-items: center; gap: 16px;
  }
  .about-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--dark2); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif; font-size: 20px;
    font-weight: 800; color: var(--gold);
  }
  .about-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; }
  .about-role { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

  /* ── CIRCLE REVEAL ── */
  #reveal-wrapper {
    height: 230vh;
    position: relative;
  }
  #reveal-sticky {
    position: sticky; top: 0; height: 100vh;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
  }
  #reveal-backdrop {
    position: absolute; inset: 0;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
  }
  #reveal-backdrop-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 7vw, 96px); font-weight: 900;
    text-transform: uppercase; color: rgba(244,241,236,0.04);
    text-align: center; user-select: none; pointer-events: none;
    letter-spacing: 8px;
  }
  #reveal-image-wrap {
    position: absolute; inset: 0;
    clip-path: circle(0px at 50% 50%);
    will-change: clip-path;
  }
  #reveal-image {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  /* Construction scene drawn in CSS */
  #reveal-label {
    position: absolute; bottom: 80px; left: 0; right: 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 52px); font-weight: 800;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--warm-white); text-shadow: 0 2px 40px rgba(0,0,0,0.8);
    pointer-events: none;
  }
  #reveal-label span { color: var(--gold); }
  #reveal-progress-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120px; height: 120px; pointer-events: none;
    transition: opacity 0.3s;
  }
  #reveal-scroll-hint {
    position: absolute; bottom: 48px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    letter-spacing: 4px; text-transform: uppercase; color: rgba(244,241,236,0.3);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    transition: opacity 0.4s;
  }
  .scroll-arrow {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollArrow 1.5s ease-in-out infinite;
  }
  @keyframes scrollArrow {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }


  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--dark); }
  .testimonials-header { margin-bottom: 72px; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .testimonial-card {
    background: var(--dark2); padding: 48px 40px;
    position: relative;
    transition: background 0.3s;
  }
  .testimonial-card:hover { background: #1e1e1e; }
  .testimonial-quote {
    font-size: 64px; line-height: 0.8; font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; color: var(--gold); opacity: 0.3;
    margin-bottom: 20px; display: block;
  }
  .testimonial-text {
    font-size: 15px; line-height: 1.8; color: rgba(244,241,236,0.7);
    font-weight: 300; font-style: italic;
    margin-bottom: 32px;
  }
  .testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--light-gray); border: 1px solid rgba(245,184,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 16px; color: var(--gold);
  }
  .testimonial-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; }
  .testimonial-location { font-size: 12px; color: var(--gray); }

  /* ── QUOTE FORM ── */
  #quote {
    background: var(--black);
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
  }
  .quote-left {}
  .quote-desc {
    margin-top: 28px; font-size: 15px; line-height: 1.9;
    color: rgba(244,241,236,0.5); max-width: 400px;
  }
  .quote-contact { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
  .quote-contact-item {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; color: rgba(244,241,236,0.6);
  }
  .contact-icon {
    width: 40px; height: 40px; background: var(--dark2);
    border: 1px solid rgba(245,184,0,0.2); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
  }
  .contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .quote-form { display: flex; flex-direction: column; gap: 2px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .form-group { display: flex; flex-direction: column; }
  .form-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); padding: 14px 20px 0;
    background: var(--dark2);
  }
  .form-input, .form-textarea, .form-select {
    background: var(--dark2); border: none; border-bottom: 1px solid transparent;
    padding: 8px 20px 16px; font-family: 'Barlow', sans-serif; font-size: 15px;
    color: var(--warm-white); outline: none; width: 100%;
    transition: border-color 0.2s;
  }
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-bottom-color: var(--gold);
  }
  .form-textarea { resize: none; height: 120px; }
  .form-select { appearance: none; cursor: pointer; color: rgba(244,241,236,0.6); }
  .form-select option { background: var(--dark2); }
  .form-submit {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
    background: var(--gold); color: var(--black); border: none;
    padding: 22px; cursor: pointer; margin-top: 2px;
    transition: background 0.2s, transform 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .form-submit:hover { background: #ffd233; transform: translateY(-2px); }
  .form-submit svg { width: 16px; height: 16px; stroke: var(--black); fill: none; stroke-width: 2; }

  /* ── FOOTER ── */
  footer {
    background: #080808; padding: 60px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(245,184,0,0.08);
  }
  footer img { height: 36px; filter: brightness(0) invert(1); opacity: 0.6; }
  .footer-copy { font-size: 12px; color: var(--gray); letter-spacing: 1px; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a {
    font-size: 12px; color: var(--gray); text-decoration: none;
    letter-spacing: 1px; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ── FADE IN ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }

  /* ── DIVIDER ── */
  .gold-divider {
    width: 48px; height: 2px; background: var(--gold); margin-top: 24px;
  }

  /* ── SUCCESS STATE ── */
  .form-success {
    display: none; text-align: center; padding: 60px 40px;
    background: var(--dark2);
  }
  .form-success.show { display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .success-icon { width: 64px; height: 64px; border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; }
  .success-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; }
  .success-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; }
  .success-text { font-size: 14px; color: var(--gray); }

  /* ── HAMBURGER ── */
  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; z-index:101; flex-shrink:0; }
  .hamburger span { display:block; width:24px; height:2px; background:var(--warm-white); transition:all 0.3s; }
  .hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity:0; }
  .hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-links {
      display: none; position: fixed; top: 73px; left: 0; right: 0;
      background: rgba(13,13,13,0.98); backdrop-filter: blur(16px);
      flex-direction: column; gap: 0; padding: 8px 0;
      border-bottom: 1px solid rgba(245,184,0,0.12); z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(244,241,236,0.05); }
    .nav-links a { display: block; padding: 16px 24px; font-size: 16px; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    #hero { padding: 96px 22px 60px; height: 100svh; min-height: 600px; justify-content: flex-end; position: relative; overflow: hidden; }
    /* excavator full-bleed background */
    .hero-visual { order: 0; position: absolute; inset: 0; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; opacity: 1; margin: 0; z-index: 0; overflow: hidden; }
    .hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.35) 52%, transparent 100%), linear-gradient(to bottom, rgba(11,11,11,0.5) 0%, transparent 40%, rgba(11,11,11,0.4) 74%, #0B0B0B 100%); pointer-events: none; }
    .hero-circle { left: 63%; top: 20%; transform: translate(-50%,-50%); width: 56vw; max-width: 250px; }
    .hero-cutout { left: 65%; top: 21%; bottom: auto; transform: translate(-50%,-50%); width: auto; height: 26%; max-width: 84vw; }
    /* excavator sits in the upper area above the text; darken the lower half so the text stays readable */
    .hero-visual::after { background: linear-gradient(to bottom, rgba(11,11,11,0.05) 0%, rgba(11,11,11,0.1) 30%, rgba(11,11,11,0.78) 46%, #0B0B0B 66%); }
    /* content centered over the image */
    .hero-tag, .hero-headline, .hero-sub, .hero-actions { padding: 0; position: relative; z-index: 3; }
    .hero-tag { margin-top: 0; }
    .hero-headline { font-size: clamp(52px, 15vw, 84px); }
    .hero-sub { font-size: 15px; max-width: 100%; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 32px; }
    .btn-primary, .btn-outline { padding: 16px 28px; text-align: center; }
    .hero-stats { display: none; }
    .hero-mstats { display: none; }
    .hero-scroll { position: absolute; bottom: 26px; left: 0; right: 0; display: flex; justify-content: center; margin: 0; z-index: 3; }

    section { padding: 72px 20px; }

    .services-header { flex-direction: column; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px 24px; }

    #about { grid-template-columns: 1fr; }
    .about-img-col { min-height: 280px; }
    .about-stats { padding: 48px 20px; grid-template-columns: 1fr 1fr; }
    .about-stat { padding: 32px 20px; }
    .about-stat-num { font-size: 48px; }
    .about-text { padding: 48px 20px; }

    #reveal-wrapper { height: 160vh; }
    .nav-logo img { height: 52px; }
    .hero-watermark { display: none; }
    #reveal-label { font-size: clamp(18px, 5vw, 32px); bottom: 40px; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 36px 24px; }

    #quote { grid-template-columns: 1fr; gap: 48px; padding: 72px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .quote-contact { gap: 14px; }

    footer { padding: 32px 20px; flex-direction: column; gap: 14px; text-align: center; }
    footer img { margin: 0 auto; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }


  a { color: #B87400; } a:hover { color: #F5B800; }
  .nav-cta { color: #080808 !important; }
  .section-tag, .page-tag, .hero-tag { color: #F5B800 !important; }

  .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 200; width: 0; box-shadow: 0 0 12px rgba(245,184,0,0.6); }
  /* transparent nav over dark hero, solidifies on scroll */
  #nav .nav-links a { color: rgba(255,255,255,0.82); }
  #nav.scrolled { background: rgba(13,13,13,0.96) !important; border-bottom: 1px solid rgba(245,184,0,0.12); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
  #nav.scrolled .nav-links a { color: rgba(244,241,236,0.6); }
  .nav-logo img { transition: filter .35s; }
  /* dark hero keeps light text */
  #hero { color: #F6F2EA; }
  .hero-headline { color: #F6F2EA; }
  .hero-headline .outline { -webkit-text-stroke: 2px rgba(246,242,234,0.3); color: transparent; }
  .hero-sub { color: rgba(246,242,234,0.62); }
  .hero-tag { color: #F5B800 !important; }
  .hero-scroll { color: rgba(246,242,234,0.35); }
  .hero-stat-label { color: rgba(246,242,234,0.5); }
  .btn-primary { color: #080808 !important; }
  .btn-outline { color: #F6F2EA !important; border-color: rgba(246,242,234,0.32) !important; }
  /* reveal band stays dark */
  #reveal-backdrop { background: #080808; }
  #reveal-backdrop-text { color: rgba(246,242,234,0.05); }
  #reveal-label { color: #F6F2EA; }


  .site-footer { background: #0A0A0A; border-top: 1px solid rgba(245,184,0,0.1); padding: 64px 60px 0; }
  .sf-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,241,236,0.07); }
  .sf-brand img { height: 56px; width: auto; margin-bottom: 20px; }
  .sf-about { font-size: 14px; line-height: 1.8; color: rgba(244,241,236,0.45); max-width: 340px; font-weight: 300; }
  .sf-social { display: flex; gap: 10px; margin-top: 22px; }
  .sf-social a { width: 38px; height: 38px; border: 1px solid rgba(244,241,236,0.14); display: flex; align-items: center; justify-content: center; transition: all .2s; }
  .sf-social a:hover { border-color: #F5B800; background: rgba(245,184,0,0.08); }
  .sf-social svg { width: 16px; height: 16px; stroke: rgba(244,241,236,0.6); fill: none; stroke-width: 1.6; }
  .sf-social a:hover svg { stroke: #F5B800; }
  .sf-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #F5B800; margin-bottom: 20px; }
  .sf-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .sf-links a { font-size: 14px; color: rgba(244,241,236,0.55); text-decoration: none; transition: color .2s; }
  .sf-links a:hover { color: #F5B800; }
  .sf-contact-item { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: rgba(244,241,236,0.55); margin-bottom: 15px; }
  .sf-contact-item svg { width: 15px; height: 15px; stroke: #F5B800; fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
  .sf-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 16px; }
  .sf-copy { font-size: 12px; color: rgba(244,241,236,0.3); }
  .sf-bottom-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .sf-legal { font-size: 12px; color: rgba(244,241,236,0.3); text-decoration: none; }
  .sf-legal:hover { color: #F5B800; }
  .sf-admin { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,241,236,0.4); text-decoration: none; border: 1px solid rgba(244,241,236,0.15); padding: 8px 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
  .sf-admin:hover { border-color: #F5B800; color: #F5B800; }
  .sf-admin svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  @media (max-width: 900px) { .site-footer { padding: 48px 20px 0; } .sf-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; } .sf-brand { grid-column: 1 / -1; } .sf-bottom { flex-direction: column; text-align: center; } }
  @media (max-width: 560px) {
    .site-footer { padding: 40px 18px 0; }
    .sf-top { grid-template-columns: 1fr 1fr; gap: 28px 16px; text-align: left; }
    .sf-about { max-width: none; font-size: 13px; }
    .sf-social { justify-content: flex-start; }
    .sf-col-title { font-size: 11px; margin-bottom: 14px; }
    .sf-links { gap: 9px; }
    .sf-links a, .sf-contact-item { font-size: 13px; }
    .sf-contact-item { justify-content: flex-start; text-align: left; margin-bottom: 12px; }
    .sf-bottom { text-align: center; padding-bottom: 12px; }
  }

  /* ── HERO ENHANCEMENTS ── */
  @keyframes kenburns { 0% { transform: scale(1) translateY(0); } 100% { transform: scale(1.14) translateY(-1.5%); } }
  .hero-bg { will-change: auto; }
  .hero-watermark { position: absolute; left: -2%; top: 50%; transform: translateY(-50%); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24vw; line-height: 0.8; color: rgba(245,184,0,0.03); letter-spacing: -0.02em; text-transform: uppercase; pointer-events: none; user-select: none; z-index: 0; white-space: nowrap; }
  #hero::after { content: none; }
  #hero > .hero-tag, #hero > .hero-headline, #hero > .hero-sub, #hero > .hero-actions { position: relative; z-index: 3; }
  .hero-scroll, .hero-stats { z-index: 3; }
  /* right-side visual: excavator centered on gold circle */
  .hero-visual { position: absolute; right: 0; top: 0; bottom: 0; width: 58%; z-index: 1; pointer-events: none; }
  .hero-circle { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 44vw; max-width: 680px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(245,184,0,0.85) 0%, rgba(245,184,0,0.48) 46%, rgba(245,184,0,0.12) 68%, transparent 76%); filter: blur(3px); }
  .hero-cutout { position: absolute; left: 50%; top: 52%; bottom: auto; transform: translate(-50%,-50%); width: 152%; max-width: 1400px; height: auto; object-fit: contain; filter: drop-shadow(0 34px 70px rgba(0,0,0,0.6)); }
  @keyframes circlePop { 0% { opacity: 0; transform: translate(-50%,-50%) scale(0.35); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
  @keyframes rigIn { 0% { opacity: 0; transform: translate(-50%,-50%) translateY(56px) scale(1.06); filter: blur(10px) drop-shadow(0 34px 70px rgba(0,0,0,0.6)); } 100% { opacity: 1; transform: translate(-50%,-50%) translateY(0) scale(1); filter: blur(0) drop-shadow(0 34px 70px rgba(0,0,0,0.6)); } }
  @keyframes rigFloat { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-12px); } }
  @keyframes revealUp { 0% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(24px); } 100% { opacity: 1; clip-path: inset(0 0 -12% 0); transform: translateY(0); } }
  /* feature badges */
  .hero-features { position: absolute; right: 48px; top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; gap: 28px; }
  .hf { display: flex; align-items: center; gap: 16px; justify-content: flex-end; text-align: right; padding: 12px 18px; background: rgba(11,11,11,0.6); backdrop-filter: blur(6px); border-right: 2px solid var(--gold); }
  .hf-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.05; color: var(--warm-white); text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
  .hf-icon { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; order: 2; }
  .hf-icon svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  /* mobile stat cards (hidden on desktop) */
  .hero-mstats { display: none; }
  @media (prefers-reduced-motion: no-preference) {
    .hero-circle { animation: circlePop 1s .2s cubic-bezier(.34,1.56,.64,1) both; }
    .hero-cutout { animation: rigIn 1.1s .45s cubic-bezier(.22,1,.36,1) both, rigFloat 7s 1.7s ease-in-out infinite; }
    .hf { animation: heroRise .7s both; }
    .hf:nth-child(1) { animation-delay: 1.0s; }
    .hf:nth-child(2) { animation-delay: 1.15s; }
    .hf:nth-child(3) { animation-delay: 1.3s; }
  }
  @media (max-width: 1200px) { .hero-features { display: none; } .hero-visual { width: 100%; opacity: 0.95; } }
  .hero-headline .gold { text-shadow: 0 0 70px rgba(245,184,0,0.35); }
  @keyframes heroRise { from { opacity: 0; transform: translateY(46px); } to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: no-preference) {
    .hero-tag { animation: heroRise .7s .10s both; }
    .hero-headline { animation: revealUp 1s .28s cubic-bezier(.22,1,.36,1) both; }
    .hero-sub { animation: heroRise .8s .6s both; }
    .hero-actions { animation: heroRise .8s .78s both; }
    .hero-stats { animation: heroRise .9s .95s both; }
  }

  /* ── AUTHORITATIVE MOBILE HERO OVERRIDES (placed last so they beat the desktop .hero-cutout/.hero-circle rules above) ── */
  @media (max-width: 900px) {
    .hero-circle { left: 78%; top: 35%; transform: translate(-50%,-50%); width: 60vw; max-width: 300px; }
    .hero-cutout { left: 50%; top: 35%; bottom: auto; transform: translate(-50%,-50%); width: auto; height: 60%; max-width: none; }
  }
/* ══ KIEMELT MUNKÁINK (főoldal) ══ */
#home-works { background: var(--dark); }
.hw-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.hw-all { display: inline-flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold) !important; text-decoration: none; border: 1px solid rgba(245,184,0,0.4); padding: 14px 26px; transition: .2s; }
.hw-all svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.hw-all:hover { background: rgba(245,184,0,0.08); }
.hw-all:hover svg { transform: translateX(4px); }
.hw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.hw-card { position: relative; display: block; aspect-ratio: 4/3.4; overflow: hidden; background: var(--dark2); text-decoration: none; color: var(--warm-white); }
.hw-img { position: absolute; inset: 0; }
.hw-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.8) saturate(.9); transition: transform .6s ease, filter .3s; }
.hw-card:hover .hw-img img { transform: scale(1.06); filter: brightness(.95) saturate(1); }
.hw-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.15) 55%, transparent 100%); }
.hw-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width .45s ease; }
.hw-card:hover::after { width: 100%; }
.hw-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 26px 24px; }
.hw-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.hw-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; text-transform: uppercase; line-height: 1.05; }
.hw-meta { margin-top: 8px; font-size: 12.5px; color: rgba(244,241,236,.55); display: flex; gap: 14px; }

/* ══ HOGYAN DOLGOZUNK (főoldal) ══ */
#home-steps { background: var(--black); }
.hs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.07); }
.hs-step { background: var(--dark2); padding: 44px 36px; border-top: 2px solid transparent; transition: border-color .3s, background .3s; }
.hs-step:hover { border-top-color: var(--gold); background: #1e1e1e; }
.hs-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 60px; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(245,184,0,0.5); margin-bottom: 20px; }
.hs-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; text-transform: uppercase; margin-bottom: 10px; }
.hs-desc { font-size: 14px; line-height: 1.75; color: rgba(244,241,236,0.5); }

/* ══ AJÁNLATKÉRÉS CTA (főoldal, űrlap nélkül) ══ */
#quote { display: block; background: var(--dark); }
.hq-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; max-width: 1160px; margin: 0 auto; }
a.quote-contact-item { text-decoration: none; color: rgba(244,241,236,0.6); transition: color .2s; }
a.quote-contact-item:hover { color: var(--gold); }
.hq-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); border-top: 3px solid var(--gold); padding: 44px 42px; }
.hq-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 30px; text-transform: uppercase; margin-bottom: 12px; }
.hq-card-text { font-size: 14.5px; line-height: 1.75; color: rgba(244,241,236,0.55); margin-bottom: 22px; }
.hq-list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hq-list li { position: relative; padding-left: 30px; font-size: 15px; color: rgba(244,241,236,0.75); }
.hq-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 1px solid var(--gold); color: var(--gold); font-size: 12px; display: flex; align-items: center; justify-content: center; }
.hq-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; width: 100%; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 3px; text-transform: uppercase; background: var(--gold); color: #0B0B0B !important; padding: 20px; text-decoration: none; transition: background .2s, transform .15s; }
.hq-btn:hover { background: #ffd233; transform: translateY(-2px); }
.hq-btn svg { width: 17px; height: 17px; stroke: #0B0B0B; fill: none; stroke-width: 2; }

@media (max-width: 900px) {
  .hw-grid { grid-template-columns: 1fr; }
  .hw-header { margin-bottom: 32px; }
  .hs-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .hq-inner { grid-template-columns: 1fr; gap: 40px; }
  .hq-card { padding: 32px 24px; }
}

/* ── A markoló kép csak betöltve jelenik meg, akkor indul az animáció ── */
.hero-cutout { opacity: 0; }
.hero-cutout.loaded { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-cutout { animation: none; }
  .hero-cutout.loaded { animation: rigIn .9s .05s cubic-bezier(.22,1,.36,1) both, rigFloat 7s 1.2s ease-in-out infinite; }
}

/* ── Admin-vezérelt banner (főoldal teteje, a nav alatt) ── */
.site-banner { position: absolute; top: 112px; left: 0; right: 0; z-index: 50; display: flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(90deg, #C99600, var(--gold) 30%, var(--gold) 70%, #C99600); color: #0B0B0B; text-decoration: none; padding: 12px 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; text-align: center; box-shadow: 0 8px 30px rgba(245,184,0,0.25); }
.site-banner svg { width: 17px; height: 17px; stroke: #0B0B0B; fill: none; stroke-width: 2.2; flex-shrink: 0; transition: transform .2s; }
a.site-banner:hover svg { transform: translateX(4px); }
a.site-banner:hover { filter: brightness(1.06); }
.sb-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 900px) {
  .site-banner { top: 84px; font-size: 12.5px; letter-spacing: 1.2px; padding: 10px 14px; }
  .sb-text { white-space: normal; line-height: 1.35; }
}
