@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

/*
 * Global Metal — Industrial Premium 2026
 * Bright architectural system shared by every public page.
 */

:root {
    --accent-gold: #f58221 !important;
    --gm-orange: #f58221;
    --gm-orange-deep: #d96208;
    --gm-ink: #111315;
    --gm-ink-soft: #24282b;
    --gm-concrete: #f1f2f0;
    --gm-concrete-2: #e7e9e7;
    --gm-line: rgba(17, 19, 21, 0.12);
    --gm-muted: #646a6e;
    --gm-white: #ffffff;
    --gm-shadow: 0 28px 70px rgba(15, 18, 20, 0.11);
    --gm-radius: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    background: var(--gm-concrete);
}

body {
    margin: 0;
    color: var(--gm-ink);
    background:
        linear-gradient(90deg, transparent 0, transparent calc(50% - .5px), rgba(17, 19, 21, .028) 50%, transparent calc(50% + .5px)),
        var(--gm-concrete);
    font-family: "Rubik", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .34;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

::selection {
    color: #fff;
    background: var(--gm-orange);
}

a,
button,
.service-card,
.project-card,
.project-item,
.client-logo-card {
    -webkit-tap-highlight-color: transparent;
}

/* Header */
header {
    position: fixed !important;
    inset: 0 0 auto !important;
    width: 100% !important;
    z-index: 1000 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 19, 21, .08) !important;
    background: rgba(255, 255, 255, .88) !important;
    box-shadow: 0 8px 30px rgba(15, 18, 20, .045) !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease !important;
}

header.is-scrolled {
    background: rgba(255, 255, 255, .97) !important;
    box-shadow: 0 14px 42px rgba(15, 18, 20, .09) !important;
}

.header-container {
    width: min(1320px, calc(100% - 56px)) !important;
    max-width: 1320px !important;
    height: 86px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
}

.logo-link,
header > .header-container > a {
    position: relative;
    display: flex !important;
    align-items: center !important;
    min-width: 212px;
    height: 100% !important;
}

.logo-link::after,
header > .header-container > a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -1px;
    width: 58px;
    height: 3px;
    background: var(--gm-orange);
}

.logo-img {
    width: auto !important;
    max-width: 230px !important;
    max-height: 64px !important;
    filter: none !important;
    mix-blend-mode: multiply;
}

.main-nav ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(16px, 1.75vw, 30px) !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav {
    min-width: 0;
    margin-inline-start: auto;
}

.main-nav li {
    flex: 0 0 auto;
}

.main-nav li a {
    padding: 32px 0 27px !important;
    color: var(--gm-ink) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: .01em;
    opacity: .76;
    transition: color .25s ease, opacity .25s ease !important;
}

.main-nav li a::after {
    inset-inline-start: 0 !important;
    inset-inline-end: auto !important;
    bottom: 18px !important;
    width: 100% !important;
    height: 2px !important;
    background: var(--gm-orange) !important;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease !important;
}

.main-nav li a:hover,
.main-nav li a.active,
.main-nav li a:focus-visible {
    color: var(--gm-ink) !important;
    opacity: 1;
}

.main-nav li a:hover::after,
.main-nav li a.active::after,
.main-nav li a:focus-visible::after {
    transform: scaleX(1);
}

/* Home hero */
.hero-section {
    position: relative;
    min-height: 760px !important;
    height: min(940px, 100svh) !important;
    padding: 138px max(28px, calc((100vw - 1320px) / 2)) 76px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    isolation: isolate;
    background: #24282b !important;
}

.hero-section::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset-inline-start: max(28px, calc((100vw - 1320px) / 2));
    top: 86px;
    width: 1px;
    height: calc(100% - 86px);
    background: linear-gradient(180deg, rgba(245,130,33,.92), rgba(255,255,255,.18) 48%, transparent 92%);
    pointer-events: none;
}

.hero-background,
.hero-fallback,
.hero-video,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-fallback,
.hero-video {
    transform: scale(1.015);
    animation: gmHeroBreath 18s ease-in-out infinite alternate;
}

.hero-shade {
    z-index: 2 !important;
    background:
        linear-gradient(90deg, rgba(8, 10, 11, .80) 0%, rgba(8, 10, 11, .52) 44%, rgba(8, 10, 11, .12) 76%),
        linear-gradient(180deg, rgba(8, 10, 11, .12) 0%, rgba(8, 10, 11, .25) 58%, rgba(8, 10, 11, .72) 100%) !important;
}

[dir="rtl"] .hero-shade {
    background:
        linear-gradient(270deg, rgba(8, 10, 11, .80) 0%, rgba(8, 10, 11, .52) 44%, rgba(8, 10, 11, .12) 76%),
        linear-gradient(180deg, rgba(8, 10, 11, .12) 0%, rgba(8, 10, 11, .25) 58%, rgba(8, 10, 11, .72) 100%) !important;
}

.hero-content {
    position: relative;
    z-index: 4 !important;
    width: min(1320px, 100%) !important;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: start !important;
}

.gm-kicker,
.gm-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--gm-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.gm-kicker::before,
.gm-section-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: currentColor;
}

.hero-section .gm-kicker {
    color: #ff9b4b;
    text-shadow: 0 2px 20px rgba(0,0,0,.28);
}

.hero-section h1 {
    width: min(930px, 92%);
    margin: 0 0 24px !important;
    color: #fff !important;
    font-size: clamp(56px, 6.6vw, 104px) !important;
    line-height: .98 !important;
    font-weight: 800 !important;
    letter-spacing: -.055em;
    text-align: start !important;
    text-wrap: balance;
    text-shadow: 0 15px 45px rgba(0,0,0,.28) !important;
}

.hero-section p {
    width: min(710px, 88%);
    max-width: 710px !important;
    margin: 0 0 34px !important;
    color: rgba(255,255,255,.84) !important;
    font-size: clamp(18px, 1.55vw, 23px) !important;
    line-height: 1.72 !important;
    text-align: start !important;
}

.gm-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-button,
.gm-secondary-cta {
    min-height: 58px;
    margin: 0 !important;
    padding: 0 28px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid transparent;
    border-radius: 4px !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    text-decoration: none;
    box-shadow: none !important;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease !important;
}

.cta-button {
    color: #111 !important;
    background: var(--gm-orange) !important;
}

.cta-button::after {
    content: "↗";
    font-size: 19px;
    line-height: 1;
}

[dir="rtl"] .cta-button::after { transform: scaleX(-1); }

