  :root {
    --black: #0a0a0a;
    --steel-dark: #111318;
    --steel-mid: #1c2028;
    --steel-light: #2a2f3a;
    --orange: #e8560a;
    --orange-hot: #ff6b1a;
    --orange-glow: rgba(232,86,10,0.15);
    --white: #f0ece4;
    --grey: #6b7280;
    --grey-light: #9ca3af;
    --border: rgba(255,255,255,0.07);
  }

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

  html { scroll-behavior: smooth; }

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

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.2s;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.5;
  }

  /* NOISE 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: 1;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-color: var(--border);
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
  }
  .logo span { color: var(--orange); }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--grey-light);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: var(--black) !important;
    padding: 10px 24px;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--orange-hot) !important; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 100px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 40%, rgba(232,86,10,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 80% at 20% 80%, rgba(232,86,10,0.06) 0%, transparent 60%),
      linear-gradient(160deg, #0a0a0a 0%, #111318 50%, #0d0f13 100%);
  }

  /* Animated drill bit SVG */
  .hero-visual {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 620px;
    opacity: 0.18;
    animation: rotateSlowly 20s linear infinite;
  }

  @keyframes rotateSlowly {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
  }

  /* Diagonal accent line */
  .hero::after {
    content: '';
    position: absolute;
    top: 0; right: 320px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--orange) 30%, var(--orange) 70%, transparent 100%);
    opacity: 0.2;
  }

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

  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }
  .hero-tag::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--orange);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.4s forwards;
  }
  .hero-title .accent { color: var(--orange); }
  .hero-title .outline {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--grey-light);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
  }

  .btn-primary {
    background: var(--orange);
    color: var(--black);
    padding: 16px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: background 0.2s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover { background: var(--orange-hot); transform: translateY(-2px); }

  .btn-ghost {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s, gap 0.2s;
  }
  .btn-ghost:hover { color: var(--orange); gap: 16px; }
  .btn-ghost::after { content: '→'; font-size: 1.1rem; }

  .hero-stats {
    position: absolute;
    right: 60px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
    opacity: 0;
    animation: fadeLeft 0.9s ease 1s forwards;
  }
  .stat-item { text-align: right; }
  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: var(--orange);
    line-height: 1;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
  }

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

  /* MARQUEE STRIP */
  .marquee-strip {
    background: var(--orange);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 18s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--black);
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .marquee-item::after {
    content: '◆';
    font-size: 0.5rem;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION BASE */
  section { position: relative; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--orange); }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }

  /* SERVICES */
  .services {
    padding: 120px 60px;
    background: var(--steel-dark);
  }
  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }
  .services-header p {
    color: var(--grey-light);
    line-height: 1.8;
    font-size: 1rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--steel-mid);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    border-top: 2px solid transparent;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange-glow);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { background: var(--steel-light); }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover { border-top-color: var(--orange); }

  .service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--border);
    line-height: 1;
    position: absolute;
    top: 20px; right: 30px;
    transition: color 0.3s;
  }
  .service-card:hover .service-number { color: rgba(232,86,10,0.15); }

  .service-icon {
    width: 52px; height: 52px;
    margin-bottom: 28px;
  }
  .service-icon svg { width: 100%; height: 100%; }

  .service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .service-desc {
    color: var(--grey-light);
    font-size: 0.9rem;
    line-height: 1.75;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s, gap 0.2s;
  }
  .service-link::after { content: '→'; }
  .service-card:hover .service-link { opacity: 1; }
  .service-link:hover { gap: 14px; }

  /* WHY US */
  .why {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    background: var(--black);
  }
  .why-visual {
    position: relative;
    height: 500px;
  }
  .why-bg-block {
    position: absolute;
    top: 40px; left: 40px; right: -40px; bottom: -40px;
    background: var(--steel-mid);
    border: 1px solid var(--border);
  }
  .why-image-block {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1c2028 0%, #111318 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .why-image-block svg {
    width: 280px;
    opacity: 0.6;
  }
  .why-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--orange);
    color: var(--black);
    padding: 20px 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    z-index: 2;
  }
  .why-points {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .why-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }
  .why-point:last-child { border-bottom: none; }
  .point-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--orange);
    min-width: 40px;
    line-height: 1;
    margin-top: 4px;
  }
  .point-text strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
  }
  .point-text p {
    color: var(--grey-light);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* PRODUCTS SHOWCASE */
  .products {
    padding: 120px 60px;
    background: var(--steel-dark);
  }
  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .products-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
  }
  .product-card {
    background: var(--steel-mid);
    position: relative;
    overflow: hidden;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    transition: background 0.3s;
  }
  .product-card.featured {
    grid-row: span 2;
    min-height: 560px;
  }
  .product-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
  }
  .product-card-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
    transition: opacity 0.4s, transform 0.6s;
  }
  .product-card-bg svg { width: 70%; height: 70%; }
  .product-card:hover .product-card-bg { opacity: 0.25; transform: scale(1.1) rotate(5deg); }
  .product-card:hover { background: var(--steel-light); }

  .product-content { position: relative; z-index: 2; }
  .product-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
  }
  .product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
  }
  .product-card.featured .product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
  }

  /* CONTACT */
  .contact {
    padding: 120px 60px;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .contact-info h2 { margin-bottom: 24px; }
  .contact-info p {
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 48px;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border: 1px solid var(--border);
    background: var(--steel-dark);
    transition: border-color 0.2s;
  }
  .contact-item:hover { border-color: var(--orange); }
  .contact-item-icon {
    width: 40px; height: 40px;
    background: var(--orange-glow);
    border: 1px solid rgba(232,86,10,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 1.1rem;
  }
  .contact-item-text { font-size: 0.9rem; color: var(--grey-light); }
  .contact-item-text strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }

  /* FORM */
  .contact-form {
    background: var(--steel-dark);
    padding: 48px;
    border: 1px solid var(--border);
    position: relative;
  }
  .contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--orange-hot));
  }
  .form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--steel-mid);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--orange); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select option { background: var(--steel-mid); }

  .form-submit {
    width: 100%;
    background: var(--orange);
    color: var(--black);
    border: none;
    padding: 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.2s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--orange-hot); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--steel-dark);
    border-top: 1px solid var(--border);
    padding: 60px 60px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p { color: var(--grey); font-size: 0.82rem; }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