.gm-secondary-cta {
    color: #fff;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.cta-button:hover,
.gm-secondary-cta:hover {
    transform: translateY(-3px) !important;
}

.cta-button:hover { background: #ff9947 !important; }
.gm-secondary-cta:hover { border-color: #fff; background: rgba(255,255,255,.15); }

.gm-hero-meta {
    position: absolute;
    inset-inline-start: 0;
    bottom: -118px;
    display: flex;
    gap: 28px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.gm-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.gm-hero-meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gm-orange);
    box-shadow: 0 0 0 5px rgba(245,130,33,.14);
}

.hero-media-control {
    inset-inline-end: max(28px, calc((100vw - 1320px) / 2)) !important;
    bottom: 42px !important;
    width: 52px !important;
    height: 52px !important;
    border-color: rgba(255,255,255,.5) !important;
    border-radius: 50% !important;
    background: rgba(13,15,16,.44) !important;
}

.hero-media-control:hover { color: #111 !important; background: var(--gm-orange) !important; }

.gm-scroll-cue {
    position: absolute;
    z-index: 4;
    inset-inline-end: max(95px, calc((100vw - 1190px) / 2));
    bottom: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gm-scroll-cue::after {
    content: "";
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, currentColor, transparent);
}

@keyframes gmHeroBreath {
    from { transform: scale(1.015); }
    to { transform: scale(1.075); }
}

/* Moving capability rail */
.gm-capability-rail {
    position: relative;
    z-index: 8;
    overflow: hidden;
    color: #fff;
    background: var(--gm-orange);
    border-block: 1px solid rgba(0,0,0,.07);
}

.gm-capability-track {
    width: max-content;
    min-width: 200%;
    height: 62px;
    display: flex;
    align-items: center;
    gap: 42px;
    padding-inline: 21px;
    animation: gmRail 30s linear infinite;
}

.gm-capability-track span {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    color: #181818;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    white-space: nowrap;
}

.gm-capability-track span::after {
    content: "◆";
    color: rgba(17,19,21,.36);
    font-size: 8px;
}

@keyframes gmRail {
    to { transform: translateX(-50%); }
}

[dir="rtl"] .gm-capability-track { animation-direction: reverse; }

/* Shared sections */
.about-section,
.services-section,
.clients-section,
.projects-section,
.about-section-page,
.service-content,
.service-details,
.project-details,
.gallery-grid {
    position: relative;
}

.about-section,
.services-section,
.clients-section,
.projects-section {
    padding: 128px 28px !important;
}

.about-section {
    overflow: hidden;
    color: var(--gm-ink) !important;
    background: #fff !important;
    text-align: start !important;
}

.about-section::after {
    content: "GLOBAL METAL";
    position: absolute;
    inset-inline-end: -20px;
    bottom: -47px;
    color: rgba(17,19,21,.035);
    font-size: clamp(88px, 14vw, 240px);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.gm-about-shell {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(52px, 7vw, 110px);
}

[dir="ltr"] .gm-about-shell { grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr); }

.gm-about-copy {
    max-width: 610px;
}

.about-section .section-title,
.services-section .section-title,
.clients-section .section-title,
.projects-section .section-title {
    margin: 0 0 28px !important;
    color: var(--gm-ink) !important;
    font-size: clamp(38px, 4.6vw, 68px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.045em;
    text-align: start !important;
}

.section-title::after { display: none !important; }

.about-content {
    max-width: 620px !important;
    margin: 0 !important;
    color: var(--gm-muted) !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
    text-align: start !important;
}

.about-content strong { color: var(--gm-ink); }

.gm-about-visual {
    position: relative;
    min-height: 590px;
}

.gm-about-main-image,
.gm-about-detail-image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    background: #d8dcda;
    box-shadow: var(--gm-shadow);
}

.gm-about-main-image {
    inset: 0 0 42px 84px;
    border-radius: 2px 54px 2px 2px;
}

[dir="ltr"] .gm-about-main-image { inset: 0 84px 42px 0; border-radius: 54px 2px 2px 2px; }

.gm-about-detail-image {
    inset: auto auto 0 0;
    width: 45%;
    height: 42%;
    border: 10px solid #fff;
    border-radius: 2px;
}

[dir="ltr"] .gm-about-detail-image { inset: auto 0 0 auto; }

.gm-about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
}

.gm-about-visual:hover img { transform: scale(1.045); }

.gm-standard-badge {
    position: absolute;
    z-index: 2;
    inset-inline-end: -18px;
    bottom: 4px;
    width: 170px;
    min-height: 170px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: var(--gm-ink);
    box-shadow: 0 25px 60px rgba(14,16,18,.24);
}

.gm-standard-badge b {
    color: var(--gm-orange);
    font-size: 34px;
    line-height: 1;
}

.gm-standard-badge span {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
}

/* Services */
.services-section {
    overflow: hidden;
    color: var(--gm-ink) !important;
    background:
        radial-gradient(circle at 8% 10%, rgba(245,130,33,.11), transparent 26%),
        linear-gradient(135deg, #eceeec 0%, #f7f8f7 58%, #e8eae8 100%) !important;
}

.services-section > .section-title,
.services-section > .gm-section-kicker,
.clients-section > .section-title,
.clients-section > .gm-section-kicker,
.clients-intro,
.projects-section > .section-title,
.projects-section > .gm-section-kicker {
    width: min(1260px, 100%);
    margin-inline: auto !important;
}

.services-grid {
    width: min(1260px, 100%);
    max-width: 1260px !important;
    margin: 62px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.service-card {
    position: relative;
    min-height: 390px;
    padding: 44px 38px 38px !important;
    overflow: hidden;
    color: var(--gm-ink) !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(17,19,21,.08) !important;
    border-radius: var(--gm-radius) !important;
    box-shadow: 0 12px 36px rgba(20,23,25,.055) !important;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), background .4s ease, box-shadow .4s ease !important;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        linear-gradient(180deg, transparent 38%, rgba(17,19,21,.92) 100%),
        var(--gm-service-image, none) center / cover;
    transition: opacity .45s ease;
}

.service-card:nth-child(1) { --gm-service-image: url("DJI_0203.jpg"); }
.service-card:nth-child(2) { --gm-service-image: url("bgu-main.jpg"); }
.service-card:nth-child(3) { --gm-service-image: url("rakevet101.jpg"); }

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-10px) !important;
    background: #fff !important;
    box-shadow: 0 32px 72px rgba(20,23,25,.16) !important;
}

.service-card:hover::before,
.service-card:focus-within::before { opacity: 1; }

.service-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    margin: 0 0 72px !important;
    display: grid;
    place-items: center;
    border: 1px solid rgba(17,19,21,.14);
    border-radius: 50%;
    color: transparent !important;
    font-size: 0 !important;
    transition: border-color .35s ease, background .35s ease;
}

.service-icon::after {
    color: var(--gm-orange);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
}

.service-card:nth-child(1) .service-icon::after { content: "01"; }
.service-card:nth-child(2) .service-icon::after { content: "02"; }
.service-card:nth-child(3) .service-icon::after { content: "03"; }

.service-card h3,
.service-card p,
.gm-service-arrow {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin: 0 0 16px !important;
    color: var(--gm-ink) !important;
    font-size: clamp(23px, 2.1vw, 30px) !important;
    letter-spacing: -.03em;
    transition: color .35s ease;
}

.service-card p {
    margin: 0 !important;
    color: var(--gm-muted) !important;
    font-size: 15px;
    line-height: 1.75;
    transition: color .35s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:focus-within h3,
.service-card:focus-within p { color: #fff !important; }

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
    border-color: var(--gm-orange);
    background: var(--gm-orange);
}

.service-card:hover .service-icon::after,
.service-card:focus-within .service-icon::after { color: #111; }

.gm-service-arrow {
    position: absolute;
    inset-inline-end: 32px;
    top: 42px;
    color: var(--gm-ink);
    font-size: 28px;
    transition: color .35s ease, transform .35s ease;
}

[dir="rtl"] .gm-service-arrow { transform: scaleX(-1); }
.service-card:hover .gm-service-arrow { color: #fff; transform: translate(4px,-4px); }
[dir="rtl"] .service-card:hover .gm-service-arrow { transform: scaleX(-1) translate(4px,-4px); }

/* Clients */
.clients-section {
    overflow: hidden;
    color: var(--gm-ink) !important;
    background: #fff !important;
    text-align: start !important;
}

.clients-intro {
    max-width: 1260px !important;
    margin-top: -12px !important;
    margin-bottom: 52px !important;
    color: var(--gm-muted) !important;
    font-size: 18px !important;
    text-align: start !important;
}

.gm-clients-window {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-grid {
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 0 30px !important;
    display: flex !important;
    gap: 16px !important;
    list-style: none;
    animation: gmClients 36s linear infinite;
}

.clients-grid:hover { animation-play-state: paused; }

.client-logo-card {
    width: 220px;
    min-width: 220px;
    min-height: 130px !important;
    padding: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9f8 !important;
    border: 1px solid rgba(17,19,21,.09) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    filter: grayscale(1);
    opacity: .68;
    transition: transform .3s ease, filter .3s ease, opacity .3s ease, border-color .3s ease !important;
}

.client-logo-card:hover {
    transform: translateY(-6px) !important;
    filter: grayscale(0);
    opacity: 1;
    border-color: rgba(245,130,33,.5) !important;
    box-shadow: 0 16px 34px rgba(20,23,25,.09) !important;
}

.client-logo-card img { max-width: 160px !important; max-height: 76px !important; }

@keyframes gmClients { to { transform: translateX(-50%); } }
[dir="rtl"] .clients-grid { animation-direction: reverse; }

/* Projects */
.projects-section {
    overflow: hidden;
    color: var(--gm-ink) !important;
    background:
        linear-gradient(rgba(17,19,21,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,19,21,.035) 1px, transparent 1px),
        var(--gm-concrete) !important;
    background-size: 56px 56px !important;
}

.projects-grid {
    width: min(1260px, 100%);
    max-width: 1260px !important;
    margin: 62px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.project-card {
    grid-column: span 6;
    min-height: 430px !important;
    height: 430px !important;
    padding: 32px !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 28px 4px 28px 4px !important;
    box-shadow: 0 18px 46px rgba(16,19,21,.12);
    background-size: cover !important;
    background-position: center !important;
    transform: translateZ(0);
    transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease !important;
}

a.project-card,
a.project-card:link,
a.project-card:visited,
a.project-card:hover,
a.project-card:active,
a.project-card:focus-visible {
    color: inherit !important;
    text-decoration: none !important;
}

.project-card:nth-child(1),
.project-card:nth-child(5n + 1) {
    grid-column: span 7;
    min-height: 520px !important;
    height: 520px !important;
}

.project-card:nth-child(2),
.project-card:nth-child(5n + 2) {
    grid-column: span 5;
    min-height: 520px !important;
    height: 520px !important;
}

.project-card::before {
    inset: 0 !important;
    background: linear-gradient(180deg, transparent 28%, rgba(8,10,11,.18) 58%, rgba(8,10,11,.92) 100%) !important;
    transition: background .45s ease;
}

.project-card::after {
    content: "↗";
    position: absolute;
    z-index: 2;
    inset-inline-end: 28px;
    top: 28px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #111;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    font-size: 21px;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease, background .35s ease;
}

[dir="rtl"] .project-card::after { content: "↖"; }

.project-card:hover {
    transform: translateY(-8px) scale(1.005) !important;
    box-shadow: 0 32px 72px rgba(16,19,21,.22) !important;
}

.project-card:hover::after { transform: translateY(0); opacity: 1; background: var(--gm-orange); }

.project-info { position: relative; z-index: 2; text-align: start !important; }

.project-info h3 {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(25px, 2.4vw, 36px) !important;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.project-info p {
    margin: 0 !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 15px !important;
}

.project-info p::before {
    content: "";
    width: 24px;
    height: 2px;
    margin-inline-end: 10px;
    display: inline-block;
    vertical-align: middle;
    background: var(--gm-orange);
}

.projects-empty-state { grid-column: 1 / -1; color: var(--gm-muted); text-align: center; }

/* Inner-page hero */
.page-hero,
.project-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 0 !important;
    min-height: 620px !important;
    padding: 180px max(28px, calc((100vw - 1260px) / 2)) 96px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    text-align: start !important;
    background-attachment: scroll !important;
    background-position: center !important;
}

.page-hero {
    flex-direction: column !important;
    align-items: flex-start !important;
}

body[data-project-category="cladding"] .page-hero {
    background-image: url("DJI_0203.jpg") !important;
}

body[data-project-category="curtain-walls"] .page-hero {
    background-image: url("bgu-main.jpg") !important;
}

body[data-project-category="combined-works"] .page-hero,
body[data-project-category="metal-works"] .page-hero,
body[data-project-category="stainless-glass"] .page-hero {
    background-image: url("rakevet101.jpg") !important;
}

body:not([data-project-category]) .page-hero {
    background-image: url("DJI_0189.jpg") !important;
}

.page-hero::before,
.project-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,10,11,.08), rgba(8,10,11,.82)),
        linear-gradient(90deg, rgba(8,10,11,.56), transparent 65%);
}

.page-hero > *,
.project-hero > * {
    position: relative;
    z-index: 1;
}

[dir="rtl"] .page-hero::before,
[dir="rtl"] .project-hero::before {
    background:
        linear-gradient(180deg, rgba(8,10,11,.08), rgba(8,10,11,.82)),
        linear-gradient(270deg, rgba(8,10,11,.56), transparent 65%);
}

.page-hero > div,
.project-hero > div {
    width: min(1260px, 100%);
    margin: 0 auto;
}

.page-hero h1,
.project-hero h1 {
    max-width: 940px;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(54px, 7.2vw, 104px) !important;
    line-height: 1 !important;
    letter-spacing: -.055em;
    text-shadow: 0 12px 38px rgba(0,0,0,.28) !important;
}

.page-hero p,
.project-hero p {
    max-width: 720px;
    margin: 22px 0 0 !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 20px !important;
    line-height: 1.7;
}

.service-details,
.about-section-page,
.project-details {
    color: var(--gm-ink) !important;
    background: #fff !important;
}

.service-details,
.about-section-page,
.project-details {
    padding: 112px 28px !important;
}

.service-content {
    max-width: 1040px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    color: var(--gm-ink) !important;
    background: transparent !important;
}

.service-content > *,
.service-details > *,
.about-content-wrapper,
.project-details > * {
    max-width: 1040px !important;
}

.about-content-wrapper,
.project-details > * {
    margin-inline: auto !important;
}

.service-content h2,
.service-details h2,
.about-content-wrapper h2,
.project-details h2 {
    color: var(--gm-ink) !important;
    font-size: clamp(36px, 4.2vw, 60px) !important;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.service-content p,
.service-details p,
.about-content-wrapper p,
.project-details p {
    color: var(--gm-muted) !important;
    font-size: 18px !important;
    line-height: 1.92 !important;
}

.service-details ul,
.about-content-wrapper ul {
    color: var(--gm-ink-soft) !important;
}

.service-details li,
.about-content-wrapper li {
    margin-block: 12px;
}

/* Category project cards */
body:not([data-project-category="home"]) .projects-section {
    background: var(--gm-concrete) !important;
}

.project-item {
    grid-column: span 4;
    overflow: hidden;
    color: var(--gm-ink) !important;
    background: #fff !important;
    border: 1px solid rgba(17,19,21,.08) !important;
    border-radius: 22px 3px 22px 3px !important;
    box-shadow: 0 14px 38px rgba(17,19,21,.07) !important;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease !important;
}

.project-item:hover {
    transform: translateY(-9px) !important;
    box-shadow: 0 28px 56px rgba(17,19,21,.14) !important;
}

.project-img-box {
    height: 310px !important;
    overflow: hidden;
    border-radius: 0 !important;
    background-size: cover !important;
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.project-item:hover .project-img-box { transform: scale(1.025); }

.project-item .project-info {
    padding: 27px 26px 30px !important;
    background: #fff;
}

.project-item .project-info h3 {
    color: var(--gm-ink) !important;
    font-size: 24px !important;
}

.project-item .project-info p {
    color: var(--gm-muted) !important;
}

/* Dynamic project gallery */
.project-details {
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.gallery-grid {
    max-width: none !important;
    margin: 0 !important;
    padding: 32px max(28px, calc((100vw - 1260px) / 2)) 132px !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 20px !important;
    background: var(--gm-concrete) !important;
}

.gallery-grid > * {
    grid-column: span 6;
    min-height: 440px;
    overflow: hidden;
    border: 0 !important;
    border-radius: 22px 3px 22px 3px !important;
    box-shadow: 0 16px 40px rgba(17,19,21,.10) !important;
}

.gallery-grid > *:nth-child(3n + 1) { grid-column: span 7; }
.gallery-grid > *:nth-child(3n + 2) { grid-column: span 5; }

.gallery-grid img,
.gallery-grid video { width: 100%; height: 100%; object-fit: cover; }

.modal { backdrop-filter: blur(18px) !important; background: rgba(8,10,11,.9) !important; }
.gallery-play-icon { color: #111 !important; background: var(--gm-orange) !important; }

/* Footer */
footer {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 104px 28px 40px !important;
    color: #fff !important;
    background:
        radial-gradient(circle at 82% 0%, rgba(245,130,33,.16), transparent 30%),
        #111315 !important;
    border: 0 !important;
}

footer::before {
    content: "";
    position: absolute;
    inset-inline-start: max(28px, calc((100vw - 1260px) / 2));
    top: 0;
    width: 94px;
    height: 5px;
    background: var(--gm-orange);
}

.footer-content {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    max-width: 1260px !important;
    margin: 0 auto 74px !important;
    display: grid !important;
    grid-template-columns: 1.25fr .75fr;
    justify-content: initial !important;
    gap: clamp(50px, 9vw, 140px) !important;
    text-align: start !important;
}

.footer-col h4 {
    margin: 0 0 22px !important;
    color: #fff !important;
    font-size: clamp(27px, 3vw, 42px) !important;
    letter-spacing: -.035em;
}

.footer-col p {
    margin: 12px 0 !important;
    color: rgba(255,255,255,.62) !important;
    font-size: 15px !important;
}

.footer-col p b { color: #fff !important; }

.footer-bottom {
    width: min(1260px, 100%);
    margin: 0 auto;
    padding-top: 25px !important;
    color: rgba(255,255,255,.38) !important;
    border-top-color: rgba(255,255,255,.10) !important;
    text-align: start !important;
}

/* Reveal motion */
.gm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

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

.gm-stagger > .gm-reveal:nth-child(2) { transition-delay: .08s; }
.gm-stagger > .gm-reveal:nth-child(3) { transition-delay: .16s; }
.gm-stagger > .gm-reveal:nth-child(4) { transition-delay: .24s; }
.gm-stagger > .gm-reveal:nth-child(5) { transition-delay: .32s; }

/* Tablet */
@media (max-width: 1100px) {
    .header-container { width: calc(100% - 32px) !important; }
    .main-nav ul { gap: 14px !important; }
    .main-nav li a { font-size: 13px !important; }
    .gm-about-shell { grid-template-columns: 1fr 1fr; gap: 44px; }
    .gm-about-visual { min-height: 500px; }
    .project-card,
    .project-card:nth-child(n) { grid-column: span 6; height: 440px !important; min-height: 440px !important; }
    .project-item { grid-column: span 6; }
}

/* Mobile */
@media (max-width: 900px) {
    html { scroll-padding-top: 74px; }

    header { min-height: 72px !important; }
    header .header-container { width: 100% !important; height: 72px !important; padding: 0 16px !important; }
    header .logo-link,
    header > .header-container > a { min-width: 0; }
    header .logo-link::after,
    header > .header-container > a::after { width: 38px; }
    header .logo-img { max-width: min(56vw, 198px) !important; max-height: 54px !important; }

    .gm-mobile-menu-toggle {
        width: 46px !important;
        height: 46px !important;
        border: 1px solid rgba(17,19,21,.1) !important;
        border-radius: 50% !important;
        background: #f4f5f3 !important;
    }

    header .main-nav {
        top: 78px !important;
        inset-inline: 12px !important;
        padding: 10px !important;
        border-color: rgba(17,19,21,.08) !important;
        border-radius: 18px !important;
        background: rgba(255,255,255,.98) !important;
        box-shadow: 0 24px 65px rgba(17,19,21,.17) !important;
    }

    header .main-nav li + li { border-top-color: rgba(17,19,21,.07) !important; }
    header .main-nav a { min-height: 52px; padding: 13px 14px !important; border-radius: 10px; }
    header .main-nav a.active { color: var(--gm-orange-deep) !important; background: rgba(245,130,33,.10) !important; }

    .hero-section {
        min-height: 760px !important;
        height: 100svh !important;
        padding: 120px 22px 76px !important;
        align-items: flex-end !important;
    }

    .hero-section::before { inset-inline-start: 22px; top: 72px; }
    .hero-content { width: 100% !important; }
    .hero-section .gm-kicker { margin-bottom: 18px; font-size: 10px; letter-spacing: .12em; }
    .hero-section h1 { width: 100%; font-size: clamp(44px, 14vw, 66px) !important; line-height: 1.02 !important; }
    .hero-section p { width: 100%; margin-bottom: 26px !important; font-size: 17px !important; line-height: 1.6 !important; }
    .gm-hero-actions { width: 100%; }
    .cta-button,
    .gm-secondary-cta { min-height: 54px; padding: 0 22px !important; font-size: 14px !important; }
    .gm-hero-meta { position: static; margin-top: 30px; flex-wrap: wrap; gap: 13px 22px; font-size: 10px; }
    .gm-scroll-cue { display: none; }
    .hero-media-control { inset-inline-end: 20px !important; bottom: 20px !important; width: 46px !important; height: 46px !important; }

    .gm-capability-track { height: 54px; gap: 28px; }
    .gm-capability-track span { gap: 28px; font-size: 11px; }

    .about-section,
    .services-section,
    .clients-section,
    .projects-section { padding: 86px 20px !important; }

    .gm-about-shell { display: flex; flex-direction: column; gap: 50px; }
    .gm-about-copy { max-width: none; }
    .about-section .section-title,
    .services-section .section-title,
    .clients-section .section-title,
    .projects-section .section-title { font-size: clamp(36px, 11vw, 50px) !important; }
    .about-content { font-size: 16px !important; line-height: 1.85 !important; }
    .gm-about-visual { width: 100%; min-height: 440px; }
    .gm-about-main-image { inset: 0 24px 36px 0; border-radius: 2px 34px 2px 2px; }
    [dir="ltr"] .gm-about-main-image { inset: 0 0 36px 24px; border-radius: 34px 2px 2px 2px; }
    .gm-about-detail-image { width: 48%; height: 38%; border-width: 7px; }
    .gm-standard-badge { inset-inline-end: 0; width: 142px; min-height: 142px; padding: 20px; }
    .gm-standard-badge b { font-size: 28px; }

    .services-grid { margin-top: 42px !important; grid-template-columns: 1fr !important; }
    .service-card { min-height: 330px; padding: 32px 27px !important; }
    .service-icon { margin-bottom: 54px !important; }
    .gm-service-arrow { inset-inline-end: 27px; top: 32px; }

    .clients-intro { margin-bottom: 34px !important; font-size: 16px !important; }
    .gm-clients-window { -webkit-mask-image: none; mask-image: none; }
    .client-logo-card { width: 176px; min-width: 176px; min-height: 108px !important; }

    .projects-grid { margin-top: 42px !important; grid-template-columns: 1fr !important; gap: 16px !important; }
    .project-card,
    .project-card:nth-child(n),
    .project-item { grid-column: 1 !important; min-height: 380px !important; height: 380px !important; border-radius: 22px 3px 22px 3px !important; }
    .project-card { padding: 24px !important; }
    .project-card::after { width: 46px; height: 46px; top: 20px; inset-inline-end: 20px; opacity: 1; transform: none; }
    .project-item { height: auto !important; }
    .project-img-box { height: 270px !important; }

    .page-hero,
    .project-hero { min-height: 570px !important; padding: 146px 20px 70px !important; }
    .page-hero h1,
    .project-hero h1 { font-size: clamp(48px, 14vw, 68px) !important; }
    .page-hero p,
    .project-hero p { font-size: 17px !important; }
    .service-details,
    .about-section-page,
    .project-details { padding: 82px 20px !important; }
    .service-content p,
    .service-details p,
    .about-content-wrapper p,
    .project-details p { font-size: 16px !important; }

    .gallery-grid { padding: 18px 18px 88px !important; grid-template-columns: 1fr !important; }
    .gallery-grid > *,
    .gallery-grid > *:nth-child(n) { grid-column: 1 !important; min-height: 340px; }

    footer { padding: 82px 20px 32px !important; }
    .footer-content { grid-template-columns: 1fr !important; gap: 44px !important; margin-bottom: 52px !important; }
}

@media (max-width: 520px) {
    .gm-hero-actions { align-items: stretch; }
    .cta-button,
    .gm-secondary-cta { flex: 1 1 100%; }
    .gm-hero-meta { max-width: 290px; }
    .gm-about-visual { min-height: 370px; }
    .gm-standard-badge { width: 126px; min-height: 126px; }
    .client-logo-card { width: 156px; min-width: 156px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .gm-reveal { opacity: 1; transform: none; }
}

/* ========================================================================== 
   Global Metal — Unified Light System v2
   One visual language for every Hebrew/English public template.
   ========================================================================== */

:root {
    --gm-bg: #f5f6f4;
    --gm-surface: #ffffff;
    --gm-surface-soft: #ecefec;
    --gm-surface-warm: #fff8f1;
    --gm-text: #171a1c;
    --gm-text-soft: #5c6367;
    --gm-border: rgba(23, 26, 28, .11);
    --gm-orange-soft: rgba(245, 130, 33, .12);
    --gm-orange-line: rgba(245, 130, 33, .38);
    --gm-shadow-soft: 0 18px 54px rgba(30, 36, 39, .08);
    --gm-shadow-card: 0 22px 64px rgba(30, 36, 39, .11);
    --gm-font-he: "Heebo", Arial, sans-serif;
    --gm-font-en: "Inter", Arial, sans-serif;
}

html,
body {
    color: var(--gm-text) !important;
    background: var(--gm-bg) !important;
}

body,
body * {
    font-family: var(--gm-font-he) !important;
}

html[lang="en"] body,
html[lang="en"] body * {
    font-family: var(--gm-font-en) !important;
}

body {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.section-title,
.project-info h3 {
    color: var(--gm-text) !important;
    font-weight: 800 !important;
    letter-spacing: -.035em !important;
}

html[lang="he"] h1,
html[lang="he"] h2,
html[lang="he"] h3,
html[lang="he"] h4 {
    letter-spacing: -.02em !important;
}

p,
li {
    color: var(--gm-text-soft);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(245, 130, 33, .68) !important;
    outline-offset: 4px !important;
}

/* Unified light navigation and logo lockup */
header {
    min-height: 82px !important;
    background: rgba(250, 251, 249, .92) !important;
    border-bottom: 1px solid rgba(23, 26, 28, .09) !important;
    box-shadow: 0 10px 34px rgba(24, 30, 33, .07) !important;
}

header.is-scrolled {
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 14px 42px rgba(24, 30, 33, .11) !important;
}

header .header-container {
    width: min(1320px, calc(100% - 48px)) !important;
    height: 82px !important;
    gap: 30px !important;
}

header .logo-link,
header > .header-container > a {
    min-width: 252px !important;
    width: 252px !important;
    height: 66px !important;
    padding: 6px 11px 6px 14px !important;
    box-sizing: border-box !important;
    overflow: hidden;
    border: 1px solid rgba(23, 26, 28, .08);
    border-inline-start: 4px solid var(--gm-orange);
    border-radius: 14px 3px 14px 3px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 26, 28, .055);
}

header .logo-link::after,
header > .header-container > a::after {
    display: none !important;
}

header .logo-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.main-nav li a {
    color: #353a3d !important;
    font-size: 14px !important;
    font-weight: 650 !important;
}

.main-nav li a:hover,
.main-nav li a.active {
    color: var(--gm-orange-deep) !important;
}

/* Bright cinematic home hero */
.hero-section {
    min-height: 760px !important;
    height: min(900px, 100svh) !important;
    padding-top: 128px !important;
    background: #dfe3e1 !important;
}

.hero-shade,
[dir="rtl"] .hero-shade {
    background:
        linear-gradient(180deg, rgba(245, 247, 245, .14) 0%, rgba(245, 247, 245, .06) 58%, rgba(245, 247, 245, .32) 100%),
        linear-gradient(90deg, rgba(245, 247, 245, .26), rgba(245, 247, 245, .04)) !important;
}

.hero-content {
    width: min(720px, 100%) !important;
    margin-inline-end: auto !important;
    padding: clamp(30px, 4vw, 54px) !important;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-inline-start: 5px solid var(--gm-orange);
    border-radius: 28px 5px 28px 5px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 30px 90px rgba(19, 25, 28, .16);
    backdrop-filter: blur(22px) saturate(125%);
}

.hero-section::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.hero-section .gm-kicker,
.hero-section h1,
.hero-section p,
.gm-hero-meta {
    text-shadow: none !important;
}

.hero-section .gm-kicker {
    display: none !important;
}

.hero-section h1 {
    width: 100% !important;
    color: var(--gm-text) !important;
    font-size: clamp(48px, 5.7vw, 82px) !important;
    line-height: 1.02 !important;
}

.hero-section p {
    width: 100% !important;
    color: #4e565a !important;
    font-size: clamp(17px, 1.35vw, 21px) !important;
    line-height: 1.72 !important;
}

.cta-button {
    color: #151718 !important;
    background: var(--gm-orange) !important;
    border-color: var(--gm-orange) !important;
    box-shadow: 0 12px 28px rgba(245, 130, 33, .2) !important;
}

.gm-secondary-cta {
    color: var(--gm-text) !important;
    background: rgba(255, 255, 255, .75) !important;
    border-color: rgba(23, 26, 28, .2) !important;
}

.gm-secondary-cta:hover {
    color: var(--gm-text) !important;
    background: #fff !important;
    border-color: rgba(23, 26, 28, .4) !important;
}

.gm-hero-meta {
    position: static !important;
    margin-top: 30px;
    color: #5f6669 !important;
}

.gm-scroll-cue {
    color: #323739 !important;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(12px);
}

.hero-media-control {
    color: #171a1c !important;
    border-color: rgba(23, 26, 28, .18) !important;
    background: rgba(255, 255, 255, .88) !important;
    box-shadow: 0 12px 34px rgba(23, 26, 28, .13) !important;
}

/* Refined activity rail */
.gm-capability-rail {
    color: var(--gm-text) !important;
    background: #fff !important;
    border-block-color: var(--gm-orange-line) !important;
    box-shadow: 0 10px 30px rgba(23, 26, 28, .055);
}

.gm-capability-track span {
    color: #2e3336 !important;
}

.gm-capability-track span::after {
    color: var(--gm-orange) !important;
}

/* One light section rhythm across the site */
.about-section,
.clients-section,
.about-section-page,
.service-content,
.service-details,
.project-details,
.gallery-section,
.page-status {
    color: var(--gm-text) !important;
    background: var(--gm-surface) !important;
}

.services-section,
.projects-section,
body:not([data-project-category="home"]) .projects-section,
.gallery-grid {
    color: var(--gm-text) !important;
    background:
        linear-gradient(rgba(23, 26, 28, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 26, 28, .028) 1px, transparent 1px),
        var(--gm-bg) !important;
    background-size: 52px 52px !important;
}

.services-section {
    background:
        radial-gradient(circle at 9% 12%, rgba(245, 130, 33, .11), transparent 27%),
        linear-gradient(135deg, #edf0ed 0%, #fafbfa 60%, #e9ece9 100%) !important;
}

.about-section::after {
    color: rgba(23, 26, 28, .028) !important;
}

.gm-standard-badge {
    color: var(--gm-text) !important;
    background: var(--gm-orange) !important;
    box-shadow: 0 24px 58px rgba(245, 130, 33, .24) !important;
}

.gm-standard-badge b,
.gm-standard-badge span {
    color: var(--gm-text) !important;
}

.service-card {
    color: var(--gm-text) !important;
    background: rgba(255, 255, 255, .92) !important;
    border-color: rgba(23, 26, 28, .09) !important;
}

.service-card::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.94)),
        var(--gm-service-image, none) center / cover !important;
}

.service-card:hover,
.service-card:focus-within {
    border-color: var(--gm-orange-line) !important;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:focus-within h3,
.service-card:focus-within p,
.service-card:hover .gm-service-arrow,
.service-card:focus-within .gm-service-arrow {
    color: var(--gm-text) !important;
}

.client-logo-card {
    background: #fff !important;
}

/* Light, consistent inner-page hero */
.page-hero,
.project-hero {
    min-height: 560px !important;
    padding-top: 152px !important;
    padding-bottom: 72px !important;
    background-color: #dfe3e1 !important;
}

.page-hero::before,
.project-hero::before,
[dir="rtl"] .page-hero::before,
[dir="rtl"] .project-hero::before {
    background:
        linear-gradient(180deg, rgba(245, 247, 245, .10), rgba(245, 247, 245, .34)),
        linear-gradient(90deg, rgba(245, 247, 245, .24), rgba(245, 247, 245, .04)) !important;
}

.gm-inner-hero-panel,
.page-hero > div,
.project-hero > div {
    width: min(820px, 100%) !important;
    margin-inline-start: 0 !important;
    margin-inline-end: auto !important;
    padding: clamp(28px, 4vw, 48px) !important;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .74);
    border-inline-start: 5px solid var(--gm-orange);
    border-radius: 26px 5px 26px 5px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 26px 78px rgba(23, 26, 28, .16);
    backdrop-filter: blur(20px) saturate(125%);
}

.page-hero > .gm-kicker,
.page-hero > h1,
.page-hero > p,
.project-hero > .gm-kicker,
.project-hero > h1,
.project-hero > p {
    width: min(820px, 100%) !important;
    box-sizing: border-box;
}

.page-hero h1,
.project-hero h1 {
    color: var(--gm-text) !important;
    font-size: clamp(48px, 6.2vw, 82px) !important;
    text-shadow: none !important;
}

.page-hero p,
.project-hero p {
    color: #535a5e !important;
    text-shadow: none !important;
}

.page-hero .gm-kicker,
.project-hero .gm-kicker {
    color: var(--gm-orange-deep) !important;
}

/* Consistent article surfaces */
.about-content-wrapper,
.service-content,
.project-details > div,
.project-details {
    color: var(--gm-text) !important;
}

.about-content-wrapper {
    max-width: 1120px !important;
    padding: clamp(30px, 5vw, 70px) !important;
    border: 1px solid var(--gm-border) !important;
    border-inline-start: 5px solid var(--gm-orange) !important;
    border-radius: 24px 4px 24px 4px !important;
    background: #fff !important;
    box-shadow: var(--gm-shadow-soft) !important;
}

.about-content-wrapper h2,
.service-content h2,
.service-details h2,
.project-details h2 {
    color: var(--gm-text) !important;
    border-bottom-color: rgba(23, 26, 28, .1) !important;
}

.about-content-wrapper h3,
.service-content h3,
.service-details h3,
.project-details h3 {
    color: #2b3033 !important;
}

.about-content-wrapper p,
.about-content-wrapper li,
.service-content p,
.service-content li,
.service-details p,
.service-details li,
.project-details p,
.project-details li {
    color: var(--gm-text-soft) !important;
}

.about-content-wrapper li::before,
.service-content li::before,
.service-details li::before {
    color: var(--gm-orange-deep) !important;
}

.gallery-section {
    padding-top: 44px !important;
}

.gallery-section h2,
.gallery-section .section-title {
    color: var(--gm-text) !important;
}

.gm-gallery-title {
    width: min(1260px, calc(100% - 56px));
    margin: 0 auto 42px !important;
    color: var(--gm-text) !important;
    font-size: clamp(34px, 4vw, 56px) !important;
    line-height: 1.1;
    text-align: start;
}

.gm-gallery-title::after {
    content: "";
    width: 52px;
    height: 3px;
    margin-top: 18px;
    display: block;
    background: var(--gm-orange);
}

.gallery-item,
.gallery-grid > * {
    background: #fff !important;
    border-color: rgba(23, 26, 28, .08) !important;
    box-shadow: 0 14px 38px rgba(23, 26, 28, .10) !important;
}

.project-item .project-info {
    border-top: 1px solid rgba(23, 26, 28, .07);
}

.page-status {
    min-height: 70vh !important;
}

.page-status > div {
    padding: 42px;
    border: 1px solid var(--gm-border);
    border-radius: 24px 4px 24px 4px;
    background: #fff;
    box-shadow: var(--gm-shadow-soft);
}

.back-link {
    color: #151718 !important;
    background: var(--gm-orange) !important;
}

/* The only intentionally dark layer is the media lightbox itself. */
.modal,
.lightbox {
    background: rgba(16, 18, 19, .92) !important;
}

/* Fully light footer */
footer {
    color: var(--gm-text) !important;
    background:
        radial-gradient(circle at 82% 0%, rgba(245, 130, 33, .13), transparent 30%),
        #e9ece9 !important;
    border-top: 1px solid rgba(23, 26, 28, .08) !important;
}

footer::before {
    background: var(--gm-orange) !important;
}

.footer-col h4,
footer h4,
footer b,
footer strong {
    color: var(--gm-text) !important;
}

.footer-col p,
.footer-bottom,
footer > p,
footer p {
    color: #4f575b !important;
    font-size: 15px !important;
    font-weight: 450 !important;
}

.footer-col p b,
.footer-col p strong,
footer p b,
footer p strong {
    color: #202426 !important;
}

.footer-bottom {
    border-top-color: rgba(23, 26, 28, .12) !important;
}

/* Modern branded 404 page */
body:has(#message) {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 24px !important;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 130, 33, .13), transparent 30%),
        var(--gm-bg) !important;
}

#message {
    max-width: 620px !important;
    margin: 0 !important;
    padding: clamp(34px, 6vw, 64px) !important;
    border: 1px solid var(--gm-border);
    border-inline-start: 5px solid var(--gm-orange);
    border-radius: 28px 5px 28px 5px !important;
    background: #fff !important;
    box-shadow: var(--gm-shadow-card) !important;
}

#message h1,
#message h2,
#message p {
    color: var(--gm-text) !important;
}

#message a {
    color: #151718 !important;
    background: var(--gm-orange) !important;
    border-radius: 8px !important;
}

@media (max-width: 1100px) {
    header .logo-link,
    header > .header-container > a {
        min-width: 224px !important;
        width: 224px !important;
    }
}

@media (max-width: 900px) {
    header {
        min-height: 74px !important;
    }

    header .header-container {
        width: 100% !important;
        height: 74px !important;
        padding: 0 14px !important;
    }

    header .logo-link,
    header > .header-container > a {
        min-width: 0 !important;
        width: min(62vw, 218px) !important;
        height: 58px !important;
        padding: 5px 8px 5px 11px !important;
        border-radius: 12px 3px 12px 3px;
    }

    .hero-section {
        min-height: 720px !important;
        height: auto !important;
        padding: 116px 18px 44px !important;
        align-items: center !important;
    }

    .hero-content {
        margin: auto 0 0 !important;
        padding: 28px 22px !important;
        border-radius: 22px 4px 22px 4px;
    }

    .hero-section h1 {
        font-size: clamp(42px, 13vw, 62px) !important;
    }

    .gm-hero-meta {
        max-width: none !important;
    }

    .page-hero,
    .project-hero {
        min-height: 500px !important;
        padding: 126px 18px 48px !important;
    }

    .gm-inner-hero-panel,
    .page-hero > div,
    .project-hero > div {
        padding: 28px 22px !important;
        border-radius: 22px 4px 22px 4px;
    }

    .page-hero h1,
    .project-hero h1 {
        font-size: clamp(42px, 12vw, 62px) !important;
    }

    .about-content-wrapper {
        padding: 30px 22px !important;
        border-radius: 20px 4px 20px 4px !important;
    }

    footer {
        padding-top: 72px !important;
    }
}

@media (max-width: 520px) {
    .hero-content {
        padding: 25px 19px !important;
    }

    .gm-hero-actions {
        width: 100%;
    }

    .gm-hero-actions > * {
        width: 100%;
    }

    .gm-inner-hero-panel,
    .page-hero > div,
    .project-hero > div {
        padding: 25px 19px !important;
    }
}

/* ========================================================================== 
   Global Metal — Refined cinematic hero v3
   Keeps project footage visible, adds live local information and guarantees
   readable titles for existing and future dynamically loaded projects.
   ========================================================================== */

.hero-section {
    min-height: 780px !important;
    height: min(920px, 100svh) !important;
    align-items: initial !important;
    justify-content: initial !important;
}

.hero-shade,
[dir="rtl"] .hero-shade {
    background:
        linear-gradient(180deg, rgba(8, 11, 13, .05) 0%, rgba(8, 11, 13, .08) 48%, rgba(8, 11, 13, .42) 100%),
        linear-gradient(90deg, rgba(8, 11, 13, .66) 0%, rgba(8, 11, 13, .27) 43%, rgba(8, 11, 13, .02) 72%) !important;
}

[dir="rtl"] .hero-shade {
    background:
        linear-gradient(180deg, rgba(8, 11, 13, .05) 0%, rgba(8, 11, 13, .08) 48%, rgba(8, 11, 13, .42) 100%),
        linear-gradient(270deg, rgba(8, 11, 13, .66) 0%, rgba(8, 11, 13, .27) 43%, rgba(8, 11, 13, .02) 72%) !important;
}

.hero-content {
    position: absolute !important;
    inset-inline-start: max(28px, calc((100vw - 1320px) / 2)) !important;
    inset-inline-end: auto !important;
    bottom: 88px !important;
    width: min(590px, calc(100% - 56px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.hero-section h1 {
    width: 100% !important;
    margin-bottom: 18px !important;
    color: #fff !important;
    font-size: clamp(50px, 5.2vw, 76px) !important;
    line-height: 1.01 !important;
    font-weight: 850 !important;
    letter-spacing: -.045em !important;
    text-shadow: 0 8px 34px rgba(0, 0, 0, .46) !important;
}

html[lang="he"] .hero-section h1 {
    letter-spacing: -.025em !important;
}

.hero-section p {
    width: min(560px, 100%) !important;
    margin-bottom: 25px !important;
    color: rgba(255, 255, 255, .9) !important;
    font-size: clamp(16px, 1.15vw, 19px) !important;
    line-height: 1.65 !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .46) !important;
}

.gm-hero-actions {
    gap: 10px !important;
}

.hero-section .cta-button,
.hero-section .gm-secondary-cta {
    min-height: 52px !important;
    padding-inline: 23px !important;
    border-radius: 12px 3px 12px 3px !important;
}

.hero-section .gm-secondary-cta {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .5) !important;
    background: rgba(9, 12, 14, .28) !important;
    backdrop-filter: blur(14px) !important;
}

.hero-section .gm-secondary-cta:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .82) !important;
    background: rgba(9, 12, 14, .48) !important;
}

.gm-hero-meta {
    margin-top: 22px !important;
    color: rgba(255, 255, 255, .8) !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .42) !important;
}

.gm-scroll-cue {
    display: none !important;
}

.gm-live-widget {
    position: absolute;
    z-index: 5;
    inset-inline-end: max(28px, calc((100vw - 1320px) / 2));
    bottom: 88px;
    width: min(370px, calc(100% - 56px));
    min-height: 112px;
    padding: 18px 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(118px, .78fr);
    align-items: center;
    gap: 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 22px 4px 22px 4px;
    background: rgba(10, 13, 15, .54);
    box-shadow: 0 22px 58px rgba(7, 10, 12, .22);
    backdrop-filter: blur(18px) saturate(125%);
}

.gm-live-date,
.gm-weather-reading {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.gm-live-day,
.gm-live-location,
.gm-weather-reading span {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.gm-live-date-line {
    margin: 3px 0 6px;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.gm-live-date-line strong {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
}

.gm-live-time {
    padding-inline-start: 8px;
    color: rgba(255, 255, 255, .9);
    border-inline-start: 1px solid rgba(255, 255, 255, .25);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    direction: ltr;
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
}

.gm-live-location::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-inline-end: 7px;
    display: inline-block;
    border-radius: 50%;
    background: var(--gm-orange);
    box-shadow: 0 0 0 4px rgba(245, 130, 33, .13);
}

.gm-live-divider {
    width: 1px;
    height: 58px;
    background: rgba(255, 255, 255, .18);
}

.gm-live-weather {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

.gm-weather-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: var(--gm-orange);
    border: 1px solid rgba(245, 130, 33, .42);
    border-radius: 50%;
    background: rgba(245, 130, 33, .11);
    font-size: 20px;
    line-height: 1;
}

.gm-weather-reading strong {
    color: #fff;
    font-size: 28px;
    font-weight: 750;
    line-height: 1;
}

.gm-weather-reading span {
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gm-live-weather.is-unavailable .gm-weather-reading span {
    white-space: normal;
}

/* Project labels: readable on every image and on every future dynamic card. */
body[data-project-category="home"] .project-card .project-info {
    width: fit-content;
    max-width: calc(100% - 66px);
    padding: 15px 18px 16px !important;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-inline-start: 3px solid var(--gm-orange);
    border-radius: 15px 3px 15px 3px;
    background: rgba(8, 11, 13, .64);
    box-shadow: 0 12px 34px rgba(5, 8, 10, .18);
    backdrop-filter: blur(13px) saturate(118%);
}

body[data-project-category="home"] .project-card .project-info h3 {
    margin: 0 0 6px !important;
    color: #fff !important;
    font-size: clamp(24px, 2.15vw, 33px) !important;
    line-height: 1.12 !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .42) !important;
}

body[data-project-category="home"] .project-card .project-info p {
    color: rgba(255, 255, 255, .78) !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

body[data-project-category="home"] .project-card::before {
    background: linear-gradient(180deg, rgba(8, 10, 11, .03) 22%, rgba(8, 10, 11, .12) 55%, rgba(8, 10, 11, .72) 100%) !important;
}

@media (max-width: 900px) {
    .hero-section {
        min-height: 760px !important;
        height: 100svh !important;
        padding: 0 !important;
    }

    .hero-shade,
    [dir="rtl"] .hero-shade {
        background:
            linear-gradient(180deg, rgba(8, 11, 13, .08) 0%, rgba(8, 11, 13, .05) 35%, rgba(8, 11, 13, .82) 100%) !important;
    }

    .hero-content {
        inset-inline: 20px !important;
        bottom: 32px !important;
        width: auto !important;
    }

    .hero-section h1 {
        font-size: clamp(40px, 11.5vw, 58px) !important;
    }

    .hero-section p {
        margin-bottom: 20px !important;
        font-size: 16px !important;
        line-height: 1.52 !important;
    }

    .gm-live-widget {
        inset: 94px 18px auto !important;
        width: auto;
        min-height: 88px;
        padding: 13px 15px;
        grid-template-columns: minmax(0, 1fr) 1px minmax(105px, .7fr);
        gap: 13px;
        border-radius: 17px 3px 17px 3px;
    }

    .gm-live-divider {
        height: 46px;
    }

    .gm-live-date-line strong {
        font-size: 14px;
    }

    .gm-live-time {
        font-size: 12px;
    }

    .gm-weather-icon {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
        font-size: 17px;
    }

    .gm-weather-reading strong {
        font-size: 23px;
    }

    .hero-media-control {
        inset-inline-end: 20px !important;
        top: 198px !important;
        bottom: auto !important;
    }

    body[data-project-category="home"] .project-card .project-info {
        max-width: calc(100% - 50px);
        padding: 13px 15px 14px !important;
    }
}

@media (max-width: 520px) {
    .hero-content {
        inset-inline: 18px !important;
        bottom: 25px !important;
    }

    .gm-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .gm-hero-actions > * {
        width: auto !important;
        min-width: 0;
        padding-inline: 13px !important;
    }

    .gm-hero-meta {
        display: none !important;
    }

    .gm-live-day,
    .gm-live-location,
    .gm-weather-reading span {
        font-size: 10px;
    }

    body[data-project-category="home"] .project-card .project-info h3 {
        font-size: 25px !important;
    }
}

/* Privacy notice and legal navigation */
.gm-legal-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
}

.gm-legal-links a,
.gm-legal-links button {
    appearance: none;
    padding: 0;
    color: #31373a !important;
    border: 0;
    border-bottom: 1px solid rgba(49, 55, 58, .34);
    background: transparent;
    font: inherit;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.7;
    text-decoration: none;
    cursor: pointer;
}

.gm-legal-links a:hover,
.gm-legal-links button:hover,
.gm-legal-links a:focus-visible,
.gm-legal-links button:focus-visible {
    color: var(--gm-orange-deep) !important;
    border-bottom-color: var(--gm-orange);
}

.gm-privacy-notice {
    position: fixed;
    z-index: 12000;
    inset: auto 24px 24px auto;
    width: min(430px, calc(100% - 48px));
    min-height: 0;
    padding: 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    border-inline-start: 4px solid var(--gm-orange);
    border-radius: 18px 4px 18px 4px;
    background: rgba(17, 20, 22, .96);
    box-shadow: 0 24px 70px rgba(7, 9, 10, .28);
    backdrop-filter: blur(18px) saturate(130%);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .26s ease, transform .26s ease;
}

html[dir="ltr"] .gm-privacy-notice {
    inset: auto auto 24px 24px;
}

.gm-privacy-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gm-privacy-notice.is-closing {
    opacity: 0;
    transform: translateY(18px);
}

.gm-privacy-notice-copy {
    min-width: 0;
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
}

.gm-privacy-mark {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border: 2px solid var(--gm-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(245, 130, 33, .12);
}

.gm-privacy-notice p {
    margin: 0 !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.gm-privacy-notice a {
    color: #fff !important;
    font-weight: 700 !important;
    text-underline-offset: 3px;
}

.gm-privacy-accept {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 11px 18px;
    color: #171a1c;
    border: 1px solid var(--gm-orange);
    border-radius: 10px 3px 10px 3px;
    background: var(--gm-orange);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.gm-privacy-accept:hover,
.gm-privacy-accept:focus-visible {
    background: #ff963d;
    transform: translateY(-2px);
}

/* Contact page */
.gm-contact-page .page-hero {
    background:
        linear-gradient(90deg, rgba(8, 11, 13, .76), rgba(8, 11, 13, .28)),
        url("DJI_0189.jpg") center 48% / cover no-repeat !important;
}

.gm-contact-section,
.gm-policy-section {
    padding: clamp(76px, 9vw, 124px) 24px;
}

.gm-contact-shell,
.gm-policy-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.gm-contact-intro {
    width: min(760px, 100%);
    margin-bottom: 46px;
}

.gm-contact-intro h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}

.gm-contact-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

.gm-contact-cards {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
    list-style: none;
}

.gm-contact-cards li {
    min-width: 0;
    display: flex;
}

.gm-contact-card {
    width: 100%;
    min-height: 190px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--gm-border);
    border-radius: 20px 4px 20px 4px;
    background: #fff;
    box-shadow: var(--gm-shadow-soft);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gm-contact-card:hover,
.gm-contact-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--gm-orange-line);
    box-shadow: var(--gm-shadow-card);
}

.gm-contact-card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #171a1c;
    border-radius: 50%;
    background: var(--gm-orange);
    font-size: 21px;
    font-weight: 800;
}

.gm-contact-card span {
    color: var(--gm-text-soft);
    font-size: 13px;
    font-weight: 700;
}

.gm-contact-card strong {
    margin-top: 5px;
    color: var(--gm-text) !important;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.35;
}

.gm-contact-card .gm-ltr-value,
.gm-contact-card bdi,
.gm-contact-page .gm-ltr-value {
    direction: ltr;
    unicode-bidi: isolate;
}

.gm-contact-page input[type="tel"],
.gm-contact-page input[type="email"] {
    direction: ltr;
    text-align: left;
}

.gm-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 24px;
    align-items: stretch;
}

.gm-contact-form,
.gm-contact-map {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--gm-border);
    border-radius: 24px 5px 24px 5px;
    background: #fff;
    box-shadow: var(--gm-shadow-soft);
}