/* Скрыть пустую линию CF7 вверху формы */
.wpcf7 form .wpcf7-response-output, .hidden-fields-container {
  display: none;
}

/* Показывать только после отправки */
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  display: block;
}

/* Убрать верхнюю линию (border CF7) */
.wpcf7 {
  border: none !important;
  outline: none !important;
}

.wpcf7 form {
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .hero { padding: 0 24px 80px; }
    .hero-stats { display: none; }
    .hero-title { font-size: 4.5rem; }
    .services { padding: 80px 24px; }
    .services-header { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why { grid-template-columns: 1fr; padding: 80px 24px; }
    .why-visual { height: 300px; }
    .products { padding: 80px 24px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card.featured { grid-row: span 1; min-height: 280px; }
    .contact { grid-template-columns: 1fr; padding: 80px 24px; gap: 60px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 60px 24px 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }

  /* GALLERY */
  .gallery {
    padding: 120px 60px;
    background: var(--black);
  }
  .gallery-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }
  .gallery-header p {
    color: var(--grey-light);
    line-height: 1.8;
    font-size: 1rem;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .gallery-card {
    background: var(--steel-dark);
    overflow: hidden;
    position: relative;
    cursor: none;
  }
  .gallery-card:hover .gallery-img {
    transform: scale(1.06);
    filter: brightness(0.55) contrast(1.1) saturate(0.3) sepia(0.3);
  }
  .gallery-card:hover .gallery-img-overlay {
    opacity: 1;
  }
  .gallery-card:hover .gallery-hover-line {
    width: 100%;
  }
  .gallery-img-wrap {
    position: relative;
    overflow: hidden;
    height: 340px;
  }
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #1a1d24;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.85) contrast(1.05) saturate(0.5) sepia(0.15);
    padding: 20px;
    box-sizing: border-box;
  }
  .gallery-img-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, transparent 30%, rgba(10,10,10,0.7) 100%),
      radial-gradient(ellipse at 50% 50%, rgba(232,86,10,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }
  .gallery-img-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: rgba(232,86,10,0.15);
    line-height: 1;
    z-index: 2;
    transition: color 0.3s;
  }
  .gallery-card:hover .gallery-img-tag {
    color: rgba(232,86,10,0.5);
  }
  .gallery-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(to right, var(--orange), var(--orange-hot));
    transition: width 0.4s ease;
    z-index: 3;
  }
  .gallery-caption {
    padding: 28px 32px 32px;
    background: var(--steel-mid);
    border-top: 1px solid var(--border);
  }
  .gallery-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
  }
  .gallery-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--white);
  }
  .gallery-desc {
    font-size: 0.85rem;
    color: var(--grey-light);
    line-height: 1.65;
  }

  @media (max-width: 900px) {
    .gallery { padding: 80px 24px; }
    .gallery-header { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-img-wrap { height: 260px; }
  }


/* ── Contact Form 7 overrides ── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: var(--steel-mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: var(--orange);
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: var(--orange);
  font-size: 0.78rem;
  margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
}
.wpcf7-response-output {
  border: 1px solid var(--orange) !important;
  background: var(--orange-glow) !important;
  color: var(--white) !important;
  padding: 12px 18px !important;
  margin-top: 16px !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
}
.wpcf7-submit {
  width: 100%;
  background: var(--orange) !important;
  color: var(--black) !important;
  border: none !important;
  padding: 18px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)) !important;
  border-radius: 0 !important;
  margin-top: 8px !important;
}
.wpcf7-submit:hover {
  background: var(--orange-hot) !important;
  transform: translateY(-2px) !important;
}
.wpcf7 .ajax-loader {
  display: none !important;
}