.gm-contact-form h2,
.gm-contact-map h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3.5vw, 42px);
}

.gm-contact-form > p,
.gm-contact-map > p {
    margin: 0 0 28px;
    line-height: 1.7;
}

.gm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.gm-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gm-field-wide {
    grid-column: 1 / -1;
}

.gm-field label {
    color: var(--gm-text);
    font-size: 14px;
    font-weight: 700;
}

.gm-field input,
.gm-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    box-sizing: border-box;
    color: var(--gm-text);
    border: 1px solid rgba(23, 26, 28, .18);
    border-radius: 10px 3px 10px 3px;
    background: #fafbf9;
    font-size: 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gm-field textarea {
    min-height: 150px;
    resize: vertical;
}

.gm-field input:focus,
.gm-field textarea:focus {
    border-color: var(--gm-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 130, 33, .11);
}

.gm-form-consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gm-text-soft);
    font-size: 13px;
    line-height: 1.55;
}

.gm-form-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--gm-orange);
}

.gm-form-consent a {
    color: var(--gm-text) !important;
    font-weight: 700;
}

.gm-contact-submit {
    grid-column: 1 / -1;
    min-height: 54px;
    padding: 13px 24px;
    color: #171a1c;
    border: 1px solid var(--gm-orange);
    border-radius: 12px 3px 12px 3px;
    background: var(--gm-orange);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gm-contact-submit:hover,
.gm-contact-submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 130, 33, .25);
}

.gm-form-success {
    display: none;
    margin: 0 0 24px;
    padding: 15px 17px;
    color: #174f31 !important;
    border: 1px solid rgba(36, 132, 81, .24);
    border-inline-start: 4px solid #248451;
    border-radius: 12px 3px 12px 3px;
    background: #edf9f2;
    font-weight: 700;
}

.gm-form-success:target {
    display: block;
}

.gm-honeypot {
    position: absolute !important;
    inset-inline-start: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.gm-map-frame {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: 17px 3px 17px 3px;
    background:
        linear-gradient(135deg, rgba(245, 130, 33, .09), transparent 55%),
        var(--gm-surface-soft);
}

.gm-map-frame::before {
    content: attr(data-placeholder);
    position: absolute;
    inset: 50% 28px auto;
    color: var(--gm-text-soft);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    transform: translateY(-50%);
}

.gm-map-frame.is-loaded::before {
    display: none;
}

.gm-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gm-map-link {
    margin-top: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gm-text) !important;
    font-weight: 800;
    text-decoration-color: var(--gm-orange);
    text-underline-offset: 4px;
}

/* Privacy policy pages */
.gm-policy-shell {
    display: grid;
    grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.gm-policy-aside,
.gm-policy-content {
    border: 1px solid var(--gm-border);
    border-radius: 22px 4px 22px 4px;
    background: #fff;
    box-shadow: var(--gm-shadow-soft);
}

.gm-policy-aside {
    position: sticky;
    top: 112px;
    padding: 28px;
}

.gm-policy-aside strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gm-text) !important;
    font-size: 19px;
}

.gm-policy-aside p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
}

.gm-policy-aside a {
    color: var(--gm-text) !important;
    font-weight: 700;
    text-underline-offset: 4px;
}

.gm-policy-content {
    padding: clamp(30px, 5vw, 64px);
}

.gm-policy-content section + section {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--gm-border);
}

.gm-policy-content h2 {
    margin: 0 0 13px;
    font-size: clamp(24px, 3vw, 34px);
}

.gm-policy-content p,
.gm-policy-content li {
    font-size: 16px;
    line-height: 1.85;
}

.gm-policy-content ul {
    margin: 12px 0 0;
    padding-inline-start: 22px;
}

@media (max-width: 900px) {
    .gm-contact-cards,
    .gm-contact-grid,
    .gm-policy-shell {
        grid-template-columns: 1fr;
    }

    .gm-policy-aside {
        position: static;
    }

    .gm-contact-card {
        min-height: 158px;
    }
}

@media (max-width: 640px) {
    .gm-privacy-notice {
        inset: auto 12px 12px 12px;
        width: calc(100% - 24px);
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 14px;
        border-radius: 16px 3px 16px 3px;
    }

    html[dir="ltr"] .gm-privacy-notice {
        inset: auto 12px 12px 12px;
    }

    .gm-privacy-accept {
        width: 100%;
    }

    .gm-contact-section,
    .gm-policy-section {
        padding: 58px 16px;
    }

    .gm-contact-form,
    .gm-contact-map,
    .gm-policy-content,
    .gm-policy-aside {
        padding: 24px 20px;
    }

    .gm-form-grid {
        grid-template-columns: 1fr;
    }

    .gm-field-wide,
    .gm-form-consent,
    .gm-contact-submit {
        grid-column: auto;
    }

    .gm-map-frame {
        min-height: 340px;
    }
}
